From 64f4efc3deb8774a090a0e4096dd290398d58aad Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Sun, 1 Dec 2024 11:20:51 +0100 Subject: [PATCH] Pre-lowercase callmaps --- bin/Dockerfile | 10 + bin/gen_base_callmap.php | 25 + bin/gen_base_callmap.sh | 15 + bin/gen_callmap.php | 163 +- bin/gen_callmap_utils.php | 229 + bin/normalize-callmap.php | 7 +- bin/php.ini | 14 + dictionaries/CallMap.php | 20646 +++++++-------- dictionaries/CallMap_71_delta.php | 10 +- dictionaries/CallMap_72_delta.php | 140 +- dictionaries/CallMap_73_delta.php | 28 +- dictionaries/CallMap_74_delta.php | 10 +- dictionaries/CallMap_80_delta.php | 344 +- dictionaries/CallMap_81_delta.php | 82 +- dictionaries/CallMap_82_delta.php | 10 +- dictionaries/CallMap_83_delta.php | 58 +- dictionaries/CallMap_84_delta.php | 156 +- dictionaries/CallMap_historical.php | 20718 ++++++++-------- .../Codebase/InternalCallMapHandler.php | 20 +- 19 files changed, 21407 insertions(+), 21278 deletions(-) create mode 100644 bin/Dockerfile create mode 100644 bin/gen_base_callmap.php create mode 100644 bin/gen_base_callmap.sh create mode 100644 bin/gen_callmap_utils.php create mode 100644 bin/php.ini diff --git a/bin/Dockerfile b/bin/Dockerfile new file mode 100644 index 00000000000..67a44d03160 --- /dev/null +++ b/bin/Dockerfile @@ -0,0 +1,10 @@ +ARG VERSION +FROM php:${VERSION} + +ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/ + +RUN chmod +x /usr/local/bin/install-php-extensions && \ + install-php-extensions pcntl uv-beta ffi pgsql intl gmp mbstring pdo_mysql xml dom iconv zip igbinary gd && \ + rm /usr/local/bin/install-php-extensions + +ADD php.ini /usr/local/etc/php/php.ini \ No newline at end of file diff --git a/bin/gen_base_callmap.php b/bin/gen_base_callmap.php new file mode 100644 index 00000000000..0c80a900992 --- /dev/null +++ b/bin/gen_base_callmap.php @@ -0,0 +1,25 @@ +getMethods() as $method) { + $args = paramsToEntries($method); + + $callmap[$class.'::'.$method->getName()] = $args; + } +} + +var_dump($callmap); \ No newline at end of file diff --git a/bin/gen_base_callmap.sh b/bin/gen_base_callmap.sh new file mode 100644 index 00000000000..1018fe798fe --- /dev/null +++ b/bin/gen_base_callmap.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +VERSIONS="7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4" + +cd bin + +for f in $VERSIONS; do + docker build --build-arg VERSION=$f . -t psalm_test_$f & +done + +wait + +for f in $VERSIONS; do + +done diff --git a/bin/gen_callmap.php b/bin/gen_callmap.php index 1bf67c118b4..f94a64f47b0 100644 --- a/bin/gen_callmap.php +++ b/bin/gen_callmap.php @@ -6,171 +6,18 @@ require 'vendor/autoload.php'; +require __DIR__ . '/gen_callmap_utils.php'; + 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; - -/** - * Returns the correct reflection type for function or method name. - */ -function getReflectionFunction(string $functionName): ?ReflectionFunctionAbstract -{ - try { - if (strpos($functionName, '::') !== false) { - if (PHP_VERSION_ID < 8_03_00) { - return new ReflectionMethod($functionName); - } - - return ReflectionMethod::createFromMethodName($functionName); - } - - /** @var callable-string $functionName */ - return new ReflectionFunction($functionName); - } catch (ReflectionException $e) { - return null; - } -} - -/** - * @param array $entryParameters - */ -function assertEntryParameters(ReflectionFunctionAbstract $function, array &$entryParameters): void -{ - assertEntryReturnType($function, $entryParameters[0]); - /** - * Parse the parameter names from the map. - * - * @var array - */ - $normalizedEntries = []; - - foreach ($entryParameters as $key => &$entry) { - if ($key === 0) { - continue; - } - $normalizedKey = $key; - /** - * @var array{byRef: bool, refMode: 'rw'|'w'|'r', variadic: bool, optional: bool, type: string} $normalizedEntry - */ - $normalizedEntry = [ - 'variadic' => false, - 'byRef' => false, - 'optional' => false, - 'type' => &$entry, - ]; - if (strncmp($normalizedKey, '&', 1) === 0) { - $normalizedEntry['byRef'] = true; - $normalizedKey = substr($normalizedKey, 1); - } - - if (strncmp($normalizedKey, '...', 3) === 0) { - $normalizedEntry['variadic'] = true; - $normalizedKey = substr($normalizedKey, 3); - } - - // Read the reference mode - if ($normalizedEntry['byRef']) { - $parts = explode('_', $normalizedKey, 2); - if (count($parts) === 2) { - if (!($parts[0] === 'rw' || $parts[0] === 'w' || $parts[0] === 'r')) { - throw new InvalidArgumentException('Invalid refMode: '.$parts[0]); - } - $normalizedEntry['refMode'] = $parts[0]; - $normalizedKey = $parts[1]; - } else { - $normalizedEntry['refMode'] = 'rw'; - } - } - - // Strip prefixes. - if (substr($normalizedKey, -1, 1) === "=") { - $normalizedEntry['optional'] = true; - $normalizedKey = substr($normalizedKey, 0, -1); - } - - $normalizedEntry['name'] = $normalizedKey; - $normalizedEntries[$normalizedKey] = $normalizedEntry; - } - - foreach ($function->getParameters() as $parameter) { - if (isset($normalizedEntries[$parameter->getName()])) { - assertParameter($normalizedEntries[$parameter->getName()], $parameter); - } - } -} - -/** - * @param array{byRef: bool, name?: string, refMode: 'rw'|'w'|'r', variadic: bool, optional: bool, type: string} $normalizedEntry - */ -function assertParameter(array &$normalizedEntry, ReflectionParameter $param): void -{ - $name = $param->getName(); - - $expectedType = $param->getType(); - - if (isset($expectedType) && !empty($normalizedEntry['type'])) { - $func = $param->getDeclaringFunction()->getName(); - assertTypeValidity($expectedType, $normalizedEntry['type'], "Param $func '{$name}'"); - } -} - -function assertEntryReturnType(ReflectionFunctionAbstract $function, string &$entryReturnType): void -{ - if (version_compare(PHP_VERSION, '8.1.0', '>=')) { - $expectedType = $function->hasTentativeReturnType() ? $function->getTentativeReturnType() : $function->getReturnType(); - } else { - $expectedType = $function->getReturnType(); - } - - if ($expectedType !== null) { - assertTypeValidity($expectedType, $entryReturnType, 'Return'); - } -} - - /** - * Since string equality is too strict, we do some extra checking here - */ -function assertTypeValidity(ReflectionType $reflected, string &$specified, string $msgPrefix): void -{ - $expectedType = Reflection::getPsalmTypeFromReflectionType($reflected); - $callMapType = Type::parseString($specified === '' ? 'mixed' : $specified); - - $codebase = ProjectAnalyzer::getInstance()->getCodebase(); - try { - if (!UnionTypeComparator::isContainedBy($codebase, $callMapType, $expectedType, false, false, null, false, false) && !str_contains($specified, 'static')) { - $specified = $expectedType->getId(true); - $callMapType = $expectedType; - } - } catch (Throwable) { - } - - if ($expectedType->hasMixed()) { - return; - } - $callMapType = $callMapType->getBuilder(); - if ($expectedType->isNullable() !== $callMapType->isNullable()) { - if ($expectedType->isNullable()) { - $callMapType->addType(new TNull()); - } else { - $callMapType->removeType('null'); - } - } - $specified = $callMapType->getId(true); - // //$this->assertSame($expectedType->hasBool(), $callMapType->hasBool(), "{$msgPrefix} type '{$specified}' missing bool from reflected type '{$reflected}'"); - // $this->assertSame($expectedType->hasArray(), $callMapType->hasArray(), "{$msgPrefix} type '{$specified}' missing array from reflected type '{$reflected}'"); - // $this->assertSame($expectedType->hasInt(), $callMapType->hasInt(), "{$msgPrefix} type '{$specified}' missing int from reflected type '{$reflected}'"); - // $this->assertSame($expectedType->hasFloat(), $callMapType->hasFloat(), "{$msgPrefix} type '{$specified}' missing float from reflected type '{$reflected}'"); -} BypassFinals::enable(); -function writeCallMap(string $file, array $callMap) { +function writeCallMap(string $file, array $callMap): void +{ file_put_contents($file, 'getId(true); + } + + $new = []; + + foreach ($callMap as $key => $value) { + $new[is_string($key) && is_array($value) ? strtolower($key) : $key] = internalNormalizeCallMap($value); + } + + return $new; +} + +function normalizeCallMap(array $callMap): array { + return internalNormalizeCallMap($callMap); +} + +function typeToString(?ReflectionType $reflection_type = null): string +{ + if (!$reflection_type) { + return 'string'; + } + + if ($reflection_type instanceof ReflectionNamedType) { + $type = $reflection_type->getName(); + } elseif ($reflection_type instanceof ReflectionUnionType) { + $type = implode( + '|', + array_map( + static fn(ReflectionNamedType $reflection): string => $reflection->getName(), + $reflection_type->getTypes(), + ), + ); + } else { + throw new LogicException('Unexpected reflection class ' . $reflection_type::class . ' found.'); + } + + if ($reflection_type->allowsNull()) { + $type .= '|null'; + } + + return $type; +} + +/** + * @return array + */ +function paramsToEntries(ReflectionFunctionAbstract $reflectionFunction): array +{ + $res = [typeToString($reflectionFunction->getReturnType())]; + + foreach ($reflectionFunction->getParameters() as $param) { + $key = $param->getName(); + if ($param->isPassedByReference()) { + $key = "&$key"; + } + if ($param->isVariadic()) { + $key = "...$key"; + } + if ($param->isOptional()) { + $key .= '='; + } + + $res[$key] = typeToString($param->getType()); + } + + return $res; +} + + +/** + * Returns the correct reflection type for function or method name. + */ +function getReflectionFunction(string $functionName): ?ReflectionFunctionAbstract +{ + try { + if (strpos($functionName, '::') !== false) { + if (PHP_VERSION_ID < 8_03_00) { + return new ReflectionMethod($functionName); + } + + return ReflectionMethod::createFromMethodName($functionName); + } + + /** @var callable-string $functionName */ + return new ReflectionFunction($functionName); + } catch (ReflectionException $e) { + return null; + } +} + + /** + * @param array $entryParameters + */ +function assertEntryParameters(ReflectionFunctionAbstract $function, array &$entryParameters): void +{ + assertEntryReturnType($function, $entryParameters[0]); + + /** + * Parse the parameter names from the map. + * + * @var array + */ + $normalizedEntries = []; + + foreach ($entryParameters as $key => &$entry) { + if ($key === 0) { + continue; + } + $normalizedKey = $key; + /** + * @var array{byRef: bool, refMode: 'rw'|'w'|'r', variadic: bool, optional: bool, type: string} $normalizedEntry + */ + $normalizedEntry = [ + 'variadic' => false, + 'byRef' => false, + 'optional' => false, + 'type' => &$entry, + ]; + if (strncmp($normalizedKey, '&', 1) === 0) { + $normalizedEntry['byRef'] = true; + $normalizedKey = substr($normalizedKey, 1); + } + + if (strncmp($normalizedKey, '...', 3) === 0) { + $normalizedEntry['variadic'] = true; + $normalizedKey = substr($normalizedKey, 3); + } + + // Read the reference mode + if ($normalizedEntry['byRef']) { + $parts = explode('_', $normalizedKey, 2); + if (count($parts) === 2) { + if (!($parts[0] === 'rw' || $parts[0] === 'w' || $parts[0] === 'r')) { + throw new InvalidArgumentException('Invalid refMode: '.$parts[0]); + } + $normalizedEntry['refMode'] = $parts[0]; + $normalizedKey = $parts[1]; + } else { + $normalizedEntry['refMode'] = 'rw'; + } + } + + // Strip prefixes. + if (substr($normalizedKey, -1, 1) === "=") { + $normalizedEntry['optional'] = true; + $normalizedKey = substr($normalizedKey, 0, -1); + } + + $normalizedEntry['name'] = $normalizedKey; + $normalizedEntries[$normalizedKey] = $normalizedEntry; + } + + foreach ($function->getParameters() as $parameter) { + if (isset($normalizedEntries[$parameter->getName()])) { + assertParameter($normalizedEntries[$parameter->getName()], $parameter); + } + } +} + + /** + * @param array{byRef: bool, name?: string, refMode: 'rw'|'w'|'r', variadic: bool, optional: bool, type: string} $normalizedEntry + */ +function assertParameter(array &$normalizedEntry, ReflectionParameter $param): void +{ + $name = $param->getName(); + + $expectedType = $param->getType(); + + if (isset($expectedType) && !empty($normalizedEntry['type'])) { + $func = $param->getDeclaringFunction()->getName(); + assertTypeValidity($expectedType, $normalizedEntry['type'], "Param $func '{$name}'"); + } +} + +function assertEntryReturnType(ReflectionFunctionAbstract $function, string &$entryReturnType): void +{ + if (version_compare(PHP_VERSION, '8.1.0', '>=')) { + $expectedType = $function->hasTentativeReturnType() ? $function->getTentativeReturnType() : $function->getReturnType(); + } else { + $expectedType = $function->getReturnType(); + } + + if ($expectedType !== null) { + assertTypeValidity($expectedType, $entryReturnType, 'Return'); + } +} + + /** + * Since string equality is too strict, we do some extra checking here + */ +function assertTypeValidity(ReflectionType $reflected, string &$specified, string $msgPrefix): void +{ + $expectedType = Reflection::getPsalmTypeFromReflectionType($reflected); + $callMapType = Type::parseString($specified === '' ? 'mixed' : $specified); + + $codebase = ProjectAnalyzer::getInstance()->getCodebase(); + try { + if (!UnionTypeComparator::isContainedBy($codebase, $callMapType, $expectedType, false, false, null, false, false) && !str_contains($specified, 'static')) { + $specified = $expectedType->getId(true); + $callMapType = $expectedType; + } + } catch (Throwable) { + } + + if ($expectedType->hasMixed()) { + return; + } + $callMapType = $callMapType->getBuilder(); + if ($expectedType->isNullable() !== $callMapType->isNullable()) { + if ($expectedType->isNullable()) { + $callMapType->addType(new TNull()); + } else { + $callMapType->removeType('null'); + } + } + $specified = $callMapType->getId(true); + // //$this->assertSame($expectedType->hasBool(), $callMapType->hasBool(), "{$msgPrefix} type '{$specified}' missing bool from reflected type '{$reflected}'"); + // $this->assertSame($expectedType->hasArray(), $callMapType->hasArray(), "{$msgPrefix} type '{$specified}' missing array from reflected type '{$reflected}'"); + // $this->assertSame($expectedType->hasInt(), $callMapType->hasInt(), "{$msgPrefix} type '{$specified}' missing int from reflected type '{$reflected}'"); + // $this->assertSame($expectedType->hasFloat(), $callMapType->hasFloat(), "{$msgPrefix} type '{$specified}' missing float from reflected type '{$reflected}'"); +} diff --git a/bin/normalize-callmap.php b/bin/normalize-callmap.php index 10d16006d18..fbb7c64dd1d 100644 --- a/bin/normalize-callmap.php +++ b/bin/normalize-callmap.php @@ -4,6 +4,8 @@ require 'vendor/autoload.php'; +require __DIR__ . '/gen_callmap_utils.php'; + use DG\BypassFinals; use Psalm\Internal\Analyzer\ProjectAnalyzer; use Psalm\Internal\Provider\FileProvider; @@ -21,10 +23,7 @@ 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); - }); + $callMap = normalizeCallMap($callMap); file_put_contents($file, ' 'string', 'string' => 'string', ), - 'AMQPBasicProperties::__construct' => + 'amqpbasicproperties::__construct' => array ( 0 => 'void', 'content_type=' => 'string', @@ -86,479 +86,479 @@ 'app_id=' => 'string', 'cluster_id=' => 'string', ), - 'AMQPBasicProperties::getAppId' => + 'amqpbasicproperties::getappid' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getClusterId' => + 'amqpbasicproperties::getclusterid' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getContentEncoding' => + 'amqpbasicproperties::getcontentencoding' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getContentType' => + 'amqpbasicproperties::getcontenttype' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getCorrelationId' => + 'amqpbasicproperties::getcorrelationid' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getDeliveryMode' => + 'amqpbasicproperties::getdeliverymode' => array ( 0 => 'int', ), - 'AMQPBasicProperties::getExpiration' => + 'amqpbasicproperties::getexpiration' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getHeaders' => + 'amqpbasicproperties::getheaders' => array ( 0 => 'array', ), - 'AMQPBasicProperties::getMessageId' => + 'amqpbasicproperties::getmessageid' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getPriority' => + 'amqpbasicproperties::getpriority' => array ( 0 => 'int', ), - 'AMQPBasicProperties::getReplyTo' => + 'amqpbasicproperties::getreplyto' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getTimestamp' => + 'amqpbasicproperties::gettimestamp' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getType' => + 'amqpbasicproperties::gettype' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getUserId' => + 'amqpbasicproperties::getuserid' => array ( 0 => 'string', ), - 'AMQPChannel::__construct' => + 'amqpchannel::__construct' => array ( 0 => 'void', 'amqp_connection' => 'AMQPConnection', ), - 'AMQPChannel::basicRecover' => + 'amqpchannel::basicrecover' => array ( 0 => 'mixed', 'requeue=' => 'bool', ), - 'AMQPChannel::close' => + 'amqpchannel::close' => array ( 0 => 'mixed', ), - 'AMQPChannel::commitTransaction' => + 'amqpchannel::committransaction' => array ( 0 => 'bool', ), - 'AMQPChannel::confirmSelect' => + 'amqpchannel::confirmselect' => array ( 0 => 'mixed', ), - 'AMQPChannel::getChannelId' => + 'amqpchannel::getchannelid' => array ( 0 => 'int', ), - 'AMQPChannel::getConnection' => + 'amqpchannel::getconnection' => array ( 0 => 'AMQPConnection', ), - 'AMQPChannel::getConsumers' => + 'amqpchannel::getconsumers' => array ( 0 => 'array', ), - 'AMQPChannel::getPrefetchCount' => + 'amqpchannel::getprefetchcount' => array ( 0 => 'int', ), - 'AMQPChannel::getPrefetchSize' => + 'amqpchannel::getprefetchsize' => array ( 0 => 'int', ), - 'AMQPChannel::isConnected' => + 'amqpchannel::isconnected' => array ( 0 => 'bool', ), - 'AMQPChannel::qos' => + 'amqpchannel::qos' => array ( 0 => 'bool', 'size' => 'int', 'count' => 'int', ), - 'AMQPChannel::rollbackTransaction' => + 'amqpchannel::rollbacktransaction' => array ( 0 => 'bool', ), - 'AMQPChannel::setConfirmCallback' => + 'amqpchannel::setconfirmcallback' => array ( 0 => 'mixed', 'ack_callback=' => 'callable|null', 'nack_callback=' => 'callable|null', ), - 'AMQPChannel::setPrefetchCount' => + 'amqpchannel::setprefetchcount' => array ( 0 => 'bool', 'count' => 'int', ), - 'AMQPChannel::setPrefetchSize' => + 'amqpchannel::setprefetchsize' => array ( 0 => 'bool', 'size' => 'int', ), - 'AMQPChannel::setReturnCallback' => + 'amqpchannel::setreturncallback' => array ( 0 => 'mixed', 'return_callback=' => 'callable|null', ), - 'AMQPChannel::startTransaction' => + 'amqpchannel::starttransaction' => array ( 0 => 'bool', ), - 'AMQPChannel::waitForBasicReturn' => + 'amqpchannel::waitforbasicreturn' => array ( 0 => 'mixed', 'timeout=' => 'float', ), - 'AMQPChannel::waitForConfirm' => + 'amqpchannel::waitforconfirm' => array ( 0 => 'mixed', 'timeout=' => 'float', ), - 'AMQPConnection::__construct' => + 'amqpconnection::__construct' => array ( 0 => 'void', 'credentials=' => 'array', ), - 'AMQPConnection::connect' => + 'amqpconnection::connect' => array ( 0 => 'bool', ), - 'AMQPConnection::disconnect' => + 'amqpconnection::disconnect' => array ( 0 => 'bool', ), - 'AMQPConnection::getCACert' => + 'amqpconnection::getcacert' => array ( 0 => 'string', ), - 'AMQPConnection::getCert' => + 'amqpconnection::getcert' => array ( 0 => 'string', ), - 'AMQPConnection::getHeartbeatInterval' => + 'amqpconnection::getheartbeatinterval' => array ( 0 => 'int', ), - 'AMQPConnection::getHost' => + 'amqpconnection::gethost' => array ( 0 => 'string', ), - 'AMQPConnection::getKey' => + 'amqpconnection::getkey' => array ( 0 => 'string', ), - 'AMQPConnection::getLogin' => + 'amqpconnection::getlogin' => array ( 0 => 'string', ), - 'AMQPConnection::getMaxChannels' => + 'amqpconnection::getmaxchannels' => array ( 0 => 'int|null', ), - 'AMQPConnection::getMaxFrameSize' => + 'amqpconnection::getmaxframesize' => array ( 0 => 'int', ), - 'AMQPConnection::getPassword' => + 'amqpconnection::getpassword' => array ( 0 => 'string', ), - 'AMQPConnection::getPort' => + 'amqpconnection::getport' => array ( 0 => 'int', ), - 'AMQPConnection::getReadTimeout' => + 'amqpconnection::getreadtimeout' => array ( 0 => 'float', ), - 'AMQPConnection::getTimeout' => + 'amqpconnection::gettimeout' => array ( 0 => 'float', ), - 'AMQPConnection::getUsedChannels' => + 'amqpconnection::getusedchannels' => array ( 0 => 'int', ), - 'AMQPConnection::getVerify' => + 'amqpconnection::getverify' => array ( 0 => 'bool', ), - 'AMQPConnection::getVhost' => + 'amqpconnection::getvhost' => array ( 0 => 'string', ), - 'AMQPConnection::getWriteTimeout' => + 'amqpconnection::getwritetimeout' => array ( 0 => 'float', ), - 'AMQPConnection::isConnected' => + 'amqpconnection::isconnected' => array ( 0 => 'bool', ), - 'AMQPConnection::isPersistent' => + 'amqpconnection::ispersistent' => array ( 0 => 'bool|null', ), - 'AMQPConnection::pconnect' => + 'amqpconnection::pconnect' => array ( 0 => 'bool', ), - 'AMQPConnection::pdisconnect' => + 'amqpconnection::pdisconnect' => array ( 0 => 'bool', ), - 'AMQPConnection::preconnect' => + 'amqpconnection::preconnect' => array ( 0 => 'bool', ), - 'AMQPConnection::reconnect' => + 'amqpconnection::reconnect' => array ( 0 => 'bool', ), - 'AMQPConnection::setCACert' => + 'amqpconnection::setcacert' => array ( 0 => 'mixed', 'cacert' => 'string', ), - 'AMQPConnection::setCert' => + 'amqpconnection::setcert' => array ( 0 => 'mixed', 'cert' => 'string', ), - 'AMQPConnection::setHost' => + 'amqpconnection::sethost' => array ( 0 => 'bool', 'host' => 'string', ), - 'AMQPConnection::setKey' => + 'amqpconnection::setkey' => array ( 0 => 'mixed', 'key' => 'string', ), - 'AMQPConnection::setLogin' => + 'amqpconnection::setlogin' => array ( 0 => 'bool', 'login' => 'string', ), - 'AMQPConnection::setPassword' => + 'amqpconnection::setpassword' => array ( 0 => 'bool', 'password' => 'string', ), - 'AMQPConnection::setPort' => + 'amqpconnection::setport' => array ( 0 => 'bool', 'port' => 'int', ), - 'AMQPConnection::setReadTimeout' => + 'amqpconnection::setreadtimeout' => array ( 0 => 'bool', 'timeout' => 'int', ), - 'AMQPConnection::setTimeout' => + 'amqpconnection::settimeout' => array ( 0 => 'bool', 'timeout' => 'int', ), - 'AMQPConnection::setVerify' => + 'amqpconnection::setverify' => array ( 0 => 'mixed', 'verify' => 'bool', ), - 'AMQPConnection::setVhost' => + 'amqpconnection::setvhost' => array ( 0 => 'bool', 'vhost' => 'string', ), - 'AMQPConnection::setWriteTimeout' => + 'amqpconnection::setwritetimeout' => array ( 0 => 'bool', 'timeout' => 'int', ), - 'AMQPDecimal::__construct' => + 'amqpdecimal::__construct' => array ( 0 => 'void', 'exponent' => 'mixed', 'significand' => 'mixed', ), - 'AMQPDecimal::getExponent' => + 'amqpdecimal::getexponent' => array ( 0 => 'int', ), - 'AMQPDecimal::getSignificand' => + 'amqpdecimal::getsignificand' => array ( 0 => 'int', ), - 'AMQPEnvelope::__construct' => + 'amqpenvelope::__construct' => array ( 0 => 'void', ), - 'AMQPEnvelope::getAppId' => + 'amqpenvelope::getappid' => array ( 0 => 'string', ), - 'AMQPEnvelope::getBody' => + 'amqpenvelope::getbody' => array ( 0 => 'string', ), - 'AMQPEnvelope::getClusterId' => + 'amqpenvelope::getclusterid' => array ( 0 => 'string', ), - 'AMQPEnvelope::getConsumerTag' => + 'amqpenvelope::getconsumertag' => array ( 0 => 'string', ), - 'AMQPEnvelope::getContentEncoding' => + 'amqpenvelope::getcontentencoding' => array ( 0 => 'string', ), - 'AMQPEnvelope::getContentType' => + 'amqpenvelope::getcontenttype' => array ( 0 => 'string', ), - 'AMQPEnvelope::getCorrelationId' => + 'amqpenvelope::getcorrelationid' => array ( 0 => 'string', ), - 'AMQPEnvelope::getDeliveryMode' => + 'amqpenvelope::getdeliverymode' => array ( 0 => 'int', ), - 'AMQPEnvelope::getDeliveryTag' => + 'amqpenvelope::getdeliverytag' => array ( 0 => 'string', ), - 'AMQPEnvelope::getExchangeName' => + 'amqpenvelope::getexchangename' => array ( 0 => 'string', ), - 'AMQPEnvelope::getExpiration' => + 'amqpenvelope::getexpiration' => array ( 0 => 'string', ), - 'AMQPEnvelope::getHeader' => + 'amqpenvelope::getheader' => array ( 0 => 'false|string', 'header_key' => 'string', ), - 'AMQPEnvelope::getHeaders' => + 'amqpenvelope::getheaders' => array ( 0 => 'array', ), - 'AMQPEnvelope::getMessageId' => + 'amqpenvelope::getmessageid' => array ( 0 => 'string', ), - 'AMQPEnvelope::getPriority' => + 'amqpenvelope::getpriority' => array ( 0 => 'int', ), - 'AMQPEnvelope::getReplyTo' => + 'amqpenvelope::getreplyto' => array ( 0 => 'string', ), - 'AMQPEnvelope::getRoutingKey' => + 'amqpenvelope::getroutingkey' => array ( 0 => 'string', ), - 'AMQPEnvelope::getTimeStamp' => + 'amqpenvelope::gettimestamp' => array ( 0 => 'string', ), - 'AMQPEnvelope::getType' => + 'amqpenvelope::gettype' => array ( 0 => 'string', ), - 'AMQPEnvelope::getUserId' => + 'amqpenvelope::getuserid' => array ( 0 => 'string', ), - 'AMQPEnvelope::hasHeader' => + 'amqpenvelope::hasheader' => array ( 0 => 'bool', 'header_key' => 'string', ), - 'AMQPEnvelope::isRedelivery' => + 'amqpenvelope::isredelivery' => array ( 0 => 'bool', ), - 'AMQPExchange::__construct' => + 'amqpexchange::__construct' => array ( 0 => 'void', 'amqp_channel' => 'AMQPChannel', ), - 'AMQPExchange::bind' => + 'amqpexchange::bind' => array ( 0 => 'bool', 'exchange_name' => 'string', 'routing_key=' => 'string', 'arguments=' => 'array', ), - 'AMQPExchange::declareExchange' => + 'amqpexchange::declareexchange' => array ( 0 => 'bool', ), - 'AMQPExchange::delete' => + 'amqpexchange::delete' => array ( 0 => 'bool', 'exchangeName=' => 'string', 'flags=' => 'int', ), - 'AMQPExchange::getArgument' => + 'amqpexchange::getargument' => array ( 0 => 'false|int|string', 'key' => 'string', ), - 'AMQPExchange::getArguments' => + 'amqpexchange::getarguments' => array ( 0 => 'array', ), - 'AMQPExchange::getChannel' => + 'amqpexchange::getchannel' => array ( 0 => 'AMQPChannel', ), - 'AMQPExchange::getConnection' => + 'amqpexchange::getconnection' => array ( 0 => 'AMQPConnection', ), - 'AMQPExchange::getFlags' => + 'amqpexchange::getflags' => array ( 0 => 'int', ), - 'AMQPExchange::getName' => + 'amqpexchange::getname' => array ( 0 => 'string', ), - 'AMQPExchange::getType' => + 'amqpexchange::gettype' => array ( 0 => 'string', ), - 'AMQPExchange::hasArgument' => + 'amqpexchange::hasargument' => array ( 0 => 'bool', 'key' => 'string', ), - 'AMQPExchange::publish' => + 'amqpexchange::publish' => array ( 0 => 'bool', 'message' => 'string', @@ -566,171 +566,171 @@ 'flags=' => 'int', 'attributes=' => 'array', ), - 'AMQPExchange::setArgument' => + 'amqpexchange::setargument' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'int|string', ), - 'AMQPExchange::setArguments' => + 'amqpexchange::setarguments' => array ( 0 => 'bool', 'arguments' => 'array', ), - 'AMQPExchange::setFlags' => + 'amqpexchange::setflags' => array ( 0 => 'bool', 'flags' => 'int', ), - 'AMQPExchange::setName' => + 'amqpexchange::setname' => array ( 0 => 'bool', 'exchange_name' => 'string', ), - 'AMQPExchange::setType' => + 'amqpexchange::settype' => array ( 0 => 'bool', 'exchange_type' => 'string', ), - 'AMQPExchange::unbind' => + 'amqpexchange::unbind' => array ( 0 => 'bool', 'exchange_name' => 'string', 'routing_key=' => 'string', 'arguments=' => 'array', ), - 'AMQPQueue::__construct' => + 'amqpqueue::__construct' => array ( 0 => 'void', 'amqp_channel' => 'AMQPChannel', ), - 'AMQPQueue::ack' => + 'amqpqueue::ack' => array ( 0 => 'bool', 'delivery_tag' => 'string', 'flags=' => 'int', ), - 'AMQPQueue::bind' => + 'amqpqueue::bind' => array ( 0 => 'bool', 'exchange_name' => 'string', 'routing_key=' => 'string', 'arguments=' => 'array', ), - 'AMQPQueue::cancel' => + 'amqpqueue::cancel' => array ( 0 => 'bool', 'consumer_tag=' => 'string', ), - 'AMQPQueue::consume' => + 'amqpqueue::consume' => array ( 0 => 'void', 'callback=' => 'callable|null', 'flags=' => 'int', 'consumerTag=' => 'string', ), - 'AMQPQueue::declareQueue' => + 'amqpqueue::declarequeue' => array ( 0 => 'int', ), - 'AMQPQueue::delete' => + 'amqpqueue::delete' => array ( 0 => 'int', 'flags=' => 'int', ), - 'AMQPQueue::get' => + 'amqpqueue::get' => array ( 0 => 'AMQPEnvelope|false', 'flags=' => 'int', ), - 'AMQPQueue::getArgument' => + 'amqpqueue::getargument' => array ( 0 => 'false|int|string', 'key' => 'string', ), - 'AMQPQueue::getArguments' => + 'amqpqueue::getarguments' => array ( 0 => 'array', ), - 'AMQPQueue::getChannel' => + 'amqpqueue::getchannel' => array ( 0 => 'AMQPChannel', ), - 'AMQPQueue::getConnection' => + 'amqpqueue::getconnection' => array ( 0 => 'AMQPConnection', ), - 'AMQPQueue::getConsumerTag' => + 'amqpqueue::getconsumertag' => array ( 0 => 'null|string', ), - 'AMQPQueue::getFlags' => + 'amqpqueue::getflags' => array ( 0 => 'int', ), - 'AMQPQueue::getName' => + 'amqpqueue::getname' => array ( 0 => 'string', ), - 'AMQPQueue::hasArgument' => + 'amqpqueue::hasargument' => array ( 0 => 'bool', 'key' => 'string', ), - 'AMQPQueue::nack' => + 'amqpqueue::nack' => array ( 0 => 'bool', 'delivery_tag' => 'string', 'flags=' => 'int', ), - 'AMQPQueue::purge' => + 'amqpqueue::purge' => array ( 0 => 'bool', ), - 'AMQPQueue::reject' => + 'amqpqueue::reject' => array ( 0 => 'bool', 'delivery_tag' => 'string', 'flags=' => 'int', ), - 'AMQPQueue::setArgument' => + 'amqpqueue::setargument' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'mixed', ), - 'AMQPQueue::setArguments' => + 'amqpqueue::setarguments' => array ( 0 => 'bool', 'arguments' => 'array', ), - 'AMQPQueue::setFlags' => + 'amqpqueue::setflags' => array ( 0 => 'bool', 'flags' => 'int', ), - 'AMQPQueue::setName' => + 'amqpqueue::setname' => array ( 0 => 'bool', 'queue_name' => 'string', ), - 'AMQPQueue::unbind' => + 'amqpqueue::unbind' => array ( 0 => 'bool', 'exchange_name' => 'string', 'routing_key=' => 'string', 'arguments=' => 'array', ), - 'AMQPTimestamp::__construct' => + 'amqptimestamp::__construct' => array ( 0 => 'void', 'timestamp' => 'string', ), - 'AMQPTimestamp::__toString' => + 'amqptimestamp::__tostring' => array ( 0 => 'string', ), - 'AMQPTimestamp::getTimestamp' => + 'amqptimestamp::gettimestamp' => array ( 0 => 'string', ), @@ -926,7 +926,7 @@ 'unused=' => 'mixed', 'ttl=' => 'int', ), - 'APCIterator::__construct' => + 'apciterator::__construct' => array ( 0 => 'void', 'cache' => 'string', @@ -935,35 +935,35 @@ 'chunk_size=' => 'int', 'list=' => 'int', ), - 'APCIterator::current' => + 'apciterator::current' => array ( 0 => 'false|mixed', ), - 'APCIterator::getTotalCount' => + 'apciterator::gettotalcount' => array ( 0 => 'false|int', ), - 'APCIterator::getTotalHits' => + 'apciterator::gettotalhits' => array ( 0 => 'false|int', ), - 'APCIterator::getTotalSize' => + 'apciterator::gettotalsize' => array ( 0 => 'false|int', ), - 'APCIterator::key' => + 'apciterator::key' => array ( 0 => 'string', ), - 'APCIterator::next' => + 'apciterator::next' => array ( 0 => 'void', ), - 'APCIterator::rewind' => + 'apciterator::rewind' => array ( 0 => 'void', ), - 'APCIterator::valid' => + 'apciterator::valid' => array ( 0 => 'bool', ), @@ -1080,7 +1080,7 @@ 'unused=' => 'mixed', 'ttl=' => 'int', ), - 'APCuIterator::__construct' => + 'apcuiterator::__construct' => array ( 0 => 'void', 'search=' => 'array|null|string', @@ -1088,35 +1088,35 @@ 'chunk_size=' => 'int', 'list=' => 'int', ), - 'APCuIterator::current' => + 'apcuiterator::current' => array ( 0 => 'mixed', ), - 'APCuIterator::getTotalCount' => + 'apcuiterator::gettotalcount' => array ( 0 => 'int', ), - 'APCuIterator::getTotalHits' => + 'apcuiterator::gettotalhits' => array ( 0 => 'int', ), - 'APCuIterator::getTotalSize' => + 'apcuiterator::gettotalsize' => array ( 0 => 'int', ), - 'APCuIterator::key' => + 'apcuiterator::key' => array ( 0 => 'string', ), - 'APCuIterator::next' => + 'apcuiterator::next' => array ( 0 => 'void', ), - 'APCuIterator::rewind' => + 'apcuiterator::rewind' => array ( 0 => 'void', ), - 'APCuIterator::valid' => + 'apcuiterator::valid' => array ( 0 => 'bool', ), @@ -1192,130 +1192,130 @@ 'port' => 'int', 'debug_level' => 'int', ), - 'AppendIterator::__construct' => + 'appenditerator::__construct' => array ( 0 => 'void', ), - 'AppendIterator::append' => + 'appenditerator::append' => array ( 0 => 'void', 'iterator' => 'Iterator', ), - 'AppendIterator::current' => + 'appenditerator::current' => array ( 0 => 'mixed', ), - 'AppendIterator::getArrayIterator' => + 'appenditerator::getarrayiterator' => array ( 0 => 'ArrayIterator', ), - 'AppendIterator::getInnerIterator' => + 'appenditerator::getinneriterator' => array ( 0 => 'Iterator|null', ), - 'AppendIterator::getIteratorIndex' => + 'appenditerator::getiteratorindex' => array ( 0 => 'int|null', ), - 'AppendIterator::key' => + 'appenditerator::key' => array ( 0 => 'scalar', ), - 'AppendIterator::next' => + 'appenditerator::next' => array ( 0 => 'void', ), - 'AppendIterator::rewind' => + 'appenditerator::rewind' => array ( 0 => 'void', ), - 'AppendIterator::valid' => + 'appenditerator::valid' => array ( 0 => 'bool', ), - 'ArgumentCountError::__construct' => + 'argumentcounterror::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'ArgumentCountError::__toString' => + 'argumentcounterror::__tostring' => array ( 0 => 'string', ), - 'ArgumentCountError::__wakeup' => + 'argumentcounterror::__wakeup' => array ( 0 => 'void', ), - 'ArgumentCountError::getCode' => + 'argumentcounterror::getcode' => array ( 0 => 'int', ), - 'ArgumentCountError::getFile' => + 'argumentcounterror::getfile' => array ( 0 => 'string', ), - 'ArgumentCountError::getLine' => + 'argumentcounterror::getline' => array ( 0 => 'int', ), - 'ArgumentCountError::getMessage' => + 'argumentcounterror::getmessage' => array ( 0 => 'string', ), - 'ArgumentCountError::getPrevious' => + 'argumentcounterror::getprevious' => array ( 0 => 'Throwable|null', ), - 'ArgumentCountError::getTrace' => + 'argumentcounterror::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'ArgumentCountError::getTraceAsString' => + 'argumentcounterror::gettraceasstring' => array ( 0 => 'string', ), - 'ArithmeticError::__construct' => + 'arithmeticerror::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'ArithmeticError::__toString' => + 'arithmeticerror::__tostring' => array ( 0 => 'string', ), - 'ArithmeticError::__wakeup' => + 'arithmeticerror::__wakeup' => array ( 0 => 'void', ), - 'ArithmeticError::getCode' => + 'arithmeticerror::getcode' => array ( 0 => 'int', ), - 'ArithmeticError::getFile' => + 'arithmeticerror::getfile' => array ( 0 => 'string', ), - 'ArithmeticError::getLine' => + 'arithmeticerror::getline' => array ( 0 => 'int', ), - 'ArithmeticError::getMessage' => + 'arithmeticerror::getmessage' => array ( 0 => 'string', ), - 'ArithmeticError::getPrevious' => + 'arithmeticerror::getprevious' => array ( 0 => 'Throwable|null', ), - 'ArithmeticError::getTrace' => + 'arithmeticerror::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'ArithmeticError::getTraceAsString' => + 'arithmeticerror::gettraceasstring' => array ( 0 => 'string', ), @@ -1765,239 +1765,239 @@ 'callback' => 'callable', 'arg=' => 'mixed', ), - 'ArrayAccess::offsetExists' => + 'arrayaccess::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'ArrayAccess::offsetGet' => + 'arrayaccess::offsetget' => array ( 0 => 'mixed', 'offset' => 'int|string', ), - 'ArrayAccess::offsetSet' => + 'arrayaccess::offsetset' => array ( 0 => 'void', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'ArrayAccess::offsetUnset' => + 'arrayaccess::offsetunset' => array ( 0 => 'void', 'offset' => 'int|string', ), - 'ArrayIterator::__construct' => + 'arrayiterator::__construct' => array ( 0 => 'void', 'array=' => 'array|object', 'flags=' => 'int', ), - 'ArrayIterator::append' => + 'arrayiterator::append' => array ( 0 => 'void', 'value' => 'mixed', ), - 'ArrayIterator::asort' => + 'arrayiterator::asort' => array ( 0 => 'true', 'flags=' => 'int', ), - 'ArrayIterator::count' => + 'arrayiterator::count' => array ( 0 => 'int', ), - 'ArrayIterator::current' => + 'arrayiterator::current' => array ( 0 => 'mixed', ), - 'ArrayIterator::getArrayCopy' => + 'arrayiterator::getarraycopy' => array ( 0 => 'array', ), - 'ArrayIterator::getFlags' => + 'arrayiterator::getflags' => array ( 0 => 'int', ), - 'ArrayIterator::key' => + 'arrayiterator::key' => array ( 0 => 'int|null|string', ), - 'ArrayIterator::ksort' => + 'arrayiterator::ksort' => array ( 0 => 'true', 'flags=' => 'int', ), - 'ArrayIterator::natcasesort' => + 'arrayiterator::natcasesort' => array ( 0 => 'true', ), - 'ArrayIterator::natsort' => + 'arrayiterator::natsort' => array ( 0 => 'true', ), - 'ArrayIterator::next' => + 'arrayiterator::next' => array ( 0 => 'void', ), - 'ArrayIterator::offsetExists' => + 'arrayiterator::offsetexists' => array ( 0 => 'bool', 'key' => 'int|string', ), - 'ArrayIterator::offsetGet' => + 'arrayiterator::offsetget' => array ( 0 => 'mixed', 'key' => 'int|string', ), - 'ArrayIterator::offsetSet' => + 'arrayiterator::offsetset' => array ( 0 => 'void', 'key' => 'int|null|string', 'value' => 'mixed', ), - 'ArrayIterator::offsetUnset' => + 'arrayiterator::offsetunset' => array ( 0 => 'void', 'key' => 'int|string', ), - 'ArrayIterator::rewind' => + 'arrayiterator::rewind' => array ( 0 => 'void', ), - 'ArrayIterator::seek' => + 'arrayiterator::seek' => array ( 0 => 'void', 'offset' => 'int', ), - 'ArrayIterator::serialize' => + 'arrayiterator::serialize' => array ( 0 => 'string', ), - 'ArrayIterator::setFlags' => + 'arrayiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'ArrayIterator::uasort' => + 'arrayiterator::uasort' => array ( 0 => 'true', 'callback' => 'callable(mixed, mixed):int', ), - 'ArrayIterator::uksort' => + 'arrayiterator::uksort' => array ( 0 => 'true', 'callback' => 'callable(mixed, mixed):int', ), - 'ArrayIterator::unserialize' => + 'arrayiterator::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'ArrayIterator::valid' => + 'arrayiterator::valid' => array ( 0 => 'bool', ), - 'ArrayObject::__construct' => + 'arrayobject::__construct' => array ( 0 => 'void', 'array=' => 'array|object', 'flags=' => 'int', 'iteratorClass=' => 'class-string', ), - 'ArrayObject::append' => + 'arrayobject::append' => array ( 0 => 'void', 'value' => 'mixed', ), - 'ArrayObject::asort' => + 'arrayobject::asort' => array ( 0 => 'true', 'flags=' => 'int', ), - 'ArrayObject::count' => + 'arrayobject::count' => array ( 0 => 'int', ), - 'ArrayObject::exchangeArray' => + 'arrayobject::exchangearray' => array ( 0 => 'array', 'array' => 'array|object', ), - 'ArrayObject::getArrayCopy' => + 'arrayobject::getarraycopy' => array ( 0 => 'array', ), - 'ArrayObject::getFlags' => + 'arrayobject::getflags' => array ( 0 => 'int', ), - 'ArrayObject::getIterator' => + 'arrayobject::getiterator' => array ( 0 => 'ArrayIterator', ), - 'ArrayObject::getIteratorClass' => + 'arrayobject::getiteratorclass' => array ( 0 => 'string', ), - 'ArrayObject::ksort' => + 'arrayobject::ksort' => array ( 0 => 'true', 'flags=' => 'int', ), - 'ArrayObject::natcasesort' => + 'arrayobject::natcasesort' => array ( 0 => 'true', ), - 'ArrayObject::natsort' => + 'arrayobject::natsort' => array ( 0 => 'true', ), - 'ArrayObject::offsetExists' => + 'arrayobject::offsetexists' => array ( 0 => 'bool', 'key' => 'int|string', ), - 'ArrayObject::offsetGet' => + 'arrayobject::offsetget' => array ( 0 => 'mixed|null', 'key' => 'int|string', ), - 'ArrayObject::offsetSet' => + 'arrayobject::offsetset' => array ( 0 => 'void', 'key' => 'int|null|string', 'value' => 'mixed', ), - 'ArrayObject::offsetUnset' => + 'arrayobject::offsetunset' => array ( 0 => 'void', 'key' => 'int|string', ), - 'ArrayObject::serialize' => + 'arrayobject::serialize' => array ( 0 => 'string', ), - 'ArrayObject::setFlags' => + 'arrayobject::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'ArrayObject::setIteratorClass' => + 'arrayobject::setiteratorclass' => array ( 0 => 'void', 'iteratorClass' => 'class-string', ), - 'ArrayObject::uasort' => + 'arrayobject::uasort' => array ( 0 => 'true', 'callback' => 'callable(mixed, mixed):int', ), - 'ArrayObject::uksort' => + 'arrayobject::uksort' => array ( 0 => 'true', 'callback' => 'callable(mixed, mixed):int', ), - 'ArrayObject::unserialize' => + 'arrayobject::unserialize' => array ( 0 => 'void', 'data' => 'string', @@ -2055,7 +2055,7 @@ 0 => 'bool', 'kind' => 'int', ), - 'ast\\Node::__construct' => + 'ast\\node::__construct' => array ( 0 => 'void', 'kind=' => 'int', @@ -2092,81 +2092,81 @@ 0 => 'float', 'num' => 'float', ), - 'BadFunctionCallException::__construct' => + 'badfunctioncallexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'BadFunctionCallException::__toString' => + 'badfunctioncallexception::__tostring' => array ( 0 => 'string', ), - 'BadFunctionCallException::getCode' => + 'badfunctioncallexception::getcode' => array ( 0 => 'int', ), - 'BadFunctionCallException::getFile' => + 'badfunctioncallexception::getfile' => array ( 0 => 'string', ), - 'BadFunctionCallException::getLine' => + 'badfunctioncallexception::getline' => array ( 0 => 'int', ), - 'BadFunctionCallException::getMessage' => + 'badfunctioncallexception::getmessage' => array ( 0 => 'string', ), - 'BadFunctionCallException::getPrevious' => + 'badfunctioncallexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'BadFunctionCallException::getTrace' => + 'badfunctioncallexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'BadFunctionCallException::getTraceAsString' => + 'badfunctioncallexception::gettraceasstring' => array ( 0 => 'string', ), - 'BadMethodCallException::__construct' => + 'badmethodcallexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'BadMethodCallException::__toString' => + 'badmethodcallexception::__tostring' => array ( 0 => 'string', ), - 'BadMethodCallException::getCode' => + 'badmethodcallexception::getcode' => array ( 0 => 'int', ), - 'BadMethodCallException::getFile' => + 'badmethodcallexception::getfile' => array ( 0 => 'string', ), - 'BadMethodCallException::getLine' => + 'badmethodcallexception::getline' => array ( 0 => 'int', ), - 'BadMethodCallException::getMessage' => + 'badmethodcallexception::getmessage' => array ( 0 => 'string', ), - 'BadMethodCallException::getPrevious' => + 'badmethodcallexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'BadMethodCallException::getTrace' => + 'badmethodcallexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'BadMethodCallException::getTraceAsString' => + 'badmethodcallexception::gettraceasstring' => array ( 0 => 'string', ), @@ -2552,79 +2552,79 @@ 'data' => 'string', 'length=' => 'int|null', ), - 'CachingIterator::__construct' => + 'cachingiterator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', 'flags=' => 'int', ), - 'CachingIterator::__toString' => + 'cachingiterator::__tostring' => array ( 0 => 'string', ), - 'CachingIterator::count' => + 'cachingiterator::count' => array ( 0 => 'int', ), - 'CachingIterator::current' => + 'cachingiterator::current' => array ( 0 => 'mixed', ), - 'CachingIterator::getCache' => + 'cachingiterator::getcache' => array ( 0 => 'array', ), - 'CachingIterator::getFlags' => + 'cachingiterator::getflags' => array ( 0 => 'int', ), - 'CachingIterator::getInnerIterator' => + 'cachingiterator::getinneriterator' => array ( 0 => 'Iterator|null', ), - 'CachingIterator::hasNext' => + 'cachingiterator::hasnext' => array ( 0 => 'bool', ), - 'CachingIterator::key' => + 'cachingiterator::key' => array ( 0 => 'scalar', ), - 'CachingIterator::next' => + 'cachingiterator::next' => array ( 0 => 'void', ), - 'CachingIterator::offsetExists' => + 'cachingiterator::offsetexists' => array ( 0 => 'bool', 'key' => 'string', ), - 'CachingIterator::offsetGet' => + 'cachingiterator::offsetget' => array ( 0 => 'mixed', 'key' => 'string', ), - 'CachingIterator::offsetSet' => + 'cachingiterator::offsetset' => array ( 0 => 'void', 'key' => 'string', 'value' => 'mixed', ), - 'CachingIterator::offsetUnset' => + 'cachingiterator::offsetunset' => array ( 0 => 'void', 'key' => 'string', ), - 'CachingIterator::rewind' => + 'cachingiterator::rewind' => array ( 0 => 'void', ), - 'CachingIterator::setFlags' => + 'cachingiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'CachingIterator::valid' => + 'cachingiterator::valid' => array ( 0 => 'bool', ), @@ -2699,37 +2699,37 @@ 'object' => 'object', 'params' => 'list', ), - 'CallbackFilterIterator::__construct' => + 'callbackfilteriterator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', 'callback' => 'callable(mixed, mixed=, mixed=):bool', ), - 'CallbackFilterIterator::accept' => + 'callbackfilteriterator::accept' => array ( 0 => 'bool', ), - 'CallbackFilterIterator::current' => + 'callbackfilteriterator::current' => array ( 0 => 'mixed', ), - 'CallbackFilterIterator::getInnerIterator' => + 'callbackfilteriterator::getinneriterator' => array ( 0 => 'Iterator|null', ), - 'CallbackFilterIterator::key' => + 'callbackfilteriterator::key' => array ( 0 => 'mixed', ), - 'CallbackFilterIterator::next' => + 'callbackfilteriterator::next' => array ( 0 => 'void', ), - 'CallbackFilterIterator::rewind' => + 'callbackfilteriterator::rewind' => array ( 0 => 'void', ), - 'CallbackFilterIterator::valid' => + 'callbackfilteriterator::valid' => array ( 0 => 'bool', ), @@ -2888,33 +2888,33 @@ 'methodname' => 'string', 'newname' => 'string', ), - 'classObj::__construct' => + 'classobj::__construct' => array ( 0 => 'void', 'layer' => 'layerObj', 'class' => 'classObj', ), - 'classObj::addLabel' => + 'classobj::addlabel' => array ( 0 => 'int', 'label' => 'labelObj', ), - 'classObj::convertToString' => + 'classobj::converttostring' => array ( 0 => 'string', ), - 'classObj::createLegendIcon' => + 'classobj::createlegendicon' => array ( 0 => 'imageObj', 'width' => 'int', 'height' => 'int', ), - 'classObj::deletestyle' => + 'classobj::deletestyle' => array ( 0 => 'int', 'index' => 'int', ), - 'classObj::drawLegendIcon' => + 'classobj::drawlegendicon' => array ( 0 => 'int', 'width' => 'int', @@ -2923,82 +2923,82 @@ 'dstX' => 'int', 'dstY' => 'int', ), - 'classObj::free' => + 'classobj::free' => array ( 0 => 'void', ), - 'classObj::getExpressionString' => + 'classobj::getexpressionstring' => array ( 0 => 'string', ), - 'classObj::getLabel' => + 'classobj::getlabel' => array ( 0 => 'labelObj', 'index' => 'int', ), - 'classObj::getMetaData' => + 'classobj::getmetadata' => array ( 0 => 'int', 'name' => 'string', ), - 'classObj::getStyle' => + 'classobj::getstyle' => array ( 0 => 'styleObj', 'index' => 'int', ), - 'classObj::getTextString' => + 'classobj::gettextstring' => array ( 0 => 'string', ), - 'classObj::movestyledown' => + 'classobj::movestyledown' => array ( 0 => 'int', 'index' => 'int', ), - 'classObj::movestyleup' => + 'classobj::movestyleup' => array ( 0 => 'int', 'index' => 'int', ), - 'classObj::ms_newClassObj' => + 'classobj::ms_newclassobj' => array ( 0 => 'classObj', 'layer' => 'layerObj', 'class' => 'classObj', ), - 'classObj::removeLabel' => + 'classobj::removelabel' => array ( 0 => 'labelObj', 'index' => 'int', ), - 'classObj::removeMetaData' => + 'classobj::removemetadata' => array ( 0 => 'int', 'name' => 'string', ), - 'classObj::set' => + 'classobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'classObj::setExpression' => + 'classobj::setexpression' => array ( 0 => 'int', 'expression' => 'string', ), - 'classObj::setMetaData' => + 'classobj::setmetadata' => array ( 0 => 'int', 'name' => 'string', 'value' => 'string', ), - 'classObj::settext' => + 'classobj::settext' => array ( 0 => 'int', 'text' => 'string', ), - 'classObj::updateFromString' => + 'classobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', @@ -3018,35 +3018,35 @@ 0 => 'bool', 'title' => 'string', ), - 'ClosedGeneratorException::__toString' => + 'closedgeneratorexception::__tostring' => array ( 0 => 'string', ), - 'ClosedGeneratorException::getCode' => + 'closedgeneratorexception::getcode' => array ( 0 => 'int', ), - 'ClosedGeneratorException::getFile' => + 'closedgeneratorexception::getfile' => array ( 0 => 'string', ), - 'ClosedGeneratorException::getLine' => + 'closedgeneratorexception::getline' => array ( 0 => 'int', ), - 'ClosedGeneratorException::getMessage' => + 'closedgeneratorexception::getmessage' => array ( 0 => 'string', ), - 'ClosedGeneratorException::getPrevious' => + 'closedgeneratorexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'ClosedGeneratorException::getTrace' => + 'closedgeneratorexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'ClosedGeneratorException::getTraceAsString' => + 'closedgeneratorexception::gettraceasstring' => array ( 0 => 'string', ), @@ -3059,128 +3059,128 @@ array ( 0 => 'true', ), - 'Closure::__construct' => + 'closure::__construct' => array ( 0 => 'void', ), - 'Closure::__invoke' => + 'closure::__invoke' => array ( 0 => 'mixed', '...args=' => 'mixed', ), - 'Closure::bind' => + 'closure::bind' => array ( 0 => 'Closure|null', 'closure' => 'Closure', 'newThis' => 'null|object', 'newScope=' => 'null|object|string', ), - 'Closure::bindTo' => + 'closure::bindto' => array ( 0 => 'Closure|null', 'newThis' => 'null|object', 'newScope=' => 'null|object|string', ), - 'Closure::call' => + 'closure::call' => array ( 0 => 'mixed', 'newThis' => 'object', '...args=' => 'mixed', ), - 'Closure::fromCallable' => + 'closure::fromcallable' => array ( 0 => 'Closure', 'callback' => 'callable', ), - 'clusterObj::convertToString' => + 'clusterobj::converttostring' => array ( 0 => 'string', ), - 'clusterObj::getFilterString' => + 'clusterobj::getfilterstring' => array ( 0 => 'string', ), - 'clusterObj::getGroupString' => + 'clusterobj::getgroupstring' => array ( 0 => 'string', ), - 'clusterObj::setFilter' => + 'clusterobj::setfilter' => array ( 0 => 'int', 'expression' => 'string', ), - 'clusterObj::setGroup' => + 'clusterobj::setgroup' => array ( 0 => 'int', 'expression' => 'string', ), - 'Collator::__construct' => + 'collator::__construct' => array ( 0 => 'void', 'locale' => 'string', ), - 'Collator::asort' => + 'collator::asort' => array ( 0 => 'bool', '&rw_array' => 'array', 'flags=' => 'int', ), - 'Collator::compare' => + 'collator::compare' => array ( 0 => 'false|int', 'string1' => 'string', 'string2' => 'string', ), - 'Collator::create' => + 'collator::create' => array ( 0 => 'Collator|null', 'locale' => 'string', ), - 'Collator::getAttribute' => + 'collator::getattribute' => array ( 0 => 'false|int', 'attribute' => 'int', ), - 'Collator::getErrorCode' => + 'collator::geterrorcode' => array ( 0 => 'int', ), - 'Collator::getErrorMessage' => + 'collator::geterrormessage' => array ( 0 => 'string', ), - 'Collator::getLocale' => + 'collator::getlocale' => array ( 0 => 'string', 'type' => 'int', ), - 'Collator::getSortKey' => + 'collator::getsortkey' => array ( 0 => 'false|string', 'string' => 'string', ), - 'Collator::getStrength' => + 'collator::getstrength' => array ( 0 => 'int', ), - 'Collator::setAttribute' => + 'collator::setattribute' => array ( 0 => 'bool', 'attribute' => 'int', 'value' => 'int', ), - 'Collator::setStrength' => + 'collator::setstrength' => array ( 0 => 'true', 'strength' => 'int', ), - 'Collator::sort' => + 'collator::sort' => array ( 0 => 'bool', '&rw_array' => 'array', 'flags=' => 'int', ), - 'Collator::sortWithSortKeys' => + 'collator::sortwithsortkeys' => array ( 0 => 'bool', '&rw_array' => 'array', @@ -3263,30 +3263,30 @@ 'object' => 'collator', '&rw_array' => 'array', ), - 'Collectable::isGarbage' => + 'collectable::isgarbage' => array ( 0 => 'bool', ), - 'Collectable::setGarbage' => + 'collectable::setgarbage' => array ( 0 => 'void', ), - 'colorObj::setHex' => + 'colorobj::sethex' => array ( 0 => 'int', 'hex' => 'string', ), - 'colorObj::toHex' => + 'colorobj::tohex' => array ( 0 => 'string', ), - 'COM::__call' => + 'com::__call' => array ( 0 => 'mixed', 'name' => 'mixed', 'args' => 'mixed', ), - 'COM::__construct' => + 'com::__construct' => array ( 0 => 'void', 'module_name' => 'string', @@ -3294,12 +3294,12 @@ 'codepage=' => 'int', 'typelib=' => 'string', ), - 'COM::__get' => + 'com::__get' => array ( 0 => 'mixed', 'name' => 'mixed', ), - 'COM::__set' => + 'com::__set' => array ( 0 => 'void', 'name' => 'mixed', @@ -3375,22 +3375,22 @@ 0 => 'void', 'visitor' => 'CommonMark\\Interfaces\\IVisitor', ), - 'commonmark\\node::appendChild' => + 'commonmark\\node::appendchild' => array ( 0 => 'CommonMark\\Node', 'child' => 'CommonMark\\Node', ), - 'commonmark\\node::insertAfter' => + 'commonmark\\node::insertafter' => array ( 0 => 'CommonMark\\Node', 'sibling' => 'CommonMark\\Node', ), - 'commonmark\\node::insertBefore' => + 'commonmark\\node::insertbefore' => array ( 0 => 'CommonMark\\Node', 'sibling' => 'CommonMark\\Node', ), - 'commonmark\\node::prependChild' => + 'commonmark\\node::prependchild' => array ( 0 => 'CommonMark\\Node', 'child' => 'CommonMark\\Node', @@ -3458,66 +3458,66 @@ 'var_name' => 'array|string', '...var_names=' => 'array|string', ), - 'COMPersistHelper::__construct' => + 'compersisthelper::__construct' => array ( 0 => 'void', 'variant' => 'object', ), - 'COMPersistHelper::GetCurFile' => + 'compersisthelper::getcurfile' => array ( 0 => 'string', ), - 'COMPersistHelper::GetCurFileName' => + 'compersisthelper::getcurfilename' => array ( 0 => 'string', ), - 'COMPersistHelper::GetMaxStreamSize' => + 'compersisthelper::getmaxstreamsize' => array ( 0 => 'int', ), - 'COMPersistHelper::InitNew' => + 'compersisthelper::initnew' => array ( 0 => 'int', ), - 'COMPersistHelper::LoadFromFile' => + 'compersisthelper::loadfromfile' => array ( 0 => 'bool', 'filename' => 'string', 'flags' => 'int', ), - 'COMPersistHelper::LoadFromStream' => + 'compersisthelper::loadfromstream' => array ( 0 => 'mixed', 'stream' => 'mixed', ), - 'COMPersistHelper::SaveToFile' => + 'compersisthelper::savetofile' => array ( 0 => 'bool', 'filename' => 'string', 'remember' => 'bool', ), - 'COMPersistHelper::SaveToStream' => + 'compersisthelper::savetostream' => array ( 0 => 'int', 'stream' => 'mixed', ), - 'componere\\abstract\\definition::addInterface' => + 'componere\\abstract\\definition::addinterface' => array ( 0 => 'Componere\\Abstract\\Definition', 'interface' => 'string', ), - 'componere\\abstract\\definition::addMethod' => + 'componere\\abstract\\definition::addmethod' => array ( 0 => 'Componere\\Abstract\\Definition', 'name' => 'string', 'method' => 'Componere\\Method', ), - 'componere\\abstract\\definition::addTrait' => + 'componere\\abstract\\definition::addtrait' => array ( 0 => 'Componere\\Abstract\\Definition', 'trait' => 'string', ), - 'componere\\abstract\\definition::getReflector' => + 'componere\\abstract\\definition::getreflector' => array ( 0 => 'ReflectionClass', ), @@ -3533,28 +3533,28 @@ 'arg1' => 'string', 'object' => 'object', ), - 'componere\\definition::addConstant' => + 'componere\\definition::addconstant' => array ( 0 => 'Componere\\Definition', 'name' => 'string', 'value' => 'Componere\\Value', ), - 'componere\\definition::addProperty' => + 'componere\\definition::addproperty' => array ( 0 => 'Componere\\Definition', 'name' => 'string', 'value' => 'Componere\\Value', ), - 'componere\\definition::getClosure' => + 'componere\\definition::getclosure' => array ( 0 => 'Closure', 'name' => 'string', ), - 'componere\\definition::getClosures' => + 'componere\\definition::getclosures' => array ( 0 => 'array', ), - 'componere\\definition::isRegistered' => + 'componere\\definition::isregistered' => array ( 0 => 'bool', ), @@ -3562,19 +3562,19 @@ array ( 0 => 'void', ), - 'componere\\method::getReflector' => + 'componere\\method::getreflector' => array ( 0 => 'ReflectionMethod', ), - 'componere\\method::setPrivate' => + 'componere\\method::setprivate' => array ( 0 => 'Method', ), - 'componere\\method::setProtected' => + 'componere\\method::setprotected' => array ( 0 => 'Method', ), - 'componere\\method::setStatic' => + 'componere\\method::setstatic' => array ( 0 => 'Method', ), @@ -3587,16 +3587,16 @@ 0 => 'Componere\\Patch', 'instance' => 'object', ), - 'componere\\patch::getClosure' => + 'componere\\patch::getclosure' => array ( 0 => 'Closure', 'name' => 'string', ), - 'componere\\patch::getClosures' => + 'componere\\patch::getclosures' => array ( 0 => 'array', ), - 'componere\\patch::isApplied' => + 'componere\\patch::isapplied' => array ( 0 => 'bool', ), @@ -3604,54 +3604,54 @@ array ( 0 => 'void', ), - 'componere\\value::hasDefault' => + 'componere\\value::hasdefault' => array ( 0 => 'bool', ), - 'componere\\value::isPrivate' => + 'componere\\value::isprivate' => array ( 0 => 'bool', ), - 'componere\\value::isProtected' => + 'componere\\value::isprotected' => array ( 0 => 'bool', ), - 'componere\\value::isStatic' => + 'componere\\value::isstatic' => array ( 0 => 'bool', ), - 'componere\\value::setPrivate' => + 'componere\\value::setprivate' => array ( 0 => 'Value', ), - 'componere\\value::setProtected' => + 'componere\\value::setprotected' => array ( 0 => 'Value', ), - 'componere\\value::setStatic' => + 'componere\\value::setstatic' => array ( 0 => 'Value', ), - 'Cond::broadcast' => + 'cond::broadcast' => array ( 0 => 'bool', 'condition' => 'long', ), - 'Cond::create' => + 'cond::create' => array ( 0 => 'long', ), - 'Cond::destroy' => + 'cond::destroy' => array ( 0 => 'bool', 'condition' => 'long', ), - 'Cond::signal' => + 'cond::signal' => array ( 0 => 'bool', 'condition' => 'long', ), - 'Cond::wait' => + 'cond::wait' => array ( 0 => 'bool', 'condition' => 'long', @@ -3713,16 +3713,16 @@ 0 => 'float', 'num' => 'float', ), - 'Couchbase\\AnalyticsQuery::__construct' => + 'couchbase\\analyticsquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\AnalyticsQuery::fromString' => + 'couchbase\\analyticsquery::fromstring' => array ( 0 => 'Couchbase\\AnalyticsQuery', 'statement' => 'string', ), - 'Couchbase\\basicDecoderV1' => + 'couchbase\\basicdecoderv1' => array ( 0 => 'mixed', 'bytes' => 'string', @@ -3730,338 +3730,338 @@ 'datatype' => 'int', 'options' => 'array', ), - 'Couchbase\\basicEncoderV1' => + 'couchbase\\basicencoderv1' => array ( 0 => 'array', 'value' => 'mixed', 'options' => 'array', ), - 'Couchbase\\BooleanFieldSearchQuery::__construct' => + 'couchbase\\booleanfieldsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\BooleanFieldSearchQuery::boost' => + 'couchbase\\booleanfieldsearchquery::boost' => array ( 0 => 'Couchbase\\BooleanFieldSearchQuery', 'boost' => 'float', ), - 'Couchbase\\BooleanFieldSearchQuery::field' => + 'couchbase\\booleanfieldsearchquery::field' => array ( 0 => 'Couchbase\\BooleanFieldSearchQuery', 'field' => 'string', ), - 'Couchbase\\BooleanFieldSearchQuery::jsonSerialize' => + 'couchbase\\booleanfieldsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\BooleanSearchQuery::__construct' => + 'couchbase\\booleansearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\BooleanSearchQuery::boost' => + 'couchbase\\booleansearchquery::boost' => array ( 0 => 'Couchbase\\BooleanSearchQuery', 'boost' => 'float', ), - 'Couchbase\\BooleanSearchQuery::jsonSerialize' => + 'couchbase\\booleansearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\BooleanSearchQuery::must' => + 'couchbase\\booleansearchquery::must' => array ( 0 => 'Couchbase\\BooleanSearchQuery', '...queries=' => 'array', ), - 'Couchbase\\BooleanSearchQuery::mustNot' => + 'couchbase\\booleansearchquery::mustnot' => array ( 0 => 'Couchbase\\BooleanSearchQuery', '...queries=' => 'array', ), - 'Couchbase\\BooleanSearchQuery::should' => + 'couchbase\\booleansearchquery::should' => array ( 0 => 'Couchbase\\BooleanSearchQuery', '...queries=' => 'array', ), - 'Couchbase\\Bucket::__construct' => + 'couchbase\\bucket::__construct' => array ( 0 => 'void', ), - 'Couchbase\\Bucket::__get' => + 'couchbase\\bucket::__get' => array ( 0 => 'int', 'name' => 'string', ), - 'Couchbase\\Bucket::__set' => + 'couchbase\\bucket::__set' => array ( 0 => 'int', 'name' => 'string', 'value' => 'int', ), - 'Couchbase\\Bucket::append' => + 'couchbase\\bucket::append' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'value' => 'mixed', 'options=' => 'array', ), - 'Couchbase\\Bucket::counter' => + 'couchbase\\bucket::counter' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'delta=' => 'int', 'options=' => 'array', ), - 'Couchbase\\Bucket::decryptFields' => + 'couchbase\\bucket::decryptfields' => array ( 0 => 'array', 'document' => 'array', 'fieldOptions' => 'mixed', 'prefix=' => 'string', ), - 'Couchbase\\Bucket::diag' => + 'couchbase\\bucket::diag' => array ( 0 => 'array', 'reportId=' => 'string', ), - 'Couchbase\\Bucket::encryptFields' => + 'couchbase\\bucket::encryptfields' => array ( 0 => 'array', 'document' => 'array', 'fieldOptions' => 'mixed', 'prefix=' => 'string', ), - 'Couchbase\\Bucket::get' => + 'couchbase\\bucket::get' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'options=' => 'array', ), - 'Couchbase\\Bucket::getAndLock' => + 'couchbase\\bucket::getandlock' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'lockTime' => 'int', 'options=' => 'array', ), - 'Couchbase\\Bucket::getAndTouch' => + 'couchbase\\bucket::getandtouch' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'expiry' => 'int', 'options=' => 'array', ), - 'Couchbase\\Bucket::getFromReplica' => + 'couchbase\\bucket::getfromreplica' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'options=' => 'array', ), - 'Couchbase\\Bucket::getName' => + 'couchbase\\bucket::getname' => array ( 0 => 'string', ), - 'Couchbase\\Bucket::insert' => + 'couchbase\\bucket::insert' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'value' => 'mixed', 'options=' => 'array', ), - 'Couchbase\\Bucket::listExists' => + 'couchbase\\bucket::listexists' => array ( 0 => 'bool', 'id' => 'string', 'value' => 'mixed', ), - 'Couchbase\\Bucket::listGet' => + 'couchbase\\bucket::listget' => array ( 0 => 'mixed', 'id' => 'string', 'index' => 'int', ), - 'Couchbase\\Bucket::listPush' => + 'couchbase\\bucket::listpush' => array ( 0 => 'mixed', 'id' => 'string', 'value' => 'mixed', ), - 'Couchbase\\Bucket::listRemove' => + 'couchbase\\bucket::listremove' => array ( 0 => 'mixed', 'id' => 'string', 'index' => 'int', ), - 'Couchbase\\Bucket::listSet' => + 'couchbase\\bucket::listset' => array ( 0 => 'mixed', 'id' => 'string', 'index' => 'int', 'value' => 'mixed', ), - 'Couchbase\\Bucket::listShift' => + 'couchbase\\bucket::listshift' => array ( 0 => 'mixed', 'id' => 'string', 'value' => 'mixed', ), - 'Couchbase\\Bucket::listSize' => + 'couchbase\\bucket::listsize' => array ( 0 => 'int', 'id' => 'string', ), - 'Couchbase\\Bucket::lookupIn' => + 'couchbase\\bucket::lookupin' => array ( 0 => 'Couchbase\\LookupInBuilder', 'id' => 'string', ), - 'Couchbase\\Bucket::manager' => + 'couchbase\\bucket::manager' => array ( 0 => 'Couchbase\\BucketManager', ), - 'Couchbase\\Bucket::mapAdd' => + 'couchbase\\bucket::mapadd' => array ( 0 => 'mixed', 'id' => 'string', 'key' => 'string', 'value' => 'mixed', ), - 'Couchbase\\Bucket::mapGet' => + 'couchbase\\bucket::mapget' => array ( 0 => 'mixed', 'id' => 'string', 'key' => 'string', ), - 'Couchbase\\Bucket::mapRemove' => + 'couchbase\\bucket::mapremove' => array ( 0 => 'mixed', 'id' => 'string', 'key' => 'string', ), - 'Couchbase\\Bucket::mapSize' => + 'couchbase\\bucket::mapsize' => array ( 0 => 'int', 'id' => 'string', ), - 'Couchbase\\Bucket::mutateIn' => + 'couchbase\\bucket::mutatein' => array ( 0 => 'Couchbase\\MutateInBuilder', 'id' => 'string', 'cas' => 'string', ), - 'Couchbase\\Bucket::ping' => + 'couchbase\\bucket::ping' => array ( 0 => 'array', 'services=' => 'int', 'reportId=' => 'string', ), - 'Couchbase\\Bucket::prepend' => + 'couchbase\\bucket::prepend' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'value' => 'mixed', 'options=' => 'array', ), - 'Couchbase\\Bucket::query' => + 'couchbase\\bucket::query' => array ( 0 => 'object', 'query' => 'Couchbase\\AnalyticsQuery|Couchbase\\N1qlQuery|Couchbase\\SearchQuery|Couchbase\\SpatialViewQuery|Couchbase\\ViewQuery', 'jsonAsArray=' => 'bool', ), - 'Couchbase\\Bucket::queueAdd' => + 'couchbase\\bucket::queueadd' => array ( 0 => 'mixed', 'id' => 'string', 'value' => 'mixed', ), - 'Couchbase\\Bucket::queueExists' => + 'couchbase\\bucket::queueexists' => array ( 0 => 'bool', 'id' => 'string', 'value' => 'mixed', ), - 'Couchbase\\Bucket::queueRemove' => + 'couchbase\\bucket::queueremove' => array ( 0 => 'mixed', 'id' => 'string', ), - 'Couchbase\\Bucket::queueSize' => + 'couchbase\\bucket::queuesize' => array ( 0 => 'int', 'id' => 'string', ), - 'Couchbase\\Bucket::remove' => + 'couchbase\\bucket::remove' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'options=' => 'array', ), - 'Couchbase\\Bucket::replace' => + 'couchbase\\bucket::replace' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'value' => 'mixed', 'options=' => 'array', ), - 'Couchbase\\Bucket::retrieveIn' => + 'couchbase\\bucket::retrievein' => array ( 0 => 'Couchbase\\DocumentFragment', 'id' => 'string', '...paths=' => 'array', ), - 'Couchbase\\Bucket::setAdd' => + 'couchbase\\bucket::setadd' => array ( 0 => 'mixed', 'id' => 'string', 'value' => 'scalar', ), - 'Couchbase\\Bucket::setExists' => + 'couchbase\\bucket::setexists' => array ( 0 => 'bool', 'id' => 'string', 'value' => 'scalar', ), - 'Couchbase\\Bucket::setRemove' => + 'couchbase\\bucket::setremove' => array ( 0 => 'mixed', 'id' => 'string', 'value' => 'scalar', ), - 'Couchbase\\Bucket::setSize' => + 'couchbase\\bucket::setsize' => array ( 0 => 'int', 'id' => 'string', ), - 'Couchbase\\Bucket::setTranscoder' => + 'couchbase\\bucket::settranscoder' => array ( 0 => 'mixed', 'encoder' => 'callable', 'decoder' => 'callable', ), - 'Couchbase\\Bucket::touch' => + 'couchbase\\bucket::touch' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'expiry' => 'int', 'options=' => 'array', ), - 'Couchbase\\Bucket::unlock' => + 'couchbase\\bucket::unlock' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'options=' => 'array', ), - 'Couchbase\\Bucket::upsert' => + 'couchbase\\bucket::upsert' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'value' => 'mixed', 'options=' => 'array', ), - 'Couchbase\\BucketManager::__construct' => + 'couchbase\\bucketmanager::__construct' => array ( 0 => 'void', ), - 'Couchbase\\BucketManager::createN1qlIndex' => + 'couchbase\\bucketmanager::createn1qlindex' => array ( 0 => 'mixed', 'name' => 'string', @@ -4070,554 +4070,554 @@ 'ignoreIfExist=' => 'bool', 'defer=' => 'bool', ), - 'Couchbase\\BucketManager::createN1qlPrimaryIndex' => + 'couchbase\\bucketmanager::createn1qlprimaryindex' => array ( 0 => 'mixed', 'customName=' => 'string', 'ignoreIfExist=' => 'bool', 'defer=' => 'bool', ), - 'Couchbase\\BucketManager::dropN1qlIndex' => + 'couchbase\\bucketmanager::dropn1qlindex' => array ( 0 => 'mixed', 'name' => 'string', 'ignoreIfNotExist=' => 'bool', ), - 'Couchbase\\BucketManager::dropN1qlPrimaryIndex' => + 'couchbase\\bucketmanager::dropn1qlprimaryindex' => array ( 0 => 'mixed', 'customName=' => 'string', 'ignoreIfNotExist=' => 'bool', ), - 'Couchbase\\BucketManager::flush' => + 'couchbase\\bucketmanager::flush' => array ( 0 => 'mixed', ), - 'Couchbase\\BucketManager::getDesignDocument' => + 'couchbase\\bucketmanager::getdesigndocument' => array ( 0 => 'array', 'name' => 'string', ), - 'Couchbase\\BucketManager::info' => + 'couchbase\\bucketmanager::info' => array ( 0 => 'array', ), - 'Couchbase\\BucketManager::insertDesignDocument' => + 'couchbase\\bucketmanager::insertdesigndocument' => array ( 0 => 'mixed', 'name' => 'string', 'document' => 'array', ), - 'Couchbase\\BucketManager::listDesignDocuments' => + 'couchbase\\bucketmanager::listdesigndocuments' => array ( 0 => 'array', ), - 'Couchbase\\BucketManager::listN1qlIndexes' => + 'couchbase\\bucketmanager::listn1qlindexes' => array ( 0 => 'array', ), - 'Couchbase\\BucketManager::removeDesignDocument' => + 'couchbase\\bucketmanager::removedesigndocument' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Couchbase\\BucketManager::upsertDesignDocument' => + 'couchbase\\bucketmanager::upsertdesigndocument' => array ( 0 => 'mixed', 'name' => 'string', 'document' => 'array', ), - 'Couchbase\\ClassicAuthenticator::bucket' => + 'couchbase\\classicauthenticator::bucket' => array ( 0 => 'mixed', 'name' => 'string', 'password' => 'string', ), - 'Couchbase\\ClassicAuthenticator::cluster' => + 'couchbase\\classicauthenticator::cluster' => array ( 0 => 'mixed', 'username' => 'string', 'password' => 'string', ), - 'Couchbase\\Cluster::__construct' => + 'couchbase\\cluster::__construct' => array ( 0 => 'void', 'connstr' => 'string', ), - 'Couchbase\\Cluster::authenticate' => + 'couchbase\\cluster::authenticate' => array ( 0 => 'null', 'authenticator' => 'Couchbase\\Authenticator', ), - 'Couchbase\\Cluster::authenticateAs' => + 'couchbase\\cluster::authenticateas' => array ( 0 => 'null', 'username' => 'string', 'password' => 'string', ), - 'Couchbase\\Cluster::manager' => + 'couchbase\\cluster::manager' => array ( 0 => 'Couchbase\\ClusterManager', 'username=' => 'string', 'password=' => 'string', ), - 'Couchbase\\Cluster::openBucket' => + 'couchbase\\cluster::openbucket' => array ( 0 => 'Couchbase\\Bucket', 'name=' => 'string', 'password=' => 'string', ), - 'Couchbase\\ClusterManager::__construct' => + 'couchbase\\clustermanager::__construct' => array ( 0 => 'void', ), - 'Couchbase\\ClusterManager::createBucket' => + 'couchbase\\clustermanager::createbucket' => array ( 0 => 'mixed', 'name' => 'string', 'options=' => 'array', ), - 'Couchbase\\ClusterManager::getUser' => + 'couchbase\\clustermanager::getuser' => array ( 0 => 'array', 'username' => 'string', 'domain=' => 'int', ), - 'Couchbase\\ClusterManager::info' => + 'couchbase\\clustermanager::info' => array ( 0 => 'array', ), - 'Couchbase\\ClusterManager::listBuckets' => + 'couchbase\\clustermanager::listbuckets' => array ( 0 => 'array', ), - 'Couchbase\\ClusterManager::listUsers' => + 'couchbase\\clustermanager::listusers' => array ( 0 => 'array', 'domain=' => 'int', ), - 'Couchbase\\ClusterManager::removeBucket' => + 'couchbase\\clustermanager::removebucket' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Couchbase\\ClusterManager::removeUser' => + 'couchbase\\clustermanager::removeuser' => array ( 0 => 'mixed', 'name' => 'string', 'domain=' => 'int', ), - 'Couchbase\\ClusterManager::upsertUser' => + 'couchbase\\clustermanager::upsertuser' => array ( 0 => 'mixed', 'name' => 'string', 'settings' => 'Couchbase\\UserSettings', 'domain=' => 'int', ), - 'Couchbase\\ConjunctionSearchQuery::__construct' => + 'couchbase\\conjunctionsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\ConjunctionSearchQuery::boost' => + 'couchbase\\conjunctionsearchquery::boost' => array ( 0 => 'Couchbase\\ConjunctionSearchQuery', 'boost' => 'float', ), - 'Couchbase\\ConjunctionSearchQuery::every' => + 'couchbase\\conjunctionsearchquery::every' => array ( 0 => 'Couchbase\\ConjunctionSearchQuery', '...queries=' => 'array', ), - 'Couchbase\\ConjunctionSearchQuery::jsonSerialize' => + 'couchbase\\conjunctionsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\DateRangeSearchFacet::__construct' => + 'couchbase\\daterangesearchfacet::__construct' => array ( 0 => 'void', ), - 'Couchbase\\DateRangeSearchFacet::addRange' => + 'couchbase\\daterangesearchfacet::addrange' => array ( 0 => 'Couchbase\\DateRangeSearchFacet', 'name' => 'string', 'start' => 'int|string', 'end' => 'int|string', ), - 'Couchbase\\DateRangeSearchFacet::jsonSerialize' => + 'couchbase\\daterangesearchfacet::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\DateRangeSearchQuery::__construct' => + 'couchbase\\daterangesearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\DateRangeSearchQuery::boost' => + 'couchbase\\daterangesearchquery::boost' => array ( 0 => 'Couchbase\\DateRangeSearchQuery', 'boost' => 'float', ), - 'Couchbase\\DateRangeSearchQuery::dateTimeParser' => + 'couchbase\\daterangesearchquery::datetimeparser' => array ( 0 => 'Couchbase\\DateRangeSearchQuery', 'dateTimeParser' => 'string', ), - 'Couchbase\\DateRangeSearchQuery::end' => + 'couchbase\\daterangesearchquery::end' => array ( 0 => 'Couchbase\\DateRangeSearchQuery', 'end' => 'int|string', 'inclusive=' => 'bool', ), - 'Couchbase\\DateRangeSearchQuery::field' => + 'couchbase\\daterangesearchquery::field' => array ( 0 => 'Couchbase\\DateRangeSearchQuery', 'field' => 'string', ), - 'Couchbase\\DateRangeSearchQuery::jsonSerialize' => + 'couchbase\\daterangesearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\DateRangeSearchQuery::start' => + 'couchbase\\daterangesearchquery::start' => array ( 0 => 'Couchbase\\DateRangeSearchQuery', 'start' => 'int|string', 'inclusive=' => 'bool', ), - 'Couchbase\\defaultDecoder' => + 'couchbase\\defaultdecoder' => array ( 0 => 'mixed', 'bytes' => 'string', 'flags' => 'int', 'datatype' => 'int', ), - 'Couchbase\\defaultEncoder' => + 'couchbase\\defaultencoder' => array ( 0 => 'array', 'value' => 'mixed', ), - 'Couchbase\\DisjunctionSearchQuery::__construct' => + 'couchbase\\disjunctionsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\DisjunctionSearchQuery::boost' => + 'couchbase\\disjunctionsearchquery::boost' => array ( 0 => 'Couchbase\\DisjunctionSearchQuery', 'boost' => 'float', ), - 'Couchbase\\DisjunctionSearchQuery::either' => + 'couchbase\\disjunctionsearchquery::either' => array ( 0 => 'Couchbase\\DisjunctionSearchQuery', '...queries=' => 'array', ), - 'Couchbase\\DisjunctionSearchQuery::jsonSerialize' => + 'couchbase\\disjunctionsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\DisjunctionSearchQuery::min' => + 'couchbase\\disjunctionsearchquery::min' => array ( 0 => 'Couchbase\\DisjunctionSearchQuery', 'min' => 'int', ), - 'Couchbase\\DocIdSearchQuery::__construct' => + 'couchbase\\docidsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\DocIdSearchQuery::boost' => + 'couchbase\\docidsearchquery::boost' => array ( 0 => 'Couchbase\\DocIdSearchQuery', 'boost' => 'float', ), - 'Couchbase\\DocIdSearchQuery::docIds' => + 'couchbase\\docidsearchquery::docids' => array ( 0 => 'Couchbase\\DocIdSearchQuery', '...documentIds=' => 'array', ), - 'Couchbase\\DocIdSearchQuery::field' => + 'couchbase\\docidsearchquery::field' => array ( 0 => 'Couchbase\\DocIdSearchQuery', 'field' => 'string', ), - 'Couchbase\\DocIdSearchQuery::jsonSerialize' => + 'couchbase\\docidsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\fastlzCompress' => + 'couchbase\\fastlzcompress' => array ( 0 => 'string', 'data' => 'string', ), - 'Couchbase\\fastlzDecompress' => + 'couchbase\\fastlzdecompress' => array ( 0 => 'string', 'data' => 'string', ), - 'Couchbase\\GeoBoundingBoxSearchQuery::__construct' => + 'couchbase\\geoboundingboxsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\GeoBoundingBoxSearchQuery::boost' => + 'couchbase\\geoboundingboxsearchquery::boost' => array ( 0 => 'Couchbase\\GeoBoundingBoxSearchQuery', 'boost' => 'float', ), - 'Couchbase\\GeoBoundingBoxSearchQuery::field' => + 'couchbase\\geoboundingboxsearchquery::field' => array ( 0 => 'Couchbase\\GeoBoundingBoxSearchQuery', 'field' => 'string', ), - 'Couchbase\\GeoBoundingBoxSearchQuery::jsonSerialize' => + 'couchbase\\geoboundingboxsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\GeoDistanceSearchQuery::__construct' => + 'couchbase\\geodistancesearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\GeoDistanceSearchQuery::boost' => + 'couchbase\\geodistancesearchquery::boost' => array ( 0 => 'Couchbase\\GeoDistanceSearchQuery', 'boost' => 'float', ), - 'Couchbase\\GeoDistanceSearchQuery::field' => + 'couchbase\\geodistancesearchquery::field' => array ( 0 => 'Couchbase\\GeoDistanceSearchQuery', 'field' => 'string', ), - 'Couchbase\\GeoDistanceSearchQuery::jsonSerialize' => + 'couchbase\\geodistancesearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\LookupInBuilder::__construct' => + 'couchbase\\lookupinbuilder::__construct' => array ( 0 => 'void', ), - 'Couchbase\\LookupInBuilder::execute' => + 'couchbase\\lookupinbuilder::execute' => array ( 0 => 'Couchbase\\DocumentFragment', ), - 'Couchbase\\LookupInBuilder::exists' => + 'couchbase\\lookupinbuilder::exists' => array ( 0 => 'Couchbase\\LookupInBuilder', 'path' => 'string', 'options=' => 'array', ), - 'Couchbase\\LookupInBuilder::get' => + 'couchbase\\lookupinbuilder::get' => array ( 0 => 'Couchbase\\LookupInBuilder', 'path' => 'string', 'options=' => 'array', ), - 'Couchbase\\LookupInBuilder::getCount' => + 'couchbase\\lookupinbuilder::getcount' => array ( 0 => 'Couchbase\\LookupInBuilder', 'path' => 'string', 'options=' => 'array', ), - 'Couchbase\\MatchAllSearchQuery::__construct' => + 'couchbase\\matchallsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\MatchAllSearchQuery::boost' => + 'couchbase\\matchallsearchquery::boost' => array ( 0 => 'Couchbase\\MatchAllSearchQuery', 'boost' => 'float', ), - 'Couchbase\\MatchAllSearchQuery::jsonSerialize' => + 'couchbase\\matchallsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\MatchNoneSearchQuery::__construct' => + 'couchbase\\matchnonesearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\MatchNoneSearchQuery::boost' => + 'couchbase\\matchnonesearchquery::boost' => array ( 0 => 'Couchbase\\MatchNoneSearchQuery', 'boost' => 'float', ), - 'Couchbase\\MatchNoneSearchQuery::jsonSerialize' => + 'couchbase\\matchnonesearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\MatchPhraseSearchQuery::__construct' => + 'couchbase\\matchphrasesearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\MatchPhraseSearchQuery::analyzer' => + 'couchbase\\matchphrasesearchquery::analyzer' => array ( 0 => 'Couchbase\\MatchPhraseSearchQuery', 'analyzer' => 'string', ), - 'Couchbase\\MatchPhraseSearchQuery::boost' => + 'couchbase\\matchphrasesearchquery::boost' => array ( 0 => 'Couchbase\\MatchPhraseSearchQuery', 'boost' => 'float', ), - 'Couchbase\\MatchPhraseSearchQuery::field' => + 'couchbase\\matchphrasesearchquery::field' => array ( 0 => 'Couchbase\\MatchPhraseSearchQuery', 'field' => 'string', ), - 'Couchbase\\MatchPhraseSearchQuery::jsonSerialize' => + 'couchbase\\matchphrasesearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\MatchSearchQuery::__construct' => + 'couchbase\\matchsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\MatchSearchQuery::analyzer' => + 'couchbase\\matchsearchquery::analyzer' => array ( 0 => 'Couchbase\\MatchSearchQuery', 'analyzer' => 'string', ), - 'Couchbase\\MatchSearchQuery::boost' => + 'couchbase\\matchsearchquery::boost' => array ( 0 => 'Couchbase\\MatchSearchQuery', 'boost' => 'float', ), - 'Couchbase\\MatchSearchQuery::field' => + 'couchbase\\matchsearchquery::field' => array ( 0 => 'Couchbase\\MatchSearchQuery', 'field' => 'string', ), - 'Couchbase\\MatchSearchQuery::fuzziness' => + 'couchbase\\matchsearchquery::fuzziness' => array ( 0 => 'Couchbase\\MatchSearchQuery', 'fuzziness' => 'int', ), - 'Couchbase\\MatchSearchQuery::jsonSerialize' => + 'couchbase\\matchsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\MatchSearchQuery::prefixLength' => + 'couchbase\\matchsearchquery::prefixlength' => array ( 0 => 'Couchbase\\MatchSearchQuery', 'prefixLength' => 'int', ), - 'Couchbase\\MutateInBuilder::__construct' => + 'couchbase\\mutateinbuilder::__construct' => array ( 0 => 'void', ), - 'Couchbase\\MutateInBuilder::arrayAddUnique' => + 'couchbase\\mutateinbuilder::arrayaddunique' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'value' => 'mixed', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::arrayAppend' => + 'couchbase\\mutateinbuilder::arrayappend' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'value' => 'mixed', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::arrayAppendAll' => + 'couchbase\\mutateinbuilder::arrayappendall' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'values' => 'array', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::arrayInsert' => + 'couchbase\\mutateinbuilder::arrayinsert' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'value' => 'mixed', 'options=' => 'array', ), - 'Couchbase\\MutateInBuilder::arrayInsertAll' => + 'couchbase\\mutateinbuilder::arrayinsertall' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'values' => 'array', 'options=' => 'array', ), - 'Couchbase\\MutateInBuilder::arrayPrepend' => + 'couchbase\\mutateinbuilder::arrayprepend' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'value' => 'mixed', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::arrayPrependAll' => + 'couchbase\\mutateinbuilder::arrayprependall' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'values' => 'array', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::counter' => + 'couchbase\\mutateinbuilder::counter' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'delta' => 'int', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::execute' => + 'couchbase\\mutateinbuilder::execute' => array ( 0 => 'Couchbase\\DocumentFragment', ), - 'Couchbase\\MutateInBuilder::insert' => + 'couchbase\\mutateinbuilder::insert' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'value' => 'mixed', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::modeDocument' => + 'couchbase\\mutateinbuilder::modedocument' => array ( 0 => 'mixed', 'mode' => 'int', ), - 'Couchbase\\MutateInBuilder::remove' => + 'couchbase\\mutateinbuilder::remove' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'options=' => 'array', ), - 'Couchbase\\MutateInBuilder::replace' => + 'couchbase\\mutateinbuilder::replace' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'value' => 'mixed', 'options=' => 'array', ), - 'Couchbase\\MutateInBuilder::upsert' => + 'couchbase\\mutateinbuilder::upsert' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'value' => 'mixed', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::withExpiry' => + 'couchbase\\mutateinbuilder::withexpiry' => array ( 0 => 'Couchbase\\MutateInBuilder', 'expiry' => 'Couchbase\\expiry', ), - 'Couchbase\\MutationState::__construct' => + 'couchbase\\mutationstate::__construct' => array ( 0 => 'void', ), - 'Couchbase\\MutationState::add' => + 'couchbase\\mutationstate::add' => array ( 0 => 'mixed', 'source' => 'Couchbase\\Document|Couchbase\\DocumentFragment|array', ), - 'Couchbase\\MutationState::from' => + 'couchbase\\mutationstate::from' => array ( 0 => 'Couchbase\\MutationState', 'source' => 'Couchbase\\Document|Couchbase\\DocumentFragment|array', ), - 'Couchbase\\MutationToken::__construct' => + 'couchbase\\mutationtoken::__construct' => array ( 0 => 'void', ), - 'Couchbase\\MutationToken::bucketName' => + 'couchbase\\mutationtoken::bucketname' => array ( 0 => 'string', ), - 'Couchbase\\MutationToken::from' => + 'couchbase\\mutationtoken::from' => array ( 0 => 'mixed', 'bucketName' => 'string', @@ -4625,287 +4625,287 @@ 'vbucketUuid' => 'string', 'sequenceNumber' => 'string', ), - 'Couchbase\\MutationToken::sequenceNumber' => + 'couchbase\\mutationtoken::sequencenumber' => array ( 0 => 'string', ), - 'Couchbase\\MutationToken::vbucketId' => + 'couchbase\\mutationtoken::vbucketid' => array ( 0 => 'int', ), - 'Couchbase\\MutationToken::vbucketUuid' => + 'couchbase\\mutationtoken::vbucketuuid' => array ( 0 => 'string', ), - 'Couchbase\\N1qlIndex::__construct' => + 'couchbase\\n1qlindex::__construct' => array ( 0 => 'void', ), - 'Couchbase\\N1qlQuery::__construct' => + 'couchbase\\n1qlquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\N1qlQuery::adhoc' => + 'couchbase\\n1qlquery::adhoc' => array ( 0 => 'Couchbase\\N1qlQuery', 'adhoc' => 'bool', ), - 'Couchbase\\N1qlQuery::consistency' => + 'couchbase\\n1qlquery::consistency' => array ( 0 => 'Couchbase\\N1qlQuery', 'consistency' => 'int', ), - 'Couchbase\\N1qlQuery::consistentWith' => + 'couchbase\\n1qlquery::consistentwith' => array ( 0 => 'Couchbase\\N1qlQuery', 'state' => 'Couchbase\\MutationState', ), - 'Couchbase\\N1qlQuery::crossBucket' => + 'couchbase\\n1qlquery::crossbucket' => array ( 0 => 'Couchbase\\N1qlQuery', 'crossBucket' => 'bool', ), - 'Couchbase\\N1qlQuery::fromString' => + 'couchbase\\n1qlquery::fromstring' => array ( 0 => 'Couchbase\\N1qlQuery', 'statement' => 'string', ), - 'Couchbase\\N1qlQuery::maxParallelism' => + 'couchbase\\n1qlquery::maxparallelism' => array ( 0 => 'Couchbase\\N1qlQuery', 'maxParallelism' => 'int', ), - 'Couchbase\\N1qlQuery::namedParams' => + 'couchbase\\n1qlquery::namedparams' => array ( 0 => 'Couchbase\\N1qlQuery', 'params' => 'array', ), - 'Couchbase\\N1qlQuery::pipelineBatch' => + 'couchbase\\n1qlquery::pipelinebatch' => array ( 0 => 'Couchbase\\N1qlQuery', 'pipelineBatch' => 'int', ), - 'Couchbase\\N1qlQuery::pipelineCap' => + 'couchbase\\n1qlquery::pipelinecap' => array ( 0 => 'Couchbase\\N1qlQuery', 'pipelineCap' => 'int', ), - 'Couchbase\\N1qlQuery::positionalParams' => + 'couchbase\\n1qlquery::positionalparams' => array ( 0 => 'Couchbase\\N1qlQuery', 'params' => 'array', ), - 'Couchbase\\N1qlQuery::profile' => + 'couchbase\\n1qlquery::profile' => array ( 0 => 'mixed', 'profileType' => 'string', ), - 'Couchbase\\N1qlQuery::readonly' => + 'couchbase\\n1qlquery::readonly' => array ( 0 => 'Couchbase\\N1qlQuery', 'readonly' => 'bool', ), - 'Couchbase\\N1qlQuery::scanCap' => + 'couchbase\\n1qlquery::scancap' => array ( 0 => 'Couchbase\\N1qlQuery', 'scanCap' => 'int', ), - 'Couchbase\\NumericRangeSearchFacet::__construct' => + 'couchbase\\numericrangesearchfacet::__construct' => array ( 0 => 'void', ), - 'Couchbase\\NumericRangeSearchFacet::addRange' => + 'couchbase\\numericrangesearchfacet::addrange' => array ( 0 => 'Couchbase\\NumericRangeSearchFacet', 'name' => 'string', 'min' => 'float', 'max' => 'float', ), - 'Couchbase\\NumericRangeSearchFacet::jsonSerialize' => + 'couchbase\\numericrangesearchfacet::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\NumericRangeSearchQuery::__construct' => + 'couchbase\\numericrangesearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\NumericRangeSearchQuery::boost' => + 'couchbase\\numericrangesearchquery::boost' => array ( 0 => 'Couchbase\\NumericRangeSearchQuery', 'boost' => 'float', ), - 'Couchbase\\NumericRangeSearchQuery::field' => + 'couchbase\\numericrangesearchquery::field' => array ( 0 => 'Couchbase\\NumericRangeSearchQuery', 'field' => 'string', ), - 'Couchbase\\NumericRangeSearchQuery::jsonSerialize' => + 'couchbase\\numericrangesearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\NumericRangeSearchQuery::max' => + 'couchbase\\numericrangesearchquery::max' => array ( 0 => 'Couchbase\\NumericRangeSearchQuery', 'max' => 'float', 'inclusive=' => 'bool', ), - 'Couchbase\\NumericRangeSearchQuery::min' => + 'couchbase\\numericrangesearchquery::min' => array ( 0 => 'Couchbase\\NumericRangeSearchQuery', 'min' => 'float', 'inclusive=' => 'bool', ), - 'Couchbase\\passthruDecoder' => + 'couchbase\\passthrudecoder' => array ( 0 => 'string', 'bytes' => 'string', 'flags' => 'int', 'datatype' => 'int', ), - 'Couchbase\\passthruEncoder' => + 'couchbase\\passthruencoder' => array ( 0 => 'array', 'value' => 'string', ), - 'Couchbase\\PasswordAuthenticator::password' => + 'couchbase\\passwordauthenticator::password' => array ( 0 => 'Couchbase\\PasswordAuthenticator', 'password' => 'string', ), - 'Couchbase\\PasswordAuthenticator::username' => + 'couchbase\\passwordauthenticator::username' => array ( 0 => 'Couchbase\\PasswordAuthenticator', 'username' => 'string', ), - 'Couchbase\\PhraseSearchQuery::__construct' => + 'couchbase\\phrasesearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\PhraseSearchQuery::boost' => + 'couchbase\\phrasesearchquery::boost' => array ( 0 => 'Couchbase\\PhraseSearchQuery', 'boost' => 'float', ), - 'Couchbase\\PhraseSearchQuery::field' => + 'couchbase\\phrasesearchquery::field' => array ( 0 => 'Couchbase\\PhraseSearchQuery', 'field' => 'string', ), - 'Couchbase\\PhraseSearchQuery::jsonSerialize' => + 'couchbase\\phrasesearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\PrefixSearchQuery::__construct' => + 'couchbase\\prefixsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\PrefixSearchQuery::boost' => + 'couchbase\\prefixsearchquery::boost' => array ( 0 => 'Couchbase\\PrefixSearchQuery', 'boost' => 'float', ), - 'Couchbase\\PrefixSearchQuery::field' => + 'couchbase\\prefixsearchquery::field' => array ( 0 => 'Couchbase\\PrefixSearchQuery', 'field' => 'string', ), - 'Couchbase\\PrefixSearchQuery::jsonSerialize' => + 'couchbase\\prefixsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\QueryStringSearchQuery::__construct' => + 'couchbase\\querystringsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\QueryStringSearchQuery::boost' => + 'couchbase\\querystringsearchquery::boost' => array ( 0 => 'Couchbase\\QueryStringSearchQuery', 'boost' => 'float', ), - 'Couchbase\\QueryStringSearchQuery::jsonSerialize' => + 'couchbase\\querystringsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\RegexpSearchQuery::__construct' => + 'couchbase\\regexpsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\RegexpSearchQuery::boost' => + 'couchbase\\regexpsearchquery::boost' => array ( 0 => 'Couchbase\\RegexpSearchQuery', 'boost' => 'float', ), - 'Couchbase\\RegexpSearchQuery::field' => + 'couchbase\\regexpsearchquery::field' => array ( 0 => 'Couchbase\\RegexpSearchQuery', 'field' => 'string', ), - 'Couchbase\\RegexpSearchQuery::jsonSerialize' => + 'couchbase\\regexpsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\SearchQuery::__construct' => + 'couchbase\\searchquery::__construct' => array ( 0 => 'void', 'indexName' => 'string', 'queryPart' => 'Couchbase\\SearchQueryPart', ), - 'Couchbase\\SearchQuery::addFacet' => + 'couchbase\\searchquery::addfacet' => array ( 0 => 'Couchbase\\SearchQuery', 'name' => 'string', 'facet' => 'Couchbase\\SearchFacet', ), - 'Couchbase\\SearchQuery::boolean' => + 'couchbase\\searchquery::boolean' => array ( 0 => 'Couchbase\\BooleanSearchQuery', ), - 'Couchbase\\SearchQuery::booleanField' => + 'couchbase\\searchquery::booleanfield' => array ( 0 => 'Couchbase\\BooleanFieldSearchQuery', 'value' => 'bool', ), - 'Couchbase\\SearchQuery::conjuncts' => + 'couchbase\\searchquery::conjuncts' => array ( 0 => 'Couchbase\\ConjunctionSearchQuery', '...queries=' => 'array', ), - 'Couchbase\\SearchQuery::consistentWith' => + 'couchbase\\searchquery::consistentwith' => array ( 0 => 'Couchbase\\SearchQuery', 'state' => 'Couchbase\\MutationState', ), - 'Couchbase\\SearchQuery::dateRange' => + 'couchbase\\searchquery::daterange' => array ( 0 => 'Couchbase\\DateRangeSearchQuery', ), - 'Couchbase\\SearchQuery::dateRangeFacet' => + 'couchbase\\searchquery::daterangefacet' => array ( 0 => 'Couchbase\\DateRangeSearchFacet', 'field' => 'string', 'limit' => 'int', ), - 'Couchbase\\SearchQuery::disjuncts' => + 'couchbase\\searchquery::disjuncts' => array ( 0 => 'Couchbase\\DisjunctionSearchQuery', '...queries=' => 'array', ), - 'Couchbase\\SearchQuery::docId' => + 'couchbase\\searchquery::docid' => array ( 0 => 'Couchbase\\DocIdSearchQuery', '...documentIds=' => 'array', ), - 'Couchbase\\SearchQuery::explain' => + 'couchbase\\searchquery::explain' => array ( 0 => 'Couchbase\\SearchQuery', 'explain' => 'bool', ), - 'Couchbase\\SearchQuery::fields' => + 'couchbase\\searchquery::fields' => array ( 0 => 'Couchbase\\SearchQuery', '...fields=' => 'array', ), - 'Couchbase\\SearchQuery::geoBoundingBox' => + 'couchbase\\searchquery::geoboundingbox' => array ( 0 => 'Couchbase\\GeoBoundingBoxSearchQuery', 'topLeftLongitude' => 'float', @@ -4913,523 +4913,523 @@ 'bottomRightLongitude' => 'float', 'bottomRightLatitude' => 'float', ), - 'Couchbase\\SearchQuery::geoDistance' => + 'couchbase\\searchquery::geodistance' => array ( 0 => 'Couchbase\\GeoDistanceSearchQuery', 'longitude' => 'float', 'latitude' => 'float', 'distance' => 'string', ), - 'Couchbase\\SearchQuery::highlight' => + 'couchbase\\searchquery::highlight' => array ( 0 => 'Couchbase\\SearchQuery', 'style' => 'string', '...fields=' => 'array', ), - 'Couchbase\\SearchQuery::jsonSerialize' => + 'couchbase\\searchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\SearchQuery::limit' => + 'couchbase\\searchquery::limit' => array ( 0 => 'Couchbase\\SearchQuery', 'limit' => 'int', ), - 'Couchbase\\SearchQuery::match' => + 'couchbase\\searchquery::match' => array ( 0 => 'Couchbase\\MatchSearchQuery', 'match' => 'string', ), - 'Couchbase\\SearchQuery::matchAll' => + 'couchbase\\searchquery::matchall' => array ( 0 => 'Couchbase\\MatchAllSearchQuery', ), - 'Couchbase\\SearchQuery::matchNone' => + 'couchbase\\searchquery::matchnone' => array ( 0 => 'Couchbase\\MatchNoneSearchQuery', ), - 'Couchbase\\SearchQuery::matchPhrase' => + 'couchbase\\searchquery::matchphrase' => array ( 0 => 'Couchbase\\MatchPhraseSearchQuery', '...terms=' => 'array', ), - 'Couchbase\\SearchQuery::numericRange' => + 'couchbase\\searchquery::numericrange' => array ( 0 => 'Couchbase\\NumericRangeSearchQuery', ), - 'Couchbase\\SearchQuery::numericRangeFacet' => + 'couchbase\\searchquery::numericrangefacet' => array ( 0 => 'Couchbase\\NumericRangeSearchFacet', 'field' => 'string', 'limit' => 'int', ), - 'Couchbase\\SearchQuery::prefix' => + 'couchbase\\searchquery::prefix' => array ( 0 => 'Couchbase\\PrefixSearchQuery', 'prefix' => 'string', ), - 'Couchbase\\SearchQuery::queryString' => + 'couchbase\\searchquery::querystring' => array ( 0 => 'Couchbase\\QueryStringSearchQuery', 'queryString' => 'string', ), - 'Couchbase\\SearchQuery::regexp' => + 'couchbase\\searchquery::regexp' => array ( 0 => 'Couchbase\\RegexpSearchQuery', 'regexp' => 'string', ), - 'Couchbase\\SearchQuery::serverSideTimeout' => + 'couchbase\\searchquery::serversidetimeout' => array ( 0 => 'Couchbase\\SearchQuery', 'serverSideTimeout' => 'int', ), - 'Couchbase\\SearchQuery::skip' => + 'couchbase\\searchquery::skip' => array ( 0 => 'Couchbase\\SearchQuery', 'skip' => 'int', ), - 'Couchbase\\SearchQuery::sort' => + 'couchbase\\searchquery::sort' => array ( 0 => 'Couchbase\\SearchQuery', '...sort=' => 'array', ), - 'Couchbase\\SearchQuery::term' => + 'couchbase\\searchquery::term' => array ( 0 => 'Couchbase\\TermSearchQuery', 'term' => 'string', ), - 'Couchbase\\SearchQuery::termFacet' => + 'couchbase\\searchquery::termfacet' => array ( 0 => 'Couchbase\\TermSearchFacet', 'field' => 'string', 'limit' => 'int', ), - 'Couchbase\\SearchQuery::termRange' => + 'couchbase\\searchquery::termrange' => array ( 0 => 'Couchbase\\TermRangeSearchQuery', ), - 'Couchbase\\SearchQuery::wildcard' => + 'couchbase\\searchquery::wildcard' => array ( 0 => 'Couchbase\\WildcardSearchQuery', 'wildcard' => 'string', ), - 'Couchbase\\SearchSort::__construct' => + 'couchbase\\searchsort::__construct' => array ( 0 => 'void', ), - 'Couchbase\\SearchSort::field' => + 'couchbase\\searchsort::field' => array ( 0 => 'Couchbase\\SearchSortField', 'field' => 'string', ), - 'Couchbase\\SearchSort::geoDistance' => + 'couchbase\\searchsort::geodistance' => array ( 0 => 'Couchbase\\SearchSortGeoDistance', 'field' => 'string', 'longitude' => 'float', 'latitude' => 'float', ), - 'Couchbase\\SearchSort::id' => + 'couchbase\\searchsort::id' => array ( 0 => 'Couchbase\\SearchSortId', ), - 'Couchbase\\SearchSort::score' => + 'couchbase\\searchsort::score' => array ( 0 => 'Couchbase\\SearchSortScore', ), - 'Couchbase\\SearchSortField::__construct' => + 'couchbase\\searchsortfield::__construct' => array ( 0 => 'void', ), - 'Couchbase\\SearchSortField::descending' => + 'couchbase\\searchsortfield::descending' => array ( 0 => 'Couchbase\\SearchSortField', 'descending' => 'bool', ), - 'Couchbase\\SearchSortField::field' => + 'couchbase\\searchsortfield::field' => array ( 0 => 'Couchbase\\SearchSortField', 'field' => 'string', ), - 'Couchbase\\SearchSortField::geoDistance' => + 'couchbase\\searchsortfield::geodistance' => array ( 0 => 'Couchbase\\SearchSortGeoDistance', 'field' => 'string', 'longitude' => 'float', 'latitude' => 'float', ), - 'Couchbase\\SearchSortField::id' => + 'couchbase\\searchsortfield::id' => array ( 0 => 'Couchbase\\SearchSortId', ), - 'Couchbase\\SearchSortField::jsonSerialize' => + 'couchbase\\searchsortfield::jsonserialize' => array ( 0 => 'mixed', ), - 'Couchbase\\SearchSortField::missing' => + 'couchbase\\searchsortfield::missing' => array ( 0 => 'mixed', 'missing' => 'string', ), - 'Couchbase\\SearchSortField::mode' => + 'couchbase\\searchsortfield::mode' => array ( 0 => 'mixed', 'mode' => 'string', ), - 'Couchbase\\SearchSortField::score' => + 'couchbase\\searchsortfield::score' => array ( 0 => 'Couchbase\\SearchSortScore', ), - 'Couchbase\\SearchSortField::type' => + 'couchbase\\searchsortfield::type' => array ( 0 => 'mixed', 'type' => 'string', ), - 'Couchbase\\SearchSortGeoDistance::__construct' => + 'couchbase\\searchsortgeodistance::__construct' => array ( 0 => 'void', ), - 'Couchbase\\SearchSortGeoDistance::descending' => + 'couchbase\\searchsortgeodistance::descending' => array ( 0 => 'Couchbase\\SearchSortGeoDistance', 'descending' => 'bool', ), - 'Couchbase\\SearchSortGeoDistance::field' => + 'couchbase\\searchsortgeodistance::field' => array ( 0 => 'Couchbase\\SearchSortField', 'field' => 'string', ), - 'Couchbase\\SearchSortGeoDistance::geoDistance' => + 'couchbase\\searchsortgeodistance::geodistance' => array ( 0 => 'Couchbase\\SearchSortGeoDistance', 'field' => 'string', 'longitude' => 'float', 'latitude' => 'float', ), - 'Couchbase\\SearchSortGeoDistance::id' => + 'couchbase\\searchsortgeodistance::id' => array ( 0 => 'Couchbase\\SearchSortId', ), - 'Couchbase\\SearchSortGeoDistance::jsonSerialize' => + 'couchbase\\searchsortgeodistance::jsonserialize' => array ( 0 => 'mixed', ), - 'Couchbase\\SearchSortGeoDistance::score' => + 'couchbase\\searchsortgeodistance::score' => array ( 0 => 'Couchbase\\SearchSortScore', ), - 'Couchbase\\SearchSortGeoDistance::unit' => + 'couchbase\\searchsortgeodistance::unit' => array ( 0 => 'Couchbase\\SearchSortGeoDistance', 'unit' => 'string', ), - 'Couchbase\\SearchSortId::__construct' => + 'couchbase\\searchsortid::__construct' => array ( 0 => 'void', ), - 'Couchbase\\SearchSortId::descending' => + 'couchbase\\searchsortid::descending' => array ( 0 => 'Couchbase\\SearchSortId', 'descending' => 'bool', ), - 'Couchbase\\SearchSortId::field' => + 'couchbase\\searchsortid::field' => array ( 0 => 'Couchbase\\SearchSortField', 'field' => 'string', ), - 'Couchbase\\SearchSortId::geoDistance' => + 'couchbase\\searchsortid::geodistance' => array ( 0 => 'Couchbase\\SearchSortGeoDistance', 'field' => 'string', 'longitude' => 'float', 'latitude' => 'float', ), - 'Couchbase\\SearchSortId::id' => + 'couchbase\\searchsortid::id' => array ( 0 => 'Couchbase\\SearchSortId', ), - 'Couchbase\\SearchSortId::jsonSerialize' => + 'couchbase\\searchsortid::jsonserialize' => array ( 0 => 'mixed', ), - 'Couchbase\\SearchSortId::score' => + 'couchbase\\searchsortid::score' => array ( 0 => 'Couchbase\\SearchSortScore', ), - 'Couchbase\\SearchSortScore::__construct' => + 'couchbase\\searchsortscore::__construct' => array ( 0 => 'void', ), - 'Couchbase\\SearchSortScore::descending' => + 'couchbase\\searchsortscore::descending' => array ( 0 => 'Couchbase\\SearchSortScore', 'descending' => 'bool', ), - 'Couchbase\\SearchSortScore::field' => + 'couchbase\\searchsortscore::field' => array ( 0 => 'Couchbase\\SearchSortField', 'field' => 'string', ), - 'Couchbase\\SearchSortScore::geoDistance' => + 'couchbase\\searchsortscore::geodistance' => array ( 0 => 'Couchbase\\SearchSortGeoDistance', 'field' => 'string', 'longitude' => 'float', 'latitude' => 'float', ), - 'Couchbase\\SearchSortScore::id' => + 'couchbase\\searchsortscore::id' => array ( 0 => 'Couchbase\\SearchSortId', ), - 'Couchbase\\SearchSortScore::jsonSerialize' => + 'couchbase\\searchsortscore::jsonserialize' => array ( 0 => 'mixed', ), - 'Couchbase\\SearchSortScore::score' => + 'couchbase\\searchsortscore::score' => array ( 0 => 'Couchbase\\SearchSortScore', ), - 'Couchbase\\SpatialViewQuery::__construct' => + 'couchbase\\spatialviewquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\SpatialViewQuery::bbox' => + 'couchbase\\spatialviewquery::bbox' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'bbox' => 'array', ), - 'Couchbase\\SpatialViewQuery::consistency' => + 'couchbase\\spatialviewquery::consistency' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'consistency' => 'int', ), - 'Couchbase\\SpatialViewQuery::custom' => + 'couchbase\\spatialviewquery::custom' => array ( 0 => 'mixed', 'customParameters' => 'array', ), - 'Couchbase\\SpatialViewQuery::encode' => + 'couchbase\\spatialviewquery::encode' => array ( 0 => 'array', ), - 'Couchbase\\SpatialViewQuery::endRange' => + 'couchbase\\spatialviewquery::endrange' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'range' => 'array', ), - 'Couchbase\\SpatialViewQuery::limit' => + 'couchbase\\spatialviewquery::limit' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'limit' => 'int', ), - 'Couchbase\\SpatialViewQuery::order' => + 'couchbase\\spatialviewquery::order' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'order' => 'int', ), - 'Couchbase\\SpatialViewQuery::skip' => + 'couchbase\\spatialviewquery::skip' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'skip' => 'int', ), - 'Couchbase\\SpatialViewQuery::startRange' => + 'couchbase\\spatialviewquery::startrange' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'range' => 'array', ), - 'Couchbase\\TermRangeSearchQuery::__construct' => + 'couchbase\\termrangesearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\TermRangeSearchQuery::boost' => + 'couchbase\\termrangesearchquery::boost' => array ( 0 => 'Couchbase\\TermRangeSearchQuery', 'boost' => 'float', ), - 'Couchbase\\TermRangeSearchQuery::field' => + 'couchbase\\termrangesearchquery::field' => array ( 0 => 'Couchbase\\TermRangeSearchQuery', 'field' => 'string', ), - 'Couchbase\\TermRangeSearchQuery::jsonSerialize' => + 'couchbase\\termrangesearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\TermRangeSearchQuery::max' => + 'couchbase\\termrangesearchquery::max' => array ( 0 => 'Couchbase\\TermRangeSearchQuery', 'max' => 'string', 'inclusive=' => 'bool', ), - 'Couchbase\\TermRangeSearchQuery::min' => + 'couchbase\\termrangesearchquery::min' => array ( 0 => 'Couchbase\\TermRangeSearchQuery', 'min' => 'string', 'inclusive=' => 'bool', ), - 'Couchbase\\TermSearchFacet::__construct' => + 'couchbase\\termsearchfacet::__construct' => array ( 0 => 'void', ), - 'Couchbase\\TermSearchFacet::jsonSerialize' => + 'couchbase\\termsearchfacet::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\TermSearchQuery::__construct' => + 'couchbase\\termsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\TermSearchQuery::boost' => + 'couchbase\\termsearchquery::boost' => array ( 0 => 'Couchbase\\TermSearchQuery', 'boost' => 'float', ), - 'Couchbase\\TermSearchQuery::field' => + 'couchbase\\termsearchquery::field' => array ( 0 => 'Couchbase\\TermSearchQuery', 'field' => 'string', ), - 'Couchbase\\TermSearchQuery::fuzziness' => + 'couchbase\\termsearchquery::fuzziness' => array ( 0 => 'Couchbase\\TermSearchQuery', 'fuzziness' => 'int', ), - 'Couchbase\\TermSearchQuery::jsonSerialize' => + 'couchbase\\termsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\TermSearchQuery::prefixLength' => + 'couchbase\\termsearchquery::prefixlength' => array ( 0 => 'Couchbase\\TermSearchQuery', 'prefixLength' => 'int', ), - 'Couchbase\\UserSettings::fullName' => + 'couchbase\\usersettings::fullname' => array ( 0 => 'Couchbase\\UserSettings', 'fullName' => 'string', ), - 'Couchbase\\UserSettings::password' => + 'couchbase\\usersettings::password' => array ( 0 => 'Couchbase\\UserSettings', 'password' => 'string', ), - 'Couchbase\\UserSettings::role' => + 'couchbase\\usersettings::role' => array ( 0 => 'Couchbase\\UserSettings', 'role' => 'string', 'bucket=' => 'string', ), - 'Couchbase\\ViewQuery::__construct' => + 'couchbase\\viewquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\ViewQuery::consistency' => + 'couchbase\\viewquery::consistency' => array ( 0 => 'Couchbase\\ViewQuery', 'consistency' => 'int', ), - 'Couchbase\\ViewQuery::custom' => + 'couchbase\\viewquery::custom' => array ( 0 => 'Couchbase\\ViewQuery', 'customParameters' => 'array', ), - 'Couchbase\\ViewQuery::encode' => + 'couchbase\\viewquery::encode' => array ( 0 => 'array', ), - 'Couchbase\\ViewQuery::from' => + 'couchbase\\viewquery::from' => array ( 0 => 'Couchbase\\ViewQuery', 'designDocumentName' => 'string', 'viewName' => 'string', ), - 'Couchbase\\ViewQuery::fromSpatial' => + 'couchbase\\viewquery::fromspatial' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'designDocumentName' => 'string', 'viewName' => 'string', ), - 'Couchbase\\ViewQuery::group' => + 'couchbase\\viewquery::group' => array ( 0 => 'Couchbase\\ViewQuery', 'group' => 'bool', ), - 'Couchbase\\ViewQuery::groupLevel' => + 'couchbase\\viewquery::grouplevel' => array ( 0 => 'Couchbase\\ViewQuery', 'groupLevel' => 'int', ), - 'Couchbase\\ViewQuery::idRange' => + 'couchbase\\viewquery::idrange' => array ( 0 => 'Couchbase\\ViewQuery', 'startKeyDocumentId' => 'string', 'endKeyDocumentId' => 'string', ), - 'Couchbase\\ViewQuery::key' => + 'couchbase\\viewquery::key' => array ( 0 => 'Couchbase\\ViewQuery', 'key' => 'mixed', ), - 'Couchbase\\ViewQuery::keys' => + 'couchbase\\viewquery::keys' => array ( 0 => 'Couchbase\\ViewQuery', 'keys' => 'array', ), - 'Couchbase\\ViewQuery::limit' => + 'couchbase\\viewquery::limit' => array ( 0 => 'Couchbase\\ViewQuery', 'limit' => 'int', ), - 'Couchbase\\ViewQuery::order' => + 'couchbase\\viewquery::order' => array ( 0 => 'Couchbase\\ViewQuery', 'order' => 'int', ), - 'Couchbase\\ViewQuery::range' => + 'couchbase\\viewquery::range' => array ( 0 => 'Couchbase\\ViewQuery', 'startKey' => 'mixed', 'endKey' => 'mixed', 'inclusiveEnd=' => 'bool', ), - 'Couchbase\\ViewQuery::reduce' => + 'couchbase\\viewquery::reduce' => array ( 0 => 'Couchbase\\ViewQuery', 'reduce' => 'bool', ), - 'Couchbase\\ViewQuery::skip' => + 'couchbase\\viewquery::skip' => array ( 0 => 'Couchbase\\ViewQuery', 'skip' => 'int', ), - 'Couchbase\\ViewQueryEncodable::encode' => + 'couchbase\\viewqueryencodable::encode' => array ( 0 => 'array', ), - 'Couchbase\\WildcardSearchQuery::__construct' => + 'couchbase\\wildcardsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\WildcardSearchQuery::boost' => + 'couchbase\\wildcardsearchquery::boost' => array ( 0 => 'Couchbase\\WildcardSearchQuery', 'boost' => 'float', ), - 'Couchbase\\WildcardSearchQuery::field' => + 'couchbase\\wildcardsearchquery::field' => array ( 0 => 'Couchbase\\WildcardSearchQuery', 'field' => 'string', ), - 'Couchbase\\WildcardSearchQuery::jsonSerialize' => + 'couchbase\\wildcardsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\zlibCompress' => + 'couchbase\\zlibcompress' => array ( 0 => 'string', 'data' => 'string', ), - 'Couchbase\\zlibDecompress' => + 'couchbase\\zlibdecompress' => array ( 0 => 'string', 'data' => 'string', @@ -5452,7 +5452,7 @@ 'input' => 'string', 'mode=' => '3|4', ), - 'Countable::count' => + 'countable::count' => array ( 0 => 'int', ), @@ -6326,36 +6326,36 @@ 0 => 'array', 'version=' => 'int', ), - 'CURLFile::__construct' => + 'curlfile::__construct' => array ( 0 => 'void', 'filename' => 'string', 'mime_type=' => 'null|string', 'posted_filename=' => 'null|string', ), - 'CURLFile::getFilename' => + 'curlfile::getfilename' => array ( 0 => 'string', ), - 'CURLFile::getMimeType' => + 'curlfile::getmimetype' => array ( 0 => 'string', ), - 'CURLFile::getPostFilename' => + 'curlfile::getpostfilename' => array ( 0 => 'string', ), - 'CURLFile::setMimeType' => + 'curlfile::setmimetype' => array ( 0 => 'void', 'mime_type' => 'string', ), - 'CURLFile::setPostFilename' => + 'curlfile::setpostfilename' => array ( 0 => 'void', 'posted_filename' => 'string', ), - 'CURLStringFile::__construct' => + 'curlstringfile::__construct' => array ( 0 => 'void', 'data' => 'string', @@ -6703,31 +6703,31 @@ 'formatter' => 'IntlDateFormatter', 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', ), - 'DateInterval::__construct' => + 'dateinterval::__construct' => array ( 0 => 'void', 'duration' => 'string', ), - 'DateInterval::__set_state' => + 'dateinterval::__set_state' => array ( 0 => 'DateInterval', 'array' => 'array', ), - 'DateInterval::__wakeup' => + 'dateinterval::__wakeup' => array ( 0 => 'void', ), - 'DateInterval::createFromDateString' => + 'dateinterval::createfromdatestring' => array ( 0 => 'DateInterval', 'datetime' => 'string', ), - 'DateInterval::format' => + 'dateinterval::format' => array ( 0 => 'string', 'format' => 'string', ), - 'DatePeriod::__construct' => + 'dateperiod::__construct' => array ( 0 => 'void', 'start' => 'DateTimeInterface', @@ -6735,7 +6735,7 @@ 'recur' => 'int', 'options=' => 'int', ), - 'DatePeriod::__construct\'1' => + 'dateperiod::__construct\'1' => array ( 0 => 'void', 'start' => 'DateTimeInterface', @@ -6743,112 +6743,112 @@ 'end' => 'DateTimeInterface', 'options=' => 'int', ), - 'DatePeriod::__construct\'2' => + 'dateperiod::__construct\'2' => array ( 0 => 'void', 'iso' => 'string', 'options=' => 'int', ), - 'DatePeriod::__wakeup' => + 'dateperiod::__wakeup' => array ( 0 => 'void', ), - 'DatePeriod::getDateInterval' => + 'dateperiod::getdateinterval' => array ( 0 => 'DateInterval', ), - 'DatePeriod::getEndDate' => + 'dateperiod::getenddate' => array ( 0 => 'DateTimeInterface|null', ), - 'DatePeriod::getStartDate' => + 'dateperiod::getstartdate' => array ( 0 => 'DateTimeInterface', ), - 'DateTime::__construct' => + 'datetime::__construct' => array ( 0 => 'void', 'time=' => 'string', ), - 'DateTime::__construct\'1' => + 'datetime::__construct\'1' => array ( 0 => 'void', 'time' => 'null|string', 'timezone' => 'DateTimeZone|null', ), - 'DateTime::__wakeup' => + 'datetime::__wakeup' => array ( 0 => 'void', ), - 'DateTime::add' => + 'datetime::add' => array ( 0 => 'static', 'interval' => 'DateInterval', ), - 'DateTime::createFromFormat' => + 'datetime::createfromformat' => array ( 0 => 'false|static', 'format' => 'string', 'datetime' => 'string', 'timezone=' => 'DateTimeZone|null', ), - 'DateTime::createFromImmutable' => + 'datetime::createfromimmutable' => array ( 0 => 'static', 'object' => 'DateTimeImmutable', ), - 'DateTime::createFromInterface' => + 'datetime::createfrominterface' => array ( 0 => 'static', 'object' => 'DateTimeInterface', ), - 'DateTime::diff' => + 'datetime::diff' => array ( 0 => 'DateInterval', 'targetObject' => 'DateTimeInterface', 'absolute=' => 'bool', ), - 'DateTime::format' => + 'datetime::format' => array ( 0 => 'string', 'format' => 'string', ), - 'DateTime::getLastErrors' => + 'datetime::getlasterrors' => array ( 0 => 'array{error_count: int, errors: array, warning_count: int, warnings: array}|false', ), - 'DateTime::getOffset' => + 'datetime::getoffset' => array ( 0 => 'int', ), - 'DateTime::getTimestamp' => + 'datetime::gettimestamp' => array ( 0 => 'int', ), - 'DateTime::getTimezone' => + 'datetime::gettimezone' => array ( 0 => 'DateTimeZone|false', ), - 'DateTime::modify' => + 'datetime::modify' => array ( 0 => 'false|static', 'modifier' => 'string', ), - 'DateTime::setDate' => + 'datetime::setdate' => array ( 0 => 'static', 'year' => 'int', 'month' => 'int', 'day' => 'int', ), - 'DateTime::setISODate' => + 'datetime::setisodate' => array ( 0 => 'static', 'year' => 'int', 'week' => 'int', 'dayOfWeek=' => 'int', ), - 'DateTime::setTime' => + 'datetime::settime' => array ( 0 => 'static', 'hour' => 'int', @@ -6856,104 +6856,104 @@ 'second=' => 'int', 'microsecond=' => 'int', ), - 'DateTime::setTimestamp' => + 'datetime::settimestamp' => array ( 0 => 'static', 'timestamp' => 'int', ), - 'DateTime::setTimezone' => + 'datetime::settimezone' => array ( 0 => 'static', 'timezone' => 'DateTimeZone', ), - 'DateTime::sub' => + 'datetime::sub' => array ( 0 => 'static', 'interval' => 'DateInterval', ), - 'DateTimeImmutable::__wakeup' => + 'datetimeimmutable::__wakeup' => array ( 0 => 'void', ), - 'DateTimeImmutable::createFromInterface' => + 'datetimeimmutable::createfrominterface' => array ( 0 => 'static', 'object' => 'DateTimeInterface', ), - 'DateTimeImmutable::getLastErrors' => + 'datetimeimmutable::getlasterrors' => array ( 0 => 'array{error_count: int, errors: array, warning_count: int, warnings: array}|false', ), - 'DateTimeInterface::diff' => + 'datetimeinterface::diff' => array ( 0 => 'DateInterval', 'datetime2' => 'DateTimeInterface', 'absolute=' => 'bool', ), - 'DateTimeInterface::format' => + 'datetimeinterface::format' => array ( 0 => 'string', 'format' => 'string', ), - 'DateTimeInterface::getOffset' => + 'datetimeinterface::getoffset' => array ( 0 => 'int', ), - 'DateTimeInterface::getTimestamp' => + 'datetimeinterface::gettimestamp' => array ( 0 => 'int', ), - 'DateTimeInterface::getTimezone' => + 'datetimeinterface::gettimezone' => array ( 0 => 'DateTimeZone|false', ), - 'DateTimeInterface::__serialize' => + 'datetimeinterface::__serialize' => array ( 0 => 'array', ), - 'DateTimeInterface::__unserialize' => + 'datetimeinterface::__unserialize' => array ( 0 => 'void', 'data' => 'array', ), - 'DateTimeZone::__construct' => + 'datetimezone::__construct' => array ( 0 => 'void', 'timezone' => 'non-empty-string', ), - 'DateTimeZone::__set_state' => + 'datetimezone::__set_state' => array ( 0 => 'DateTimeZone', 'array' => 'array', ), - 'DateTimeZone::__wakeup' => + 'datetimezone::__wakeup' => array ( 0 => 'void', ), - 'DateTimeZone::getLocation' => + 'datetimezone::getlocation' => array ( 0 => 'array|false', ), - 'DateTimeZone::getName' => + 'datetimezone::getname' => array ( 0 => 'non-empty-string', ), - 'DateTimeZone::getOffset' => + 'datetimezone::getoffset' => array ( 0 => 'int', 'datetime' => 'DateTimeInterface', ), - 'DateTimeZone::getTransitions' => + 'datetimezone::gettransitions' => array ( 0 => 'false|list', 'timestampBegin=' => 'int', 'timestampEnd=' => 'int', ), - 'DateTimeZone::listAbbreviations' => + 'datetimezone::listabbreviations' => array ( 0 => 'array>', ), - 'DateTimeZone::listIdentifiers' => + 'datetimezone::listidentifiers' => array ( 0 => 'list', 'timezoneGroup=' => 'int', @@ -7973,169 +7973,169 @@ 'directory' => 'string', 'context=' => 'resource', ), - 'Directory::close' => + 'directory::close' => array ( 0 => 'void', ), - 'Directory::read' => + 'directory::read' => array ( 0 => 'false|string', ), - 'Directory::rewind' => + 'directory::rewind' => array ( 0 => 'void', ), - 'DirectoryIterator::__construct' => + 'directoryiterator::__construct' => array ( 0 => 'void', 'directory' => 'string', ), - 'DirectoryIterator::__toString' => + 'directoryiterator::__tostring' => array ( 0 => 'string', ), - 'DirectoryIterator::current' => + 'directoryiterator::current' => array ( 0 => 'DirectoryIterator', ), - 'DirectoryIterator::getATime' => + 'directoryiterator::getatime' => array ( 0 => 'int', ), - 'DirectoryIterator::getBasename' => + 'directoryiterator::getbasename' => array ( 0 => 'string', 'suffix=' => 'string', ), - 'DirectoryIterator::getCTime' => + 'directoryiterator::getctime' => array ( 0 => 'int', ), - 'DirectoryIterator::getExtension' => + 'directoryiterator::getextension' => array ( 0 => 'string', ), - 'DirectoryIterator::getFileInfo' => + 'directoryiterator::getfileinfo' => array ( 0 => 'SplFileInfo', 'class=' => 'class-string|null', ), - 'DirectoryIterator::getFilename' => + 'directoryiterator::getfilename' => array ( 0 => 'string', ), - 'DirectoryIterator::getGroup' => + 'directoryiterator::getgroup' => array ( 0 => 'int', ), - 'DirectoryIterator::getInode' => + 'directoryiterator::getinode' => array ( 0 => 'int', ), - 'DirectoryIterator::getLinkTarget' => + 'directoryiterator::getlinktarget' => array ( 0 => 'string', ), - 'DirectoryIterator::getMTime' => + 'directoryiterator::getmtime' => array ( 0 => 'int', ), - 'DirectoryIterator::getOwner' => + 'directoryiterator::getowner' => array ( 0 => 'int', ), - 'DirectoryIterator::getPath' => + 'directoryiterator::getpath' => array ( 0 => 'string', ), - 'DirectoryIterator::getPathInfo' => + 'directoryiterator::getpathinfo' => array ( 0 => 'SplFileInfo|null', 'class=' => 'class-string|null', ), - 'DirectoryIterator::getPathname' => + 'directoryiterator::getpathname' => array ( 0 => 'string', ), - 'DirectoryIterator::getPerms' => + 'directoryiterator::getperms' => array ( 0 => 'int', ), - 'DirectoryIterator::getRealPath' => + 'directoryiterator::getrealpath' => array ( 0 => 'non-falsy-string', ), - 'DirectoryIterator::getSize' => + 'directoryiterator::getsize' => array ( 0 => 'int', ), - 'DirectoryIterator::getType' => + 'directoryiterator::gettype' => array ( 0 => 'string', ), - 'DirectoryIterator::isDir' => + 'directoryiterator::isdir' => array ( 0 => 'bool', ), - 'DirectoryIterator::isDot' => + 'directoryiterator::isdot' => array ( 0 => 'bool', ), - 'DirectoryIterator::isExecutable' => + 'directoryiterator::isexecutable' => array ( 0 => 'bool', ), - 'DirectoryIterator::isFile' => + 'directoryiterator::isfile' => array ( 0 => 'bool', ), - 'DirectoryIterator::isLink' => + 'directoryiterator::islink' => array ( 0 => 'bool', ), - 'DirectoryIterator::isReadable' => + 'directoryiterator::isreadable' => array ( 0 => 'bool', ), - 'DirectoryIterator::isWritable' => + 'directoryiterator::iswritable' => array ( 0 => 'bool', ), - 'DirectoryIterator::key' => + 'directoryiterator::key' => array ( 0 => 'string', ), - 'DirectoryIterator::next' => + 'directoryiterator::next' => array ( 0 => 'void', ), - 'DirectoryIterator::openFile' => + 'directoryiterator::openfile' => array ( 0 => 'SplFileObject', 'mode=' => 'string', 'useIncludePath=' => 'bool', 'context=' => 'null|resource', ), - 'DirectoryIterator::rewind' => + 'directoryiterator::rewind' => array ( 0 => 'void', ), - 'DirectoryIterator::seek' => + 'directoryiterator::seek' => array ( 0 => 'void', 'offset' => 'int', ), - 'DirectoryIterator::setFileClass' => + 'directoryiterator::setfileclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'DirectoryIterator::setInfoClass' => + 'directoryiterator::setinfoclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'DirectoryIterator::valid' => + 'directoryiterator::valid' => array ( 0 => 'bool', ), @@ -8199,12 +8199,12 @@ '&w_additional_records=' => 'array', 'raw=' => 'bool', ), - 'dom_document_relaxNG_validate_file' => + 'dom_document_relaxng_validate_file' => array ( 0 => 'bool', 'filename' => 'string', ), - 'dom_document_relaxNG_validate_xml' => + 'dom_document_relaxng_validate_xml' => array ( 0 => 'bool', 'source' => 'string', @@ -8255,521 +8255,521 @@ array ( 0 => 'mixed', ), - 'DomainException::__construct' => + 'domainexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'DomainException::__toString' => + 'domainexception::__tostring' => array ( 0 => 'string', ), - 'DomainException::__wakeup' => + 'domainexception::__wakeup' => array ( 0 => 'void', ), - 'DomainException::getCode' => + 'domainexception::getcode' => array ( 0 => 'int', ), - 'DomainException::getFile' => + 'domainexception::getfile' => array ( 0 => 'string', ), - 'DomainException::getLine' => + 'domainexception::getline' => array ( 0 => 'int', ), - 'DomainException::getMessage' => + 'domainexception::getmessage' => array ( 0 => 'string', ), - 'DomainException::getPrevious' => + 'domainexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'DomainException::getTrace' => + 'domainexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'DomainException::getTraceAsString' => + 'domainexception::gettraceasstring' => array ( 0 => 'string', ), - 'DOMAttr::__construct' => + 'domattr::__construct' => array ( 0 => 'void', 'name' => 'string', 'value=' => 'string', ), - 'DOMAttr::getLineNo' => + 'domattr::getlineno' => array ( 0 => 'int', ), - 'DOMAttr::getNodePath' => + 'domattr::getnodepath' => array ( 0 => 'null|string', ), - 'DOMAttr::hasAttributes' => + 'domattr::hasattributes' => array ( 0 => 'bool', ), - 'DOMAttr::hasChildNodes' => + 'domattr::haschildnodes' => array ( 0 => 'bool', ), - 'DOMAttr::insertBefore' => + 'domattr::insertbefore' => array ( 0 => 'DOMNode|false', 'node' => 'DOMNode', 'child=' => 'DOMNode|null', ), - 'DOMAttr::isDefaultNamespace' => + 'domattr::isdefaultnamespace' => array ( 0 => 'bool', 'namespace' => 'string', ), - 'DOMAttr::isId' => + 'domattr::isid' => array ( 0 => 'bool', ), - 'DOMAttr::isSameNode' => + 'domattr::issamenode' => array ( 0 => 'bool', 'otherNode' => 'DOMNode', ), - 'DOMAttr::isSupported' => + 'domattr::issupported' => array ( 0 => 'bool', 'feature' => 'string', 'version' => 'string', ), - 'DOMAttr::lookupNamespaceUri' => + 'domattr::lookupnamespaceuri' => array ( 0 => 'null|string', 'prefix' => 'null|string', ), - 'DOMAttr::lookupPrefix' => + 'domattr::lookupprefix' => array ( 0 => 'null|string', 'namespace' => 'string', ), - 'DOMAttr::normalize' => + 'domattr::normalize' => array ( 0 => 'void', ), - 'DOMAttr::removeChild' => + 'domattr::removechild' => array ( 0 => 'DOMNode|false', 'child' => 'DOMNode', ), - 'DOMAttr::replaceChild' => + 'domattr::replacechild' => array ( 0 => 'DOMNode|false', 'node' => 'DOMNode', 'child' => 'DOMNode', ), - 'DomAttribute::name' => + 'domattribute::name' => array ( 0 => 'string', ), - 'DomAttribute::set_value' => + 'domattribute::set_value' => array ( 0 => 'bool', 'content' => 'string', ), - 'DomAttribute::specified' => + 'domattribute::specified' => array ( 0 => 'bool', ), - 'DomAttribute::value' => + 'domattribute::value' => array ( 0 => 'string', ), - 'DOMCdataSection::__construct' => + 'domcdatasection::__construct' => array ( 0 => 'void', 'data' => 'string', ), - 'DOMCharacterData::appendData' => + 'domcharacterdata::appenddata' => array ( 0 => 'true', 'data' => 'string', ), - 'DOMCharacterData::deleteData' => + 'domcharacterdata::deletedata' => array ( 0 => 'bool', 'offset' => 'int', 'count' => 'int', ), - 'DOMCharacterData::insertData' => + 'domcharacterdata::insertdata' => array ( 0 => 'bool', 'offset' => 'int', 'data' => 'string', ), - 'DOMCharacterData::replaceData' => + 'domcharacterdata::replacedata' => array ( 0 => 'bool', 'offset' => 'int', 'count' => 'int', 'data' => 'string', ), - 'DOMCharacterData::substringData' => + 'domcharacterdata::substringdata' => array ( 0 => 'string', 'offset' => 'int', 'count' => 'int', ), - 'DOMComment::__construct' => + 'domcomment::__construct' => array ( 0 => 'void', 'data=' => 'string', ), - 'DOMDocument::__construct' => + 'domdocument::__construct' => array ( 0 => 'void', 'version=' => 'string', 'encoding=' => 'string', ), - 'DOMDocument::createAttribute' => + 'domdocument::createattribute' => array ( 0 => 'DOMAttr|false', 'localName' => 'string', ), - 'DOMDocument::createAttributeNS' => + 'domdocument::createattributens' => array ( 0 => 'DOMAttr|false', 'namespace' => 'null|string', 'qualifiedName' => 'string', ), - 'DOMDocument::createCDATASection' => + 'domdocument::createcdatasection' => array ( 0 => 'DOMCDATASection|false', 'data' => 'string', ), - 'DOMDocument::createComment' => + 'domdocument::createcomment' => array ( 0 => 'DOMComment', 'data' => 'string', ), - 'DOMDocument::createDocumentFragment' => + 'domdocument::createdocumentfragment' => array ( 0 => 'DOMDocumentFragment', ), - 'DOMDocument::createElement' => + 'domdocument::createelement' => array ( 0 => 'DOMElement|false', 'localName' => 'string', 'value=' => 'string', ), - 'DOMDocument::createElementNS' => + 'domdocument::createelementns' => array ( 0 => 'DOMElement|false', 'namespace' => 'null|string', 'qualifiedName' => 'string', 'value=' => 'string', ), - 'DOMDocument::createEntityReference' => + 'domdocument::createentityreference' => array ( 0 => 'DOMEntityReference|false', 'name' => 'string', ), - 'DOMDocument::createProcessingInstruction' => + 'domdocument::createprocessinginstruction' => array ( 0 => 'DOMProcessingInstruction|false', 'target' => 'string', 'data=' => 'string', ), - 'DOMDocument::createTextNode' => + 'domdocument::createtextnode' => array ( 0 => 'DOMText', 'data' => 'string', ), - 'DOMDocument::getElementById' => + 'domdocument::getelementbyid' => array ( 0 => 'DOMElement|null', 'elementId' => 'string', ), - 'DOMDocument::getElementsByTagName' => + 'domdocument::getelementsbytagname' => array ( 0 => 'DOMNodeList', 'qualifiedName' => 'string', ), - 'DOMDocument::getElementsByTagNameNS' => + 'domdocument::getelementsbytagnamens' => array ( 0 => 'DOMNodeList', 'namespace' => 'null|string', 'localName' => 'string', ), - 'DOMDocument::importNode' => + 'domdocument::importnode' => array ( 0 => 'DOMNode|false', 'node' => 'DOMNode', 'deep=' => 'bool', ), - 'DOMDocument::load' => + 'domdocument::load' => array ( 0 => 'bool', 'filename' => 'string', 'options=' => 'int', ), - 'DOMDocument::loadHTML' => + 'domdocument::loadhtml' => array ( 0 => 'bool', 'source' => 'non-empty-string', 'options=' => 'int', ), - 'DOMDocument::loadHTMLFile' => + 'domdocument::loadhtmlfile' => array ( 0 => 'bool', 'filename' => 'string', 'options=' => 'int', ), - 'DOMDocument::loadXML' => + 'domdocument::loadxml' => array ( 0 => 'bool', 'source' => 'non-empty-string', 'options=' => 'int', ), - 'DOMDocument::normalizeDocument' => + 'domdocument::normalizedocument' => array ( 0 => 'void', ), - 'DOMDocument::registerNodeClass' => + 'domdocument::registernodeclass' => array ( 0 => 'true', 'baseClass' => 'string', 'extendedClass' => 'null|string', ), - 'DOMDocument::relaxNGValidate' => + 'domdocument::relaxngvalidate' => array ( 0 => 'bool', 'filename' => 'string', ), - 'DOMDocument::relaxNGValidateSource' => + 'domdocument::relaxngvalidatesource' => array ( 0 => 'bool', 'source' => 'string', ), - 'DOMDocument::save' => + 'domdocument::save' => array ( 0 => 'false|int', 'filename' => 'string', 'options=' => 'int', ), - 'DOMDocument::saveHTML' => + 'domdocument::savehtml' => array ( 0 => 'false|string', 'node=' => 'DOMNode|null', ), - 'DOMDocument::saveHTMLFile' => + 'domdocument::savehtmlfile' => array ( 0 => 'false|int', 'filename' => 'string', ), - 'DOMDocument::saveXML' => + 'domdocument::savexml' => array ( 0 => 'false|string', 'node=' => 'DOMNode|null', 'options=' => 'int', ), - 'DOMDocument::schemaValidate' => + 'domdocument::schemavalidate' => array ( 0 => 'bool', 'filename' => 'string', 'flags=' => 'int', ), - 'DOMDocument::schemaValidateSource' => + 'domdocument::schemavalidatesource' => array ( 0 => 'bool', 'source' => 'string', 'flags=' => 'int', ), - 'DOMDocument::validate' => + 'domdocument::validate' => array ( 0 => 'bool', ), - 'DOMDocument::xinclude' => + 'domdocument::xinclude' => array ( 0 => 'int', 'options=' => 'int', ), - 'DOMDocumentFragment::__construct' => + 'domdocumentfragment::__construct' => array ( 0 => 'void', ), - 'DOMDocumentFragment::appendXML' => + 'domdocumentfragment::appendxml' => array ( 0 => 'bool', 'data' => 'string', ), - 'DOMElement::__construct' => + 'domelement::__construct' => array ( 0 => 'void', 'qualifiedName' => 'string', 'value=' => 'null|string', 'namespace=' => 'string', ), - 'DOMElement::getAttribute' => + 'domelement::getattribute' => array ( 0 => 'string', 'qualifiedName' => 'string', ), - 'DOMElement::getAttributeNode' => + 'domelement::getattributenode' => array ( 0 => 'DOMAttr', 'qualifiedName' => 'string', ), - 'DOMElement::getAttributeNodeNS' => + 'domelement::getattributenodens' => array ( 0 => 'DOMAttr', 'namespace' => 'null|string', 'localName' => 'string', ), - 'DOMElement::getAttributeNS' => + 'domelement::getattributens' => array ( 0 => 'string', 'namespace' => 'null|string', 'localName' => 'string', ), - 'DOMElement::getElementsByTagName' => + 'domelement::getelementsbytagname' => array ( 0 => 'DOMNodeList', 'qualifiedName' => 'string', ), - 'DOMElement::getElementsByTagNameNS' => + 'domelement::getelementsbytagnamens' => array ( 0 => 'DOMNodeList', 'namespace' => 'null|string', 'localName' => 'string', ), - 'DOMElement::hasAttribute' => + 'domelement::hasattribute' => array ( 0 => 'bool', 'qualifiedName' => 'string', ), - 'DOMElement::hasAttributeNS' => + 'domelement::hasattributens' => array ( 0 => 'bool', 'namespace' => 'null|string', 'localName' => 'string', ), - 'DOMElement::removeAttribute' => + 'domelement::removeattribute' => array ( 0 => 'bool', 'qualifiedName' => 'string', ), - 'DOMElement::removeAttributeNode' => + 'domelement::removeattributenode' => array ( 0 => 'DOMAttr|false', 'attr' => 'DOMAttr', ), - 'DOMElement::removeAttributeNS' => + 'domelement::removeattributens' => array ( 0 => 'void', 'namespace' => 'null|string', 'localName' => 'string', ), - 'DOMElement::setAttribute' => + 'domelement::setattribute' => array ( 0 => 'DOMAttr|false', 'qualifiedName' => 'string', 'value' => 'string', ), - 'DOMElement::setAttributeNode' => + 'domelement::setattributenode' => array ( 0 => 'DOMAttr|null', 'attr' => 'DOMAttr', ), - 'DOMElement::setAttributeNodeNS' => + 'domelement::setattributenodens' => array ( 0 => 'DOMAttr', 'attr' => 'DOMAttr', ), - 'DOMElement::setAttributeNS' => + 'domelement::setattributens' => array ( 0 => 'void', 'namespace' => 'null|string', 'qualifiedName' => 'string', 'value' => 'string', ), - 'DOMElement::setIdAttribute' => + 'domelement::setidattribute' => array ( 0 => 'void', 'qualifiedName' => 'string', 'isId' => 'bool', ), - 'DOMElement::setIdAttributeNode' => + 'domelement::setidattributenode' => array ( 0 => 'void', 'attr' => 'DOMAttr', 'isId' => 'bool', ), - 'DOMElement::setIdAttributeNS' => + 'domelement::setidattributens' => array ( 0 => 'void', 'namespace' => 'string', 'qualifiedName' => 'string', 'isId' => 'bool', ), - 'DOMEntityReference::__construct' => + 'domentityreference::__construct' => array ( 0 => 'void', 'name' => 'string', ), - 'DOMImplementation::__construct' => + 'domimplementation::__construct' => array ( 0 => 'void', ), - 'DOMImplementation::createDocument' => + 'domimplementation::createdocument' => array ( 0 => 'DOMDocument', 'namespace=' => 'null|string', 'qualifiedName=' => 'string', 'doctype=' => 'DOMDocumentType|null', ), - 'DOMImplementation::createDocumentType' => + 'domimplementation::createdocumenttype' => array ( 0 => 'DOMDocumentType|false', 'qualifiedName' => 'string', 'publicId=' => 'string', 'systemId=' => 'string', ), - 'DOMImplementation::hasFeature' => + 'domimplementation::hasfeature' => array ( 0 => 'bool', 'feature' => 'string', 'version' => 'string', ), - 'DOMNamedNodeMap::count' => + 'domnamednodemap::count' => array ( 0 => 'int', ), - 'DOMNamedNodeMap::getNamedItem' => + 'domnamednodemap::getnameditem' => array ( 0 => 'DOMNode|null', 'qualifiedName' => 'string', ), - 'DOMNamedNodeMap::getNamedItemNS' => + 'domnamednodemap::getnameditemns' => array ( 0 => 'DOMNode|null', 'namespace' => 'null|string', 'localName' => 'string', ), - 'DOMNamedNodeMap::item' => + 'domnamednodemap::item' => array ( 0 => 'DOMNode|null', 'index' => 'int', ), - 'DOMNode::appendChild' => + 'domnode::appendchild' => array ( 0 => 'DOMNode|false', 'node' => 'DOMNode', ), - 'DOMNode::C14N' => + 'domnode::c14n' => array ( 0 => 'false|string', 'exclusive=' => 'bool', @@ -8777,7 +8777,7 @@ 'xpath=' => 'array|null', 'nsPrefixes=' => 'array|null', ), - 'DOMNode::C14NFile' => + 'domnode::c14nfile' => array ( 0 => 'false|int', 'uri' => 'string', @@ -8786,103 +8786,103 @@ 'xpath=' => 'array|null', 'nsPrefixes=' => 'array|null', ), - 'DOMNode::cloneNode' => + 'domnode::clonenode' => array ( 0 => 'DOMNode', 'deep=' => 'bool', ), - 'DOMNode::getLineNo' => + 'domnode::getlineno' => array ( 0 => 'int', ), - 'DOMNode::getNodePath' => + 'domnode::getnodepath' => array ( 0 => 'null|string', ), - 'DOMNode::hasAttributes' => + 'domnode::hasattributes' => array ( 0 => 'bool', ), - 'DOMNode::hasChildNodes' => + 'domnode::haschildnodes' => array ( 0 => 'bool', ), - 'DOMNode::insertBefore' => + 'domnode::insertbefore' => array ( 0 => 'DOMNode|false', 'node' => 'DOMNode', 'child=' => 'DOMNode|null', ), - 'DOMNode::isDefaultNamespace' => + 'domnode::isdefaultnamespace' => array ( 0 => 'bool', 'namespace' => 'string', ), - 'DOMNode::isSameNode' => + 'domnode::issamenode' => array ( 0 => 'bool', 'otherNode' => 'DOMNode', ), - 'DOMNode::isSupported' => + 'domnode::issupported' => array ( 0 => 'bool', 'feature' => 'string', 'version' => 'string', ), - 'DOMNode::lookupNamespaceURI' => + 'domnode::lookupnamespaceuri' => array ( 0 => 'null|string', 'prefix' => 'null|string', ), - 'DOMNode::lookupPrefix' => + 'domnode::lookupprefix' => array ( 0 => 'null|string', 'namespace' => 'string', ), - 'DOMNode::normalize' => + 'domnode::normalize' => array ( 0 => 'void', ), - 'DOMNode::removeChild' => + 'domnode::removechild' => array ( 0 => 'DOMNode|false', 'child' => 'DOMNode', ), - 'DOMNode::replaceChild' => + 'domnode::replacechild' => array ( 0 => 'DOMNode|false', 'node' => 'DOMNode', 'child' => 'DOMNode', ), - 'DOMNodeList::count' => + 'domnodelist::count' => array ( 0 => 'int', ), - 'DOMNodeList::item' => + 'domnodelist::item' => array ( 0 => 'DOMNode|null', 'index' => 'int', ), - 'DOMProcessingInstruction::__construct' => + 'domprocessinginstruction::__construct' => array ( 0 => 'void', 'name' => 'string', 'value=' => 'string', ), - 'DOMText::__construct' => + 'domtext::__construct' => array ( 0 => 'void', 'data=' => 'string', ), - 'DOMText::isElementContentWhitespace' => + 'domtext::iselementcontentwhitespace' => array ( 0 => 'bool', ), - 'DOMText::isWhitespaceInElementContent' => + 'domtext::iswhitespaceinelementcontent' => array ( 0 => 'bool', ), - 'DOMText::splitText' => + 'domtext::splittext' => array ( 0 => 'DOMText', 'offset' => 'int', @@ -8934,38 +8934,38 @@ array ( 0 => 'int', ), - 'DOMXPath::__construct' => + 'domxpath::__construct' => array ( 0 => 'void', 'document' => 'DOMDocument', 'registerNodeNS=' => 'bool', ), - 'DOMXPath::evaluate' => + 'domxpath::evaluate' => array ( 0 => 'mixed', 'expression' => 'string', 'contextNode=' => 'DOMNode|null', 'registerNodeNS=' => 'bool', ), - 'DOMXPath::query' => + 'domxpath::query' => array ( 0 => 'DOMNodeList|false', 'expression' => 'string', 'contextNode=' => 'DOMNode|null', 'registerNodeNS=' => 'bool', ), - 'DOMXPath::registerNamespace' => + 'domxpath::registernamespace' => array ( 0 => 'bool', 'prefix' => 'string', 'namespace' => 'string', ), - 'DOMXPath::registerPhpFunctions' => + 'domxpath::registerphpfunctions' => array ( 0 => 'void', 'restrict=' => 'array|null|string', ), - 'DomXsltStylesheet::process' => + 'domxsltstylesheet::process' => array ( 0 => 'DomDocument', 'xml_doc' => 'DOMDocument', @@ -8973,36 +8973,36 @@ 'is_xpath_param=' => 'bool', 'profile_filename=' => 'string', ), - 'DomXsltStylesheet::result_dump_file' => + 'domxsltstylesheet::result_dump_file' => array ( 0 => 'string', 'xmldoc' => 'DOMDocument', 'filename' => 'string', ), - 'DomXsltStylesheet::result_dump_mem' => + 'domxsltstylesheet::result_dump_mem' => array ( 0 => 'string', 'xmldoc' => 'DOMDocument', ), - 'DOTNET::__call' => + 'dotnet::__call' => array ( 0 => 'mixed', 'name' => 'string', 'args' => 'mixed', ), - 'DOTNET::__construct' => + 'dotnet::__construct' => array ( 0 => 'void', 'assembly_name' => 'string', 'datatype_name' => 'string', 'codepage=' => 'int', ), - 'DOTNET::__get' => + 'dotnet::__get' => array ( 0 => 'mixed', 'name' => 'string', ), - 'DOTNET::__set' => + 'dotnet::__set' => array ( 0 => 'void', 'name' => 'string', @@ -9020,972 +9020,972 @@ 0 => 'float', 'value' => 'mixed', ), - 'Ds\\Collection::clear' => + 'ds\\collection::clear' => array ( 0 => 'void', ), - 'Ds\\Collection::copy' => + 'ds\\collection::copy' => array ( 0 => 'Ds\\Collection', ), - 'Ds\\Collection::isEmpty' => + 'ds\\collection::isempty' => array ( 0 => 'bool', ), - 'Ds\\Collection::toArray' => + 'ds\\collection::toarray' => array ( 0 => 'array', ), - 'Ds\\Deque::__construct' => + 'ds\\deque::__construct' => array ( 0 => 'void', 'values=' => 'mixed', ), - 'Ds\\Deque::allocate' => + 'ds\\deque::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\Deque::apply' => + 'ds\\deque::apply' => array ( 0 => 'void', 'callback' => 'callable', ), - 'Ds\\Deque::capacity' => + 'ds\\deque::capacity' => array ( 0 => 'int', ), - 'Ds\\Deque::clear' => + 'ds\\deque::clear' => array ( 0 => 'void', ), - 'Ds\\Deque::contains' => + 'ds\\deque::contains' => array ( 0 => 'bool', '...values=' => 'mixed', ), - 'Ds\\Deque::copy' => + 'ds\\deque::copy' => array ( 0 => 'Ds\\Deque', ), - 'Ds\\Deque::count' => + 'ds\\deque::count' => array ( 0 => 'int', ), - 'Ds\\Deque::filter' => + 'ds\\deque::filter' => array ( 0 => 'Ds\\Deque', 'callback=' => 'callable', ), - 'Ds\\Deque::find' => + 'ds\\deque::find' => array ( 0 => 'mixed', 'value' => 'mixed', ), - 'Ds\\Deque::first' => + 'ds\\deque::first' => array ( 0 => 'mixed', ), - 'Ds\\Deque::get' => + 'ds\\deque::get' => array ( 0 => 'void', 'index' => 'int', ), - 'Ds\\Deque::insert' => + 'ds\\deque::insert' => array ( 0 => 'void', 'index' => 'int', '...values=' => 'mixed', ), - 'Ds\\Deque::isEmpty' => + 'ds\\deque::isempty' => array ( 0 => 'bool', ), - 'Ds\\Deque::join' => + 'ds\\deque::join' => array ( 0 => 'string', 'glue=' => 'string', ), - 'Ds\\Deque::jsonSerialize' => + 'ds\\deque::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\Deque::last' => + 'ds\\deque::last' => array ( 0 => 'mixed', ), - 'Ds\\Deque::map' => + 'ds\\deque::map' => array ( 0 => 'Ds\\Deque', 'callback' => 'callable', ), - 'Ds\\Deque::merge' => + 'ds\\deque::merge' => array ( 0 => 'Ds\\Deque', 'values' => 'mixed', ), - 'Ds\\Deque::pop' => + 'ds\\deque::pop' => array ( 0 => 'mixed', ), - 'Ds\\Deque::push' => + 'ds\\deque::push' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Deque::reduce' => + 'ds\\deque::reduce' => array ( 0 => 'mixed', 'callback' => 'callable', 'initial=' => 'mixed', ), - 'Ds\\Deque::remove' => + 'ds\\deque::remove' => array ( 0 => 'mixed', 'index' => 'int', ), - 'Ds\\Deque::reverse' => + 'ds\\deque::reverse' => array ( 0 => 'void', ), - 'Ds\\Deque::reversed' => + 'ds\\deque::reversed' => array ( 0 => 'Ds\\Deque', ), - 'Ds\\Deque::rotate' => + 'ds\\deque::rotate' => array ( 0 => 'void', 'rotations' => 'int', ), - 'Ds\\Deque::set' => + 'ds\\deque::set' => array ( 0 => 'void', 'index' => 'int', 'value' => 'mixed', ), - 'Ds\\Deque::shift' => + 'ds\\deque::shift' => array ( 0 => 'mixed', ), - 'Ds\\Deque::slice' => + 'ds\\deque::slice' => array ( 0 => 'Ds\\Deque', 'index' => 'int', 'length=' => 'int|null', ), - 'Ds\\Deque::sort' => + 'ds\\deque::sort' => array ( 0 => 'void', 'comparator=' => 'callable', ), - 'Ds\\Deque::sorted' => + 'ds\\deque::sorted' => array ( 0 => 'Ds\\Deque', 'comparator=' => 'callable', ), - 'Ds\\Deque::sum' => + 'ds\\deque::sum' => array ( 0 => 'float|int', ), - 'Ds\\Deque::toArray' => + 'ds\\deque::toarray' => array ( 0 => 'array', ), - 'Ds\\Deque::unshift' => + 'ds\\deque::unshift' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Hashable::equals' => + 'ds\\hashable::equals' => array ( 0 => 'bool', 'object' => 'mixed', ), - 'Ds\\Hashable::hash' => + 'ds\\hashable::hash' => array ( 0 => 'mixed', ), - 'Ds\\Map::__construct' => + 'ds\\map::__construct' => array ( 0 => 'void', 'values=' => 'mixed', ), - 'Ds\\Map::allocate' => + 'ds\\map::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\Map::apply' => + 'ds\\map::apply' => array ( 0 => 'void', 'callback' => 'callable', ), - 'Ds\\Map::capacity' => + 'ds\\map::capacity' => array ( 0 => 'int', ), - 'Ds\\Map::clear' => + 'ds\\map::clear' => array ( 0 => 'void', ), - 'Ds\\Map::copy' => + 'ds\\map::copy' => array ( 0 => 'Ds\\Map', ), - 'Ds\\Map::count' => + 'ds\\map::count' => array ( 0 => 'int', ), - 'Ds\\Map::diff' => + 'ds\\map::diff' => array ( 0 => 'Ds\\Map', 'map' => 'Ds\\Map', ), - 'Ds\\Map::filter' => + 'ds\\map::filter' => array ( 0 => 'Ds\\Map', 'callback=' => 'callable', ), - 'Ds\\Map::first' => + 'ds\\map::first' => array ( 0 => 'Ds\\Pair', ), - 'Ds\\Map::get' => + 'ds\\map::get' => array ( 0 => 'mixed', 'key' => 'mixed', 'default=' => 'mixed', ), - 'Ds\\Map::hasKey' => + 'ds\\map::haskey' => array ( 0 => 'bool', 'key' => 'mixed', ), - 'Ds\\Map::hasValue' => + 'ds\\map::hasvalue' => array ( 0 => 'bool', 'value' => 'mixed', ), - 'Ds\\Map::intersect' => + 'ds\\map::intersect' => array ( 0 => 'Ds\\Map', 'map' => 'Ds\\Map', ), - 'Ds\\Map::isEmpty' => + 'ds\\map::isempty' => array ( 0 => 'bool', ), - 'Ds\\Map::jsonSerialize' => + 'ds\\map::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\Map::keys' => + 'ds\\map::keys' => array ( 0 => 'Ds\\Set', ), - 'Ds\\Map::ksort' => + 'ds\\map::ksort' => array ( 0 => 'void', 'comparator=' => 'callable', ), - 'Ds\\Map::ksorted' => + 'ds\\map::ksorted' => array ( 0 => 'Ds\\Map', 'comparator=' => 'callable', ), - 'Ds\\Map::last' => + 'ds\\map::last' => array ( 0 => 'Ds\\Pair', ), - 'Ds\\Map::map' => + 'ds\\map::map' => array ( 0 => 'Ds\\Map', 'callback' => 'callable', ), - 'Ds\\Map::merge' => + 'ds\\map::merge' => array ( 0 => 'Ds\\Map', 'values' => 'mixed', ), - 'Ds\\Map::pairs' => + 'ds\\map::pairs' => array ( 0 => 'Ds\\Sequence', ), - 'Ds\\Map::put' => + 'ds\\map::put' => array ( 0 => 'void', 'key' => 'mixed', 'value' => 'mixed', ), - 'Ds\\Map::putAll' => + 'ds\\map::putall' => array ( 0 => 'void', 'values' => 'mixed', ), - 'Ds\\Map::reduce' => + 'ds\\map::reduce' => array ( 0 => 'mixed', 'callback' => 'callable', 'initial=' => 'mixed', ), - 'Ds\\Map::remove' => + 'ds\\map::remove' => array ( 0 => 'mixed', 'key' => 'mixed', 'default=' => 'mixed', ), - 'Ds\\Map::reverse' => + 'ds\\map::reverse' => array ( 0 => 'void', ), - 'Ds\\Map::reversed' => + 'ds\\map::reversed' => array ( 0 => 'Ds\\Map', ), - 'Ds\\Map::skip' => + 'ds\\map::skip' => array ( 0 => 'Ds\\Pair', 'position' => 'int', ), - 'Ds\\Map::slice' => + 'ds\\map::slice' => array ( 0 => 'Ds\\Map', 'index' => 'int', 'length=' => 'int|null', ), - 'Ds\\Map::sort' => + 'ds\\map::sort' => array ( 0 => 'void', 'comparator=' => 'callable', ), - 'Ds\\Map::sorted' => + 'ds\\map::sorted' => array ( 0 => 'Ds\\Map', 'comparator=' => 'callable', ), - 'Ds\\Map::sum' => + 'ds\\map::sum' => array ( 0 => 'float|int', ), - 'Ds\\Map::toArray' => + 'ds\\map::toarray' => array ( 0 => 'array', ), - 'Ds\\Map::union' => + 'ds\\map::union' => array ( 0 => 'Ds\\Map', 'map' => 'Ds\\Map', ), - 'Ds\\Map::values' => + 'ds\\map::values' => array ( 0 => 'Ds\\Sequence', ), - 'Ds\\Map::xor' => + 'ds\\map::xor' => array ( 0 => 'Ds\\Map', 'map' => 'Ds\\Map', ), - 'Ds\\Pair::__construct' => + 'ds\\pair::__construct' => array ( 0 => 'void', 'key=' => 'mixed', 'value=' => 'mixed', ), - 'Ds\\Pair::clear' => + 'ds\\pair::clear' => array ( 0 => 'void', ), - 'Ds\\Pair::copy' => + 'ds\\pair::copy' => array ( 0 => 'Ds\\Pair', ), - 'Ds\\Pair::isEmpty' => + 'ds\\pair::isempty' => array ( 0 => 'bool', ), - 'Ds\\Pair::jsonSerialize' => + 'ds\\pair::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\Pair::toArray' => + 'ds\\pair::toarray' => array ( 0 => 'array', ), - 'Ds\\PriorityQueue::__construct' => + 'ds\\priorityqueue::__construct' => array ( 0 => 'void', ), - 'Ds\\PriorityQueue::allocate' => + 'ds\\priorityqueue::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\PriorityQueue::capacity' => + 'ds\\priorityqueue::capacity' => array ( 0 => 'int', ), - 'Ds\\PriorityQueue::clear' => + 'ds\\priorityqueue::clear' => array ( 0 => 'void', ), - 'Ds\\PriorityQueue::copy' => + 'ds\\priorityqueue::copy' => array ( 0 => 'Ds\\PriorityQueue', ), - 'Ds\\PriorityQueue::count' => + 'ds\\priorityqueue::count' => array ( 0 => 'int', ), - 'Ds\\PriorityQueue::isEmpty' => + 'ds\\priorityqueue::isempty' => array ( 0 => 'bool', ), - 'Ds\\PriorityQueue::jsonSerialize' => + 'ds\\priorityqueue::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\PriorityQueue::peek' => + 'ds\\priorityqueue::peek' => array ( 0 => 'mixed', ), - 'Ds\\PriorityQueue::pop' => + 'ds\\priorityqueue::pop' => array ( 0 => 'mixed', ), - 'Ds\\PriorityQueue::push' => + 'ds\\priorityqueue::push' => array ( 0 => 'void', 'value' => 'mixed', 'priority' => 'int', ), - 'Ds\\PriorityQueue::toArray' => + 'ds\\priorityqueue::toarray' => array ( 0 => 'array', ), - 'Ds\\Queue::__construct' => + 'ds\\queue::__construct' => array ( 0 => 'void', 'values=' => 'mixed', ), - 'Ds\\Queue::allocate' => + 'ds\\queue::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\Queue::capacity' => + 'ds\\queue::capacity' => array ( 0 => 'int', ), - 'Ds\\Queue::clear' => + 'ds\\queue::clear' => array ( 0 => 'void', ), - 'Ds\\Queue::copy' => + 'ds\\queue::copy' => array ( 0 => 'Ds\\Queue', ), - 'Ds\\Queue::count' => + 'ds\\queue::count' => array ( 0 => 'int', ), - 'Ds\\Queue::isEmpty' => + 'ds\\queue::isempty' => array ( 0 => 'bool', ), - 'Ds\\Queue::jsonSerialize' => + 'ds\\queue::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\Queue::peek' => + 'ds\\queue::peek' => array ( 0 => 'mixed', ), - 'Ds\\Queue::pop' => + 'ds\\queue::pop' => array ( 0 => 'mixed', ), - 'Ds\\Queue::push' => + 'ds\\queue::push' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Queue::toArray' => + 'ds\\queue::toarray' => array ( 0 => 'array', ), - 'Ds\\Sequence::allocate' => + 'ds\\sequence::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\Sequence::apply' => + 'ds\\sequence::apply' => array ( 0 => 'void', 'callback' => 'callable', ), - 'Ds\\Sequence::capacity' => + 'ds\\sequence::capacity' => array ( 0 => 'int', ), - 'Ds\\Sequence::contains' => + 'ds\\sequence::contains' => array ( 0 => 'bool', '...values=' => 'mixed', ), - 'Ds\\Sequence::filter' => + 'ds\\sequence::filter' => array ( 0 => 'Ds\\Sequence', 'callback=' => 'callable', ), - 'Ds\\Sequence::find' => + 'ds\\sequence::find' => array ( 0 => 'mixed', 'value' => 'mixed', ), - 'Ds\\Sequence::first' => + 'ds\\sequence::first' => array ( 0 => 'mixed', ), - 'Ds\\Sequence::get' => + 'ds\\sequence::get' => array ( 0 => 'mixed', 'index' => 'int', ), - 'Ds\\Sequence::insert' => + 'ds\\sequence::insert' => array ( 0 => 'void', 'index' => 'int', '...values=' => 'mixed', ), - 'Ds\\Sequence::join' => + 'ds\\sequence::join' => array ( 0 => 'string', 'glue=' => 'string', ), - 'Ds\\Sequence::last' => + 'ds\\sequence::last' => array ( 0 => 'void', ), - 'Ds\\Sequence::map' => + 'ds\\sequence::map' => array ( 0 => 'Ds\\Sequence', 'callback' => 'callable', ), - 'Ds\\Sequence::merge' => + 'ds\\sequence::merge' => array ( 0 => 'Ds\\Sequence', 'values' => 'mixed', ), - 'Ds\\Sequence::pop' => + 'ds\\sequence::pop' => array ( 0 => 'mixed', ), - 'Ds\\Sequence::push' => + 'ds\\sequence::push' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Sequence::reduce' => + 'ds\\sequence::reduce' => array ( 0 => 'mixed', 'callback' => 'callable', 'initial=' => 'mixed', ), - 'Ds\\Sequence::remove' => + 'ds\\sequence::remove' => array ( 0 => 'mixed', 'index' => 'int', ), - 'Ds\\Sequence::reverse' => + 'ds\\sequence::reverse' => array ( 0 => 'void', ), - 'Ds\\Sequence::reversed' => + 'ds\\sequence::reversed' => array ( 0 => 'Ds\\Sequence', ), - 'Ds\\Sequence::rotate' => + 'ds\\sequence::rotate' => array ( 0 => 'void', 'rotations' => 'int', ), - 'Ds\\Sequence::set' => + 'ds\\sequence::set' => array ( 0 => 'void', 'index' => 'int', 'value' => 'mixed', ), - 'Ds\\Sequence::shift' => + 'ds\\sequence::shift' => array ( 0 => 'mixed', ), - 'Ds\\Sequence::slice' => + 'ds\\sequence::slice' => array ( 0 => 'Ds\\Sequence', 'index' => 'int', 'length=' => 'int|null', ), - 'Ds\\Sequence::sort' => + 'ds\\sequence::sort' => array ( 0 => 'void', 'comparator=' => 'callable', ), - 'Ds\\Sequence::sorted' => + 'ds\\sequence::sorted' => array ( 0 => 'Ds\\Sequence', 'comparator=' => 'callable', ), - 'Ds\\Sequence::sum' => + 'ds\\sequence::sum' => array ( 0 => 'float|int', ), - 'Ds\\Sequence::unshift' => + 'ds\\sequence::unshift' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Set::__construct' => + 'ds\\set::__construct' => array ( 0 => 'void', 'values=' => 'mixed', ), - 'Ds\\Set::add' => + 'ds\\set::add' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Set::allocate' => + 'ds\\set::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\Set::capacity' => + 'ds\\set::capacity' => array ( 0 => 'int', ), - 'Ds\\Set::clear' => + 'ds\\set::clear' => array ( 0 => 'void', ), - 'Ds\\Set::contains' => + 'ds\\set::contains' => array ( 0 => 'bool', '...values=' => 'mixed', ), - 'Ds\\Set::copy' => + 'ds\\set::copy' => array ( 0 => 'Ds\\Set', ), - 'Ds\\Set::count' => + 'ds\\set::count' => array ( 0 => 'int', ), - 'Ds\\Set::diff' => + 'ds\\set::diff' => array ( 0 => 'Ds\\Set', 'set' => 'Ds\\Set', ), - 'Ds\\Set::filter' => + 'ds\\set::filter' => array ( 0 => 'Ds\\Set', 'callback=' => 'callable', ), - 'Ds\\Set::first' => + 'ds\\set::first' => array ( 0 => 'mixed', ), - 'Ds\\Set::get' => + 'ds\\set::get' => array ( 0 => 'mixed', 'index' => 'int', ), - 'Ds\\Set::intersect' => + 'ds\\set::intersect' => array ( 0 => 'Ds\\Set', 'set' => 'Ds\\Set', ), - 'Ds\\Set::isEmpty' => + 'ds\\set::isempty' => array ( 0 => 'bool', ), - 'Ds\\Set::join' => + 'ds\\set::join' => array ( 0 => 'string', 'glue=' => 'string', ), - 'Ds\\Set::jsonSerialize' => + 'ds\\set::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\Set::last' => + 'ds\\set::last' => array ( 0 => 'mixed', ), - 'Ds\\Set::merge' => + 'ds\\set::merge' => array ( 0 => 'Ds\\Set', 'values' => 'mixed', ), - 'Ds\\Set::reduce' => + 'ds\\set::reduce' => array ( 0 => 'mixed', 'callback' => 'callable', 'initial=' => 'mixed', ), - 'Ds\\Set::remove' => + 'ds\\set::remove' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Set::reverse' => + 'ds\\set::reverse' => array ( 0 => 'void', ), - 'Ds\\Set::reversed' => + 'ds\\set::reversed' => array ( 0 => 'Ds\\Set', ), - 'Ds\\Set::slice' => + 'ds\\set::slice' => array ( 0 => 'Ds\\Set', 'index' => 'int', 'length=' => 'int|null', ), - 'Ds\\Set::sort' => + 'ds\\set::sort' => array ( 0 => 'void', 'comparator=' => 'callable', ), - 'Ds\\Set::sorted' => + 'ds\\set::sorted' => array ( 0 => 'Ds\\Set', 'comparator=' => 'callable', ), - 'Ds\\Set::sum' => + 'ds\\set::sum' => array ( 0 => 'float|int', ), - 'Ds\\Set::toArray' => + 'ds\\set::toarray' => array ( 0 => 'array', ), - 'Ds\\Set::union' => + 'ds\\set::union' => array ( 0 => 'Ds\\Set', 'set' => 'Ds\\Set', ), - 'Ds\\Set::xor' => + 'ds\\set::xor' => array ( 0 => 'Ds\\Set', 'set' => 'Ds\\Set', ), - 'Ds\\Stack::__construct' => + 'ds\\stack::__construct' => array ( 0 => 'void', 'values=' => 'mixed', ), - 'Ds\\Stack::allocate' => + 'ds\\stack::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\Stack::capacity' => + 'ds\\stack::capacity' => array ( 0 => 'int', ), - 'Ds\\Stack::clear' => + 'ds\\stack::clear' => array ( 0 => 'void', ), - 'Ds\\Stack::copy' => + 'ds\\stack::copy' => array ( 0 => 'Ds\\Stack', ), - 'Ds\\Stack::count' => + 'ds\\stack::count' => array ( 0 => 'int', ), - 'Ds\\Stack::isEmpty' => + 'ds\\stack::isempty' => array ( 0 => 'bool', ), - 'Ds\\Stack::jsonSerialize' => + 'ds\\stack::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\Stack::peek' => + 'ds\\stack::peek' => array ( 0 => 'mixed', ), - 'Ds\\Stack::pop' => + 'ds\\stack::pop' => array ( 0 => 'mixed', ), - 'Ds\\Stack::push' => + 'ds\\stack::push' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Stack::toArray' => + 'ds\\stack::toarray' => array ( 0 => 'array', ), - 'Ds\\Vector::__construct' => + 'ds\\vector::__construct' => array ( 0 => 'void', 'values=' => 'mixed', ), - 'Ds\\Vector::allocate' => + 'ds\\vector::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\Vector::apply' => + 'ds\\vector::apply' => array ( 0 => 'void', 'callback' => 'callable', ), - 'Ds\\Vector::capacity' => + 'ds\\vector::capacity' => array ( 0 => 'int', ), - 'Ds\\Vector::clear' => + 'ds\\vector::clear' => array ( 0 => 'void', ), - 'Ds\\Vector::contains' => + 'ds\\vector::contains' => array ( 0 => 'bool', '...values=' => 'mixed', ), - 'Ds\\Vector::copy' => + 'ds\\vector::copy' => array ( 0 => 'Ds\\Vector', ), - 'Ds\\Vector::count' => + 'ds\\vector::count' => array ( 0 => 'int', ), - 'Ds\\Vector::filter' => + 'ds\\vector::filter' => array ( 0 => 'Ds\\Vector', 'callback=' => 'callable', ), - 'Ds\\Vector::find' => + 'ds\\vector::find' => array ( 0 => 'mixed', 'value' => 'mixed', ), - 'Ds\\Vector::first' => + 'ds\\vector::first' => array ( 0 => 'mixed', ), - 'Ds\\Vector::get' => + 'ds\\vector::get' => array ( 0 => 'mixed', 'index' => 'int', ), - 'Ds\\Vector::insert' => + 'ds\\vector::insert' => array ( 0 => 'void', 'index' => 'int', '...values=' => 'mixed', ), - 'Ds\\Vector::isEmpty' => + 'ds\\vector::isempty' => array ( 0 => 'bool', ), - 'Ds\\Vector::join' => + 'ds\\vector::join' => array ( 0 => 'string', 'glue=' => 'string', ), - 'Ds\\Vector::jsonSerialize' => + 'ds\\vector::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\Vector::last' => + 'ds\\vector::last' => array ( 0 => 'mixed', ), - 'Ds\\Vector::map' => + 'ds\\vector::map' => array ( 0 => 'Ds\\Vector', 'callback' => 'callable', ), - 'Ds\\Vector::merge' => + 'ds\\vector::merge' => array ( 0 => 'Ds\\Vector', 'values' => 'mixed', ), - 'Ds\\Vector::pop' => + 'ds\\vector::pop' => array ( 0 => 'mixed', ), - 'Ds\\Vector::push' => + 'ds\\vector::push' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Vector::reduce' => + 'ds\\vector::reduce' => array ( 0 => 'mixed', 'callback' => 'callable', 'initial=' => 'mixed', ), - 'Ds\\Vector::remove' => + 'ds\\vector::remove' => array ( 0 => 'mixed', 'index' => 'int', ), - 'Ds\\Vector::reverse' => + 'ds\\vector::reverse' => array ( 0 => 'void', ), - 'Ds\\Vector::reversed' => + 'ds\\vector::reversed' => array ( 0 => 'Ds\\Vector', ), - 'Ds\\Vector::rotate' => + 'ds\\vector::rotate' => array ( 0 => 'void', 'rotations' => 'int', ), - 'Ds\\Vector::set' => + 'ds\\vector::set' => array ( 0 => 'void', 'index' => 'int', 'value' => 'mixed', ), - 'Ds\\Vector::shift' => + 'ds\\vector::shift' => array ( 0 => 'mixed', ), - 'Ds\\Vector::slice' => + 'ds\\vector::slice' => array ( 0 => 'Ds\\Vector', 'index' => 'int', 'length=' => 'int|null', ), - 'Ds\\Vector::sort' => + 'ds\\vector::sort' => array ( 0 => 'void', 'comparator=' => 'callable', ), - 'Ds\\Vector::sorted' => + 'ds\\vector::sorted' => array ( 0 => 'Ds\\Vector', 'comparator=' => 'callable', ), - 'Ds\\Vector::sum' => + 'ds\\vector::sum' => array ( 0 => 'float|int', ), - 'Ds\\Vector::toArray' => + 'ds\\vector::toarray' => array ( 0 => 'array', ), - 'Ds\\Vector::unshift' => + 'ds\\vector::unshift' => array ( 0 => 'void', '...values=' => 'mixed', @@ -10461,23 +10461,23 @@ 0 => 'bool', 'value' => 'mixed', ), - 'EmptyIterator::current' => + 'emptyiterator::current' => array ( 0 => 'never', ), - 'EmptyIterator::key' => + 'emptyiterator::key' => array ( 0 => 'never', ), - 'EmptyIterator::next' => + 'emptyiterator::next' => array ( 0 => 'void', ), - 'EmptyIterator::rewind' => + 'emptyiterator::rewind' => array ( 0 => 'void', ), - 'EmptyIterator::valid' => + 'emptyiterator::valid' => array ( 0 => 'false', ), @@ -10613,46 +10613,46 @@ 'enum' => 'string', 'autoload=' => 'bool', ), - 'Error::__clone' => + 'error::__clone' => array ( 0 => 'void', ), - 'Error::__construct' => + 'error::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'Error::__toString' => + 'error::__tostring' => array ( 0 => 'string', ), - 'Error::getCode' => + 'error::getcode' => array ( 0 => 'int', ), - 'Error::getFile' => + 'error::getfile' => array ( 0 => 'string', ), - 'Error::getLine' => + 'error::getline' => array ( 0 => 'int', ), - 'Error::getMessage' => + 'error::getmessage' => array ( 0 => 'string', ), - 'Error::getPrevious' => + 'error::getprevious' => array ( 0 => 'Throwable|null', ), - 'Error::getTrace' => + 'error::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'Error::getTraceAsString' => + 'error::gettraceasstring' => array ( 0 => 'string', ), @@ -10677,7 +10677,7 @@ 0 => 'int', 'error_level=' => 'int|null', ), - 'ErrorException::__construct' => + 'errorexception::__construct' => array ( 0 => 'void', 'message=' => 'string', @@ -10687,39 +10687,39 @@ 'line=' => 'int|null', 'previous=' => 'Throwable|null', ), - 'ErrorException::__toString' => + 'errorexception::__tostring' => array ( 0 => 'string', ), - 'ErrorException::getCode' => + 'errorexception::getcode' => array ( 0 => 'int', ), - 'ErrorException::getFile' => + 'errorexception::getfile' => array ( 0 => 'string', ), - 'ErrorException::getLine' => + 'errorexception::getline' => array ( 0 => 'int', ), - 'ErrorException::getMessage' => + 'errorexception::getmessage' => array ( 0 => 'string', ), - 'ErrorException::getPrevious' => + 'errorexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'ErrorException::getSeverity' => + 'errorexception::getseverity' => array ( 0 => 'int', ), - 'ErrorException::getTrace' => + 'errorexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'ErrorException::getTraceAsString' => + 'errorexception::gettraceasstring' => array ( 0 => 'string', ), @@ -10733,76 +10733,76 @@ 0 => 'string', 'command' => 'string', ), - 'Ev::backend' => + 'ev::backend' => array ( 0 => 'int', ), - 'Ev::depth' => + 'ev::depth' => array ( 0 => 'int', ), - 'Ev::embeddableBackends' => + 'ev::embeddablebackends' => array ( 0 => 'int', ), - 'Ev::feedSignal' => + 'ev::feedsignal' => array ( 0 => 'void', 'signum' => 'int', ), - 'Ev::feedSignalEvent' => + 'ev::feedsignalevent' => array ( 0 => 'void', 'signum' => 'int', ), - 'Ev::iteration' => + 'ev::iteration' => array ( 0 => 'int', ), - 'Ev::now' => + 'ev::now' => array ( 0 => 'float', ), - 'Ev::nowUpdate' => + 'ev::nowupdate' => array ( 0 => 'void', ), - 'Ev::recommendedBackends' => + 'ev::recommendedbackends' => array ( 0 => 'int', ), - 'Ev::resume' => + 'ev::resume' => array ( 0 => 'void', ), - 'Ev::run' => + 'ev::run' => array ( 0 => 'void', 'flags=' => 'int', ), - 'Ev::sleep' => + 'ev::sleep' => array ( 0 => 'void', 'seconds' => 'float', ), - 'Ev::stop' => + 'ev::stop' => array ( 0 => 'void', 'how=' => 'int', ), - 'Ev::supportedBackends' => + 'ev::supportedbackends' => array ( 0 => 'int', ), - 'Ev::suspend' => + 'ev::suspend' => array ( 0 => 'void', ), - 'Ev::time' => + 'ev::time' => array ( 0 => 'float', ), - 'Ev::verify' => + 'ev::verify' => array ( 0 => 'void', ), @@ -10811,57 +10811,57 @@ 0 => 'mixed', 'code_str' => 'string', ), - 'EvCheck::__construct' => + 'evcheck::__construct' => array ( 0 => 'void', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvCheck::clear' => + 'evcheck::clear' => array ( 0 => 'int', ), - 'EvCheck::createStopped' => + 'evcheck::createstopped' => array ( 0 => 'EvCheck', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvCheck::feed' => + 'evcheck::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvCheck::getLoop' => + 'evcheck::getloop' => array ( 0 => 'EvLoop', ), - 'EvCheck::invoke' => + 'evcheck::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvCheck::keepAlive' => + 'evcheck::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvCheck::setCallback' => + 'evcheck::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvCheck::start' => + 'evcheck::start' => array ( 0 => 'void', ), - 'EvCheck::stop' => + 'evcheck::stop' => array ( 0 => 'void', ), - 'EvChild::__construct' => + 'evchild::__construct' => array ( 0 => 'void', 'pid' => 'int', @@ -10870,11 +10870,11 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvChild::clear' => + 'evchild::clear' => array ( 0 => 'int', ), - 'EvChild::createStopped' => + 'evchild::createstopped' => array ( 0 => 'EvChild', 'pid' => 'int', @@ -10883,45 +10883,45 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvChild::feed' => + 'evchild::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvChild::getLoop' => + 'evchild::getloop' => array ( 0 => 'EvLoop', ), - 'EvChild::invoke' => + 'evchild::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvChild::keepAlive' => + 'evchild::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvChild::set' => + 'evchild::set' => array ( 0 => 'void', 'pid' => 'int', 'trace' => 'bool', ), - 'EvChild::setCallback' => + 'evchild::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvChild::start' => + 'evchild::start' => array ( 0 => 'void', ), - 'EvChild::stop' => + 'evchild::stop' => array ( 0 => 'void', ), - 'EvEmbed::__construct' => + 'evembed::__construct' => array ( 0 => 'void', 'other' => 'object', @@ -10929,11 +10929,11 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvEmbed::clear' => + 'evembed::clear' => array ( 0 => 'int', ), - 'EvEmbed::createStopped' => + 'evembed::createstopped' => array ( 0 => 'EvEmbed', 'other' => 'object', @@ -10941,48 +10941,48 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvEmbed::feed' => + 'evembed::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvEmbed::getLoop' => + 'evembed::getloop' => array ( 0 => 'EvLoop', ), - 'EvEmbed::invoke' => + 'evembed::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvEmbed::keepAlive' => + 'evembed::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvEmbed::set' => + 'evembed::set' => array ( 0 => 'void', 'other' => 'object', ), - 'EvEmbed::setCallback' => + 'evembed::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvEmbed::start' => + 'evembed::start' => array ( 0 => 'void', ), - 'EvEmbed::stop' => + 'evembed::stop' => array ( 0 => 'void', ), - 'EvEmbed::sweep' => + 'evembed::sweep' => array ( 0 => 'void', ), - 'Event::__construct' => + 'event::__construct' => array ( 0 => 'void', 'base' => 'EventBase', @@ -10991,47 +10991,47 @@ 'cb' => 'callable', 'arg=' => 'mixed', ), - 'Event::add' => + 'event::add' => array ( 0 => 'bool', 'timeout=' => 'float', ), - 'Event::addSignal' => + 'event::addsignal' => array ( 0 => 'bool', 'timeout=' => 'float', ), - 'Event::addTimer' => + 'event::addtimer' => array ( 0 => 'bool', 'timeout=' => 'float', ), - 'Event::del' => + 'event::del' => array ( 0 => 'bool', ), - 'Event::delSignal' => + 'event::delsignal' => array ( 0 => 'bool', ), - 'Event::delTimer' => + 'event::deltimer' => array ( 0 => 'bool', ), - 'Event::free' => + 'event::free' => array ( 0 => 'void', ), - 'Event::getSupportedMethods' => + 'event::getsupportedmethods' => array ( 0 => 'array', ), - 'Event::pending' => + 'event::pending' => array ( 0 => 'bool', 'flags' => 'int', ), - 'Event::set' => + 'event::set' => array ( 0 => 'bool', 'base' => 'EventBase', @@ -11040,19 +11040,19 @@ 'cb=' => 'callable', 'arg=' => 'mixed', ), - 'Event::setPriority' => + 'event::setpriority' => array ( 0 => 'bool', 'priority' => 'int', ), - 'Event::setTimer' => + 'event::settimer' => array ( 0 => 'bool', 'base' => 'EventBase', 'cb' => 'callable', 'arg=' => 'mixed', ), - 'Event::signal' => + 'event::signal' => array ( 0 => 'Event', 'base' => 'EventBase', @@ -11060,7 +11060,7 @@ 'cb' => 'callable', 'arg=' => 'mixed', ), - 'Event::timer' => + 'event::timer' => array ( 0 => 'Event', 'base' => 'EventBase', @@ -11254,178 +11254,178 @@ 'callback' => 'callable', 'arg=' => 'mixed', ), - 'EventBase::__construct' => + 'eventbase::__construct' => array ( 0 => 'void', 'cfg=' => 'EventConfig', ), - 'EventBase::dispatch' => + 'eventbase::dispatch' => array ( 0 => 'void', ), - 'EventBase::exit' => + 'eventbase::exit' => array ( 0 => 'bool', 'timeout=' => 'float', ), - 'EventBase::free' => + 'eventbase::free' => array ( 0 => 'void', ), - 'EventBase::getFeatures' => + 'eventbase::getfeatures' => array ( 0 => 'int', ), - 'EventBase::getMethod' => + 'eventbase::getmethod' => array ( 0 => 'string', 'cfg=' => 'EventConfig', ), - 'EventBase::getTimeOfDayCached' => + 'eventbase::gettimeofdaycached' => array ( 0 => 'float', ), - 'EventBase::gotExit' => + 'eventbase::gotexit' => array ( 0 => 'bool', ), - 'EventBase::gotStop' => + 'eventbase::gotstop' => array ( 0 => 'bool', ), - 'EventBase::loop' => + 'eventbase::loop' => array ( 0 => 'bool', 'flags=' => 'int', ), - 'EventBase::priorityInit' => + 'eventbase::priorityinit' => array ( 0 => 'bool', 'n_priorities' => 'int', ), - 'EventBase::reInit' => + 'eventbase::reinit' => array ( 0 => 'bool', ), - 'EventBase::stop' => + 'eventbase::stop' => array ( 0 => 'bool', ), - 'EventBuffer::__construct' => + 'eventbuffer::__construct' => array ( 0 => 'void', ), - 'EventBuffer::add' => + 'eventbuffer::add' => array ( 0 => 'bool', 'data' => 'string', ), - 'EventBuffer::addBuffer' => + 'eventbuffer::addbuffer' => array ( 0 => 'bool', 'buf' => 'EventBuffer', ), - 'EventBuffer::appendFrom' => + 'eventbuffer::appendfrom' => array ( 0 => 'int', 'buf' => 'EventBuffer', 'length' => 'int', ), - 'EventBuffer::copyout' => + 'eventbuffer::copyout' => array ( 0 => 'int', '&w_data' => 'string', 'max_bytes' => 'int', ), - 'EventBuffer::drain' => + 'eventbuffer::drain' => array ( 0 => 'bool', 'length' => 'int', ), - 'EventBuffer::enableLocking' => + 'eventbuffer::enablelocking' => array ( 0 => 'void', ), - 'EventBuffer::expand' => + 'eventbuffer::expand' => array ( 0 => 'bool', 'length' => 'int', ), - 'EventBuffer::freeze' => + 'eventbuffer::freeze' => array ( 0 => 'bool', 'at_front' => 'bool', ), - 'EventBuffer::lock' => + 'eventbuffer::lock' => array ( 0 => 'void', ), - 'EventBuffer::prepend' => + 'eventbuffer::prepend' => array ( 0 => 'bool', 'data' => 'string', ), - 'EventBuffer::prependBuffer' => + 'eventbuffer::prependbuffer' => array ( 0 => 'bool', 'buf' => 'EventBuffer', ), - 'EventBuffer::pullup' => + 'eventbuffer::pullup' => array ( 0 => 'string', 'size' => 'int', ), - 'EventBuffer::read' => + 'eventbuffer::read' => array ( 0 => 'string', 'max_bytes' => 'int', ), - 'EventBuffer::readFrom' => + 'eventbuffer::readfrom' => array ( 0 => 'int', 'fd' => 'mixed', 'howmuch' => 'int', ), - 'EventBuffer::readLine' => + 'eventbuffer::readline' => array ( 0 => 'string', 'eol_style' => 'int', ), - 'EventBuffer::search' => + 'eventbuffer::search' => array ( 0 => 'mixed', 'what' => 'string', 'start=' => 'int', 'end=' => 'int', ), - 'EventBuffer::searchEol' => + 'eventbuffer::searcheol' => array ( 0 => 'mixed', 'start=' => 'int', 'eol_style=' => 'int', ), - 'EventBuffer::substr' => + 'eventbuffer::substr' => array ( 0 => 'string', 'start' => 'int', 'length=' => 'int', ), - 'EventBuffer::unfreeze' => + 'eventbuffer::unfreeze' => array ( 0 => 'bool', 'at_front' => 'bool', ), - 'EventBuffer::unlock' => + 'eventbuffer::unlock' => array ( 0 => 'bool', ), - 'EventBuffer::write' => + 'eventbuffer::write' => array ( 0 => 'int', 'fd' => 'mixed', 'howmuch=' => 'int', ), - 'EventBufferEvent::__construct' => + 'eventbufferevent::__construct' => array ( 0 => 'void', 'base' => 'EventBase', @@ -11435,16 +11435,16 @@ 'writecb=' => 'callable', 'eventcb=' => 'callable', ), - 'EventBufferEvent::close' => + 'eventbufferevent::close' => array ( 0 => 'void', ), - 'EventBufferEvent::connect' => + 'eventbufferevent::connect' => array ( 0 => 'bool', 'addr' => 'string', ), - 'EventBufferEvent::connectHost' => + 'eventbufferevent::connecthost' => array ( 0 => 'bool', 'dns_base' => 'EventDnsBase', @@ -11452,53 +11452,53 @@ 'port' => 'int', 'family=' => 'int', ), - 'EventBufferEvent::createPair' => + 'eventbufferevent::createpair' => array ( 0 => 'array', 'base' => 'EventBase', 'options=' => 'int', ), - 'EventBufferEvent::disable' => + 'eventbufferevent::disable' => array ( 0 => 'bool', 'events' => 'int', ), - 'EventBufferEvent::enable' => + 'eventbufferevent::enable' => array ( 0 => 'bool', 'events' => 'int', ), - 'EventBufferEvent::free' => + 'eventbufferevent::free' => array ( 0 => 'void', ), - 'EventBufferEvent::getDnsErrorString' => + 'eventbufferevent::getdnserrorstring' => array ( 0 => 'string', ), - 'EventBufferEvent::getEnabled' => + 'eventbufferevent::getenabled' => array ( 0 => 'int', ), - 'EventBufferEvent::getInput' => + 'eventbufferevent::getinput' => array ( 0 => 'EventBuffer', ), - 'EventBufferEvent::getOutput' => + 'eventbufferevent::getoutput' => array ( 0 => 'EventBuffer', ), - 'EventBufferEvent::read' => + 'eventbufferevent::read' => array ( 0 => 'string', 'size' => 'int', ), - 'EventBufferEvent::readBuffer' => + 'eventbufferevent::readbuffer' => array ( 0 => 'bool', 'buf' => 'EventBuffer', ), - 'EventBufferEvent::setCallbacks' => + 'eventbufferevent::setcallbacks' => array ( 0 => 'void', 'readcb' => 'callable', @@ -11506,29 +11506,29 @@ 'eventcb' => 'callable', 'arg=' => 'string', ), - 'EventBufferEvent::setPriority' => + 'eventbufferevent::setpriority' => array ( 0 => 'bool', 'priority' => 'int', ), - 'EventBufferEvent::setTimeouts' => + 'eventbufferevent::settimeouts' => array ( 0 => 'bool', 'timeout_read' => 'float', 'timeout_write' => 'float', ), - 'EventBufferEvent::setWatermark' => + 'eventbufferevent::setwatermark' => array ( 0 => 'void', 'events' => 'int', 'lowmark' => 'int', 'highmark' => 'int', ), - 'EventBufferEvent::sslError' => + 'eventbufferevent::sslerror' => array ( 0 => 'string', ), - 'EventBufferEvent::sslFilter' => + 'eventbufferevent::sslfilter' => array ( 0 => 'EventBufferEvent', 'base' => 'EventBase', @@ -11537,27 +11537,27 @@ 'state' => 'int', 'options=' => 'int', ), - 'EventBufferEvent::sslGetCipherInfo' => + 'eventbufferevent::sslgetcipherinfo' => array ( 0 => 'string', ), - 'EventBufferEvent::sslGetCipherName' => + 'eventbufferevent::sslgetciphername' => array ( 0 => 'string', ), - 'EventBufferEvent::sslGetCipherVersion' => + 'eventbufferevent::sslgetcipherversion' => array ( 0 => 'string', ), - 'EventBufferEvent::sslGetProtocol' => + 'eventbufferevent::sslgetprotocol' => array ( 0 => 'string', ), - 'EventBufferEvent::sslRenegotiate' => + 'eventbufferevent::sslrenegotiate' => array ( 0 => 'void', ), - 'EventBufferEvent::sslSocket' => + 'eventbufferevent::sslsocket' => array ( 0 => 'EventBufferEvent', 'base' => 'EventBase', @@ -11566,144 +11566,144 @@ 'state' => 'int', 'options=' => 'int', ), - 'EventBufferEvent::write' => + 'eventbufferevent::write' => array ( 0 => 'bool', 'data' => 'string', ), - 'EventBufferEvent::writeBuffer' => + 'eventbufferevent::writebuffer' => array ( 0 => 'bool', 'buf' => 'EventBuffer', ), - 'EventConfig::__construct' => + 'eventconfig::__construct' => array ( 0 => 'void', ), - 'EventConfig::avoidMethod' => + 'eventconfig::avoidmethod' => array ( 0 => 'bool', 'method' => 'string', ), - 'EventConfig::requireFeatures' => + 'eventconfig::requirefeatures' => array ( 0 => 'bool', 'feature' => 'int', ), - 'EventConfig::setMaxDispatchInterval' => + 'eventconfig::setmaxdispatchinterval' => array ( 0 => 'void', 'max_interval' => 'int', 'max_callbacks' => 'int', 'min_priority' => 'int', ), - 'EventDnsBase::__construct' => + 'eventdnsbase::__construct' => array ( 0 => 'void', 'base' => 'EventBase', 'initialize' => 'bool', ), - 'EventDnsBase::addNameserverIp' => + 'eventdnsbase::addnameserverip' => array ( 0 => 'bool', 'ip' => 'string', ), - 'EventDnsBase::addSearch' => + 'eventdnsbase::addsearch' => array ( 0 => 'void', 'domain' => 'string', ), - 'EventDnsBase::clearSearch' => + 'eventdnsbase::clearsearch' => array ( 0 => 'void', ), - 'EventDnsBase::countNameservers' => + 'eventdnsbase::countnameservers' => array ( 0 => 'int', ), - 'EventDnsBase::loadHosts' => + 'eventdnsbase::loadhosts' => array ( 0 => 'bool', 'hosts' => 'string', ), - 'EventDnsBase::parseResolvConf' => + 'eventdnsbase::parseresolvconf' => array ( 0 => 'bool', 'flags' => 'int', 'filename' => 'string', ), - 'EventDnsBase::setOption' => + 'eventdnsbase::setoption' => array ( 0 => 'bool', 'option' => 'string', 'value' => 'string', ), - 'EventDnsBase::setSearchNdots' => + 'eventdnsbase::setsearchndots' => array ( 0 => 'bool', 'ndots' => 'int', ), - 'EventHttp::__construct' => + 'eventhttp::__construct' => array ( 0 => 'void', 'base' => 'EventBase', 'ctx=' => 'EventSslContext', ), - 'EventHttp::accept' => + 'eventhttp::accept' => array ( 0 => 'bool', 'socket' => 'mixed', ), - 'EventHttp::addServerAlias' => + 'eventhttp::addserveralias' => array ( 0 => 'bool', 'alias' => 'string', ), - 'EventHttp::bind' => + 'eventhttp::bind' => array ( 0 => 'void', 'address' => 'string', 'port' => 'int', ), - 'EventHttp::removeServerAlias' => + 'eventhttp::removeserveralias' => array ( 0 => 'bool', 'alias' => 'string', ), - 'EventHttp::setAllowedMethods' => + 'eventhttp::setallowedmethods' => array ( 0 => 'void', 'methods' => 'int', ), - 'EventHttp::setCallback' => + 'eventhttp::setcallback' => array ( 0 => 'void', 'path' => 'string', 'cb' => 'string', 'arg=' => 'string', ), - 'EventHttp::setDefaultCallback' => + 'eventhttp::setdefaultcallback' => array ( 0 => 'void', 'cb' => 'string', 'arg=' => 'string', ), - 'EventHttp::setMaxBodySize' => + 'eventhttp::setmaxbodysize' => array ( 0 => 'void', 'value' => 'int', ), - 'EventHttp::setMaxHeadersSize' => + 'eventhttp::setmaxheaderssize' => array ( 0 => 'void', 'value' => 'int', ), - 'EventHttp::setTimeout' => + 'eventhttp::settimeout' => array ( 0 => 'void', 'value' => 'int', ), - 'EventHttpConnection::__construct' => + 'eventhttpconnection::__construct' => array ( 0 => 'void', 'base' => 'EventBase', @@ -11712,169 +11712,169 @@ 'port' => 'int', 'ctx=' => 'EventSslContext', ), - 'EventHttpConnection::getBase' => + 'eventhttpconnection::getbase' => array ( 0 => 'EventBase', ), - 'EventHttpConnection::getPeer' => + 'eventhttpconnection::getpeer' => array ( 0 => 'void', '&w_address' => 'string', '&w_port' => 'int', ), - 'EventHttpConnection::makeRequest' => + 'eventhttpconnection::makerequest' => array ( 0 => 'bool', 'req' => 'EventHttpRequest', 'type' => 'int', 'uri' => 'string', ), - 'EventHttpConnection::setCloseCallback' => + 'eventhttpconnection::setclosecallback' => array ( 0 => 'void', 'callback' => 'callable', 'data=' => 'mixed', ), - 'EventHttpConnection::setLocalAddress' => + 'eventhttpconnection::setlocaladdress' => array ( 0 => 'void', 'address' => 'string', ), - 'EventHttpConnection::setLocalPort' => + 'eventhttpconnection::setlocalport' => array ( 0 => 'void', 'port' => 'int', ), - 'EventHttpConnection::setMaxBodySize' => + 'eventhttpconnection::setmaxbodysize' => array ( 0 => 'void', 'max_size' => 'string', ), - 'EventHttpConnection::setMaxHeadersSize' => + 'eventhttpconnection::setmaxheaderssize' => array ( 0 => 'void', 'max_size' => 'string', ), - 'EventHttpConnection::setRetries' => + 'eventhttpconnection::setretries' => array ( 0 => 'void', 'retries' => 'int', ), - 'EventHttpConnection::setTimeout' => + 'eventhttpconnection::settimeout' => array ( 0 => 'void', 'timeout' => 'int', ), - 'EventHttpRequest::__construct' => + 'eventhttprequest::__construct' => array ( 0 => 'void', 'callback' => 'callable', 'data=' => 'mixed', ), - 'EventHttpRequest::addHeader' => + 'eventhttprequest::addheader' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', 'type' => 'int', ), - 'EventHttpRequest::cancel' => + 'eventhttprequest::cancel' => array ( 0 => 'void', ), - 'EventHttpRequest::clearHeaders' => + 'eventhttprequest::clearheaders' => array ( 0 => 'void', ), - 'EventHttpRequest::closeConnection' => + 'eventhttprequest::closeconnection' => array ( 0 => 'void', ), - 'EventHttpRequest::findHeader' => + 'eventhttprequest::findheader' => array ( 0 => 'void', 'key' => 'string', 'type' => 'string', ), - 'EventHttpRequest::free' => + 'eventhttprequest::free' => array ( 0 => 'void', ), - 'EventHttpRequest::getBufferEvent' => + 'eventhttprequest::getbufferevent' => array ( 0 => 'EventBufferEvent', ), - 'EventHttpRequest::getCommand' => + 'eventhttprequest::getcommand' => array ( 0 => 'void', ), - 'EventHttpRequest::getConnection' => + 'eventhttprequest::getconnection' => array ( 0 => 'EventHttpConnection', ), - 'EventHttpRequest::getHost' => + 'eventhttprequest::gethost' => array ( 0 => 'string', ), - 'EventHttpRequest::getInputBuffer' => + 'eventhttprequest::getinputbuffer' => array ( 0 => 'EventBuffer', ), - 'EventHttpRequest::getInputHeaders' => + 'eventhttprequest::getinputheaders' => array ( 0 => 'array', ), - 'EventHttpRequest::getOutputBuffer' => + 'eventhttprequest::getoutputbuffer' => array ( 0 => 'EventBuffer', ), - 'EventHttpRequest::getOutputHeaders' => + 'eventhttprequest::getoutputheaders' => array ( 0 => 'void', ), - 'EventHttpRequest::getResponseCode' => + 'eventhttprequest::getresponsecode' => array ( 0 => 'int', ), - 'EventHttpRequest::getUri' => + 'eventhttprequest::geturi' => array ( 0 => 'string', ), - 'EventHttpRequest::removeHeader' => + 'eventhttprequest::removeheader' => array ( 0 => 'void', 'key' => 'string', 'type' => 'string', ), - 'EventHttpRequest::sendError' => + 'eventhttprequest::senderror' => array ( 0 => 'void', 'error' => 'int', 'reason=' => 'string', ), - 'EventHttpRequest::sendReply' => + 'eventhttprequest::sendreply' => array ( 0 => 'void', 'code' => 'int', 'reason' => 'string', 'buf=' => 'EventBuffer', ), - 'EventHttpRequest::sendReplyChunk' => + 'eventhttprequest::sendreplychunk' => array ( 0 => 'void', 'buf' => 'EventBuffer', ), - 'EventHttpRequest::sendReplyEnd' => + 'eventhttprequest::sendreplyend' => array ( 0 => 'void', ), - 'EventHttpRequest::sendReplyStart' => + 'eventhttprequest::sendreplystart' => array ( 0 => 'void', 'code' => 'int', 'reason' => 'string', ), - 'EventListener::__construct' => + 'eventlistener::__construct' => array ( 0 => 'void', 'base' => 'EventBase', @@ -11884,68 +11884,68 @@ 'backlog' => 'int', 'target' => 'mixed', ), - 'EventListener::disable' => + 'eventlistener::disable' => array ( 0 => 'bool', ), - 'EventListener::enable' => + 'eventlistener::enable' => array ( 0 => 'bool', ), - 'EventListener::getBase' => + 'eventlistener::getbase' => array ( 0 => 'void', ), - 'EventListener::getSocketName' => + 'eventlistener::getsocketname' => array ( 0 => 'bool', '&w_address' => 'string', '&w_port=' => 'mixed', ), - 'EventListener::setCallback' => + 'eventlistener::setcallback' => array ( 0 => 'void', 'cb' => 'callable', 'arg=' => 'mixed', ), - 'EventListener::setErrorCallback' => + 'eventlistener::seterrorcallback' => array ( 0 => 'void', 'cb' => 'string', ), - 'EventSslContext::__construct' => + 'eventsslcontext::__construct' => array ( 0 => 'void', 'method' => 'string', 'options' => 'string', ), - 'EventUtil::__construct' => + 'eventutil::__construct' => array ( 0 => 'void', ), - 'EventUtil::getLastSocketErrno' => + 'eventutil::getlastsocketerrno' => array ( 0 => 'int', 'socket=' => 'mixed', ), - 'EventUtil::getLastSocketError' => + 'eventutil::getlastsocketerror' => array ( 0 => 'string', 'socket=' => 'mixed', ), - 'EventUtil::getSocketFd' => + 'eventutil::getsocketfd' => array ( 0 => 'int', 'socket' => 'mixed', ), - 'EventUtil::getSocketName' => + 'eventutil::getsocketname' => array ( 0 => 'bool', 'socket' => 'mixed', '&w_address' => 'string', '&w_port=' => 'mixed', ), - 'EventUtil::setSocketOption' => + 'eventutil::setsocketoption' => array ( 0 => 'bool', 'socket' => 'mixed', @@ -11953,111 +11953,111 @@ 'optname' => 'int', 'optval' => 'mixed', ), - 'EventUtil::sslRandPoll' => + 'eventutil::sslrandpoll' => array ( 0 => 'void', ), - 'EvFork::__construct' => + 'evfork::__construct' => array ( 0 => 'void', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvFork::clear' => + 'evfork::clear' => array ( 0 => 'int', ), - 'EvFork::createStopped' => + 'evfork::createstopped' => array ( 0 => 'EvFork', 'callback' => 'callable', 'data=' => 'string', 'priority=' => 'string', ), - 'EvFork::feed' => + 'evfork::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvFork::getLoop' => + 'evfork::getloop' => array ( 0 => 'EvLoop', ), - 'EvFork::invoke' => + 'evfork::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvFork::keepAlive' => + 'evfork::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvFork::setCallback' => + 'evfork::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvFork::start' => + 'evfork::start' => array ( 0 => 'void', ), - 'EvFork::stop' => + 'evfork::stop' => array ( 0 => 'void', ), - 'EvIdle::__construct' => + 'evidle::__construct' => array ( 0 => 'void', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvIdle::clear' => + 'evidle::clear' => array ( 0 => 'int', ), - 'EvIdle::createStopped' => + 'evidle::createstopped' => array ( 0 => 'EvIdle', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvIdle::feed' => + 'evidle::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvIdle::getLoop' => + 'evidle::getloop' => array ( 0 => 'EvLoop', ), - 'EvIdle::invoke' => + 'evidle::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvIdle::keepAlive' => + 'evidle::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvIdle::setCallback' => + 'evidle::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvIdle::start' => + 'evidle::start' => array ( 0 => 'void', ), - 'EvIdle::stop' => + 'evidle::stop' => array ( 0 => 'void', ), - 'EvIo::__construct' => + 'evio::__construct' => array ( 0 => 'void', 'fd' => 'mixed', @@ -12066,11 +12066,11 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvIo::clear' => + 'evio::clear' => array ( 0 => 'int', ), - 'EvIo::createStopped' => + 'evio::createstopped' => array ( 0 => 'EvIo', 'fd' => 'resource', @@ -12079,45 +12079,45 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvIo::feed' => + 'evio::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvIo::getLoop' => + 'evio::getloop' => array ( 0 => 'EvLoop', ), - 'EvIo::invoke' => + 'evio::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvIo::keepAlive' => + 'evio::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvIo::set' => + 'evio::set' => array ( 0 => 'void', 'fd' => 'resource', 'events' => 'int', ), - 'EvIo::setCallback' => + 'evio::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvIo::start' => + 'evio::start' => array ( 0 => 'void', ), - 'EvIo::stop' => + 'evio::stop' => array ( 0 => 'void', ), - 'EvLoop::__construct' => + 'evloop::__construct' => array ( 0 => 'void', 'flags=' => 'int', @@ -12125,18 +12125,18 @@ 'io_interval=' => 'float', 'timeout_interval=' => 'float', ), - 'EvLoop::backend' => + 'evloop::backend' => array ( 0 => 'int', ), - 'EvLoop::check' => + 'evloop::check' => array ( 0 => 'EvCheck', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::child' => + 'evloop::child' => array ( 0 => 'EvChild', 'pid' => 'int', @@ -12145,7 +12145,7 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::defaultLoop' => + 'evloop::defaultloop' => array ( 0 => 'EvLoop', 'flags=' => 'int', @@ -12153,7 +12153,7 @@ 'io_interval=' => 'float', 'timeout_interval=' => 'float', ), - 'EvLoop::embed' => + 'evloop::embed' => array ( 0 => 'EvEmbed', 'other' => 'EvLoop', @@ -12161,25 +12161,25 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::fork' => + 'evloop::fork' => array ( 0 => 'EvFork', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::idle' => + 'evloop::idle' => array ( 0 => 'EvIdle', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::invokePending' => + 'evloop::invokepending' => array ( 0 => 'void', ), - 'EvLoop::io' => + 'evloop::io' => array ( 0 => 'EvIo', 'fd' => 'resource', @@ -12188,19 +12188,19 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::loopFork' => + 'evloop::loopfork' => array ( 0 => 'void', ), - 'EvLoop::now' => + 'evloop::now' => array ( 0 => 'float', ), - 'EvLoop::nowUpdate' => + 'evloop::nowupdate' => array ( 0 => 'void', ), - 'EvLoop::periodic' => + 'evloop::periodic' => array ( 0 => 'EvPeriodic', 'offset' => 'float', @@ -12209,23 +12209,23 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::prepare' => + 'evloop::prepare' => array ( 0 => 'EvPrepare', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::resume' => + 'evloop::resume' => array ( 0 => 'void', ), - 'EvLoop::run' => + 'evloop::run' => array ( 0 => 'void', 'flags=' => 'int', ), - 'EvLoop::signal' => + 'evloop::signal' => array ( 0 => 'EvSignal', 'signum' => 'int', @@ -12233,7 +12233,7 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::stat' => + 'evloop::stat' => array ( 0 => 'EvStat', 'path' => 'string', @@ -12242,16 +12242,16 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::stop' => + 'evloop::stop' => array ( 0 => 'void', 'how=' => 'int', ), - 'EvLoop::suspend' => + 'evloop::suspend' => array ( 0 => 'void', ), - 'EvLoop::timer' => + 'evloop::timer' => array ( 0 => 'EvTimer', 'after' => 'float', @@ -12260,11 +12260,11 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::verify' => + 'evloop::verify' => array ( 0 => 'void', ), - 'EvPeriodic::__construct' => + 'evperiodic::__construct' => array ( 0 => 'void', 'offset' => 'float', @@ -12274,19 +12274,19 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvPeriodic::again' => + 'evperiodic::again' => array ( 0 => 'void', ), - 'EvPeriodic::at' => + 'evperiodic::at' => array ( 0 => 'float', ), - 'EvPeriodic::clear' => + 'evperiodic::clear' => array ( 0 => 'int', ), - 'EvPeriodic::createStopped' => + 'evperiodic::createstopped' => array ( 0 => 'EvPeriodic', 'offset' => 'float', @@ -12296,95 +12296,95 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvPeriodic::feed' => + 'evperiodic::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvPeriodic::getLoop' => + 'evperiodic::getloop' => array ( 0 => 'EvLoop', ), - 'EvPeriodic::invoke' => + 'evperiodic::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvPeriodic::keepAlive' => + 'evperiodic::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvPeriodic::set' => + 'evperiodic::set' => array ( 0 => 'void', 'offset' => 'float', 'interval' => 'float', ), - 'EvPeriodic::setCallback' => + 'evperiodic::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvPeriodic::start' => + 'evperiodic::start' => array ( 0 => 'void', ), - 'EvPeriodic::stop' => + 'evperiodic::stop' => array ( 0 => 'void', ), - 'EvPrepare::__construct' => + 'evprepare::__construct' => array ( 0 => 'void', 'callback' => 'string', 'data=' => 'string', 'priority=' => 'string', ), - 'EvPrepare::clear' => + 'evprepare::clear' => array ( 0 => 'int', ), - 'EvPrepare::createStopped' => + 'evprepare::createstopped' => array ( 0 => 'EvPrepare', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvPrepare::feed' => + 'evprepare::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvPrepare::getLoop' => + 'evprepare::getloop' => array ( 0 => 'EvLoop', ), - 'EvPrepare::invoke' => + 'evprepare::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvPrepare::keepAlive' => + 'evprepare::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvPrepare::setCallback' => + 'evprepare::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvPrepare::start' => + 'evprepare::start' => array ( 0 => 'void', ), - 'EvPrepare::stop' => + 'evprepare::stop' => array ( 0 => 'void', ), - 'EvSignal::__construct' => + 'evsignal::__construct' => array ( 0 => 'void', 'signum' => 'int', @@ -12392,11 +12392,11 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvSignal::clear' => + 'evsignal::clear' => array ( 0 => 'int', ), - 'EvSignal::createStopped' => + 'evsignal::createstopped' => array ( 0 => 'EvSignal', 'signum' => 'int', @@ -12404,44 +12404,44 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvSignal::feed' => + 'evsignal::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvSignal::getLoop' => + 'evsignal::getloop' => array ( 0 => 'EvLoop', ), - 'EvSignal::invoke' => + 'evsignal::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvSignal::keepAlive' => + 'evsignal::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvSignal::set' => + 'evsignal::set' => array ( 0 => 'void', 'signum' => 'int', ), - 'EvSignal::setCallback' => + 'evsignal::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvSignal::start' => + 'evsignal::start' => array ( 0 => 'void', ), - 'EvSignal::stop' => + 'evsignal::stop' => array ( 0 => 'void', ), - 'EvStat::__construct' => + 'evstat::__construct' => array ( 0 => 'void', 'path' => 'string', @@ -12450,15 +12450,15 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvStat::attr' => + 'evstat::attr' => array ( 0 => 'array', ), - 'EvStat::clear' => + 'evstat::clear' => array ( 0 => 'int', ), - 'EvStat::createStopped' => + 'evstat::createstopped' => array ( 0 => 'EvStat', 'path' => 'string', @@ -12467,53 +12467,53 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvStat::feed' => + 'evstat::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvStat::getLoop' => + 'evstat::getloop' => array ( 0 => 'EvLoop', ), - 'EvStat::invoke' => + 'evstat::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvStat::keepAlive' => + 'evstat::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvStat::prev' => + 'evstat::prev' => array ( 0 => 'array', ), - 'EvStat::set' => + 'evstat::set' => array ( 0 => 'void', 'path' => 'string', 'interval' => 'float', ), - 'EvStat::setCallback' => + 'evstat::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvStat::start' => + 'evstat::start' => array ( 0 => 'void', ), - 'EvStat::stat' => + 'evstat::stat' => array ( 0 => 'bool', ), - 'EvStat::stop' => + 'evstat::stop' => array ( 0 => 'void', ), - 'EvTimer::__construct' => + 'evtimer::__construct' => array ( 0 => 'void', 'after' => 'float', @@ -12522,15 +12522,15 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvTimer::again' => + 'evtimer::again' => array ( 0 => 'void', ), - 'EvTimer::clear' => + 'evtimer::clear' => array ( 0 => 'int', ), - 'EvTimer::createStopped' => + 'evtimer::createstopped' => array ( 0 => 'EvTimer', 'after' => 'float', @@ -12539,124 +12539,124 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvTimer::feed' => + 'evtimer::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvTimer::getLoop' => + 'evtimer::getloop' => array ( 0 => 'EvLoop', ), - 'EvTimer::invoke' => + 'evtimer::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvTimer::keepAlive' => + 'evtimer::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvTimer::set' => + 'evtimer::set' => array ( 0 => 'void', 'after' => 'float', 'repeat' => 'float', ), - 'EvTimer::setCallback' => + 'evtimer::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvTimer::start' => + 'evtimer::start' => array ( 0 => 'void', ), - 'EvTimer::stop' => + 'evtimer::stop' => array ( 0 => 'void', ), - 'EvWatcher::__construct' => + 'evwatcher::__construct' => array ( 0 => 'void', ), - 'EvWatcher::clear' => + 'evwatcher::clear' => array ( 0 => 'int', ), - 'EvWatcher::feed' => + 'evwatcher::feed' => array ( 0 => 'void', 'revents' => 'int', ), - 'EvWatcher::getLoop' => + 'evwatcher::getloop' => array ( 0 => 'EvLoop', ), - 'EvWatcher::invoke' => + 'evwatcher::invoke' => array ( 0 => 'void', 'revents' => 'int', ), - 'EvWatcher::keepalive' => + 'evwatcher::keepalive' => array ( 0 => 'bool', 'value=' => 'bool', ), - 'EvWatcher::setCallback' => + 'evwatcher::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvWatcher::start' => + 'evwatcher::start' => array ( 0 => 'void', ), - 'EvWatcher::stop' => + 'evwatcher::stop' => array ( 0 => 'void', ), - 'Exception::__clone' => + 'exception::__clone' => array ( 0 => 'void', ), - 'Exception::__construct' => + 'exception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'Exception::__toString' => + 'exception::__tostring' => array ( 0 => 'string', ), - 'Exception::getCode' => + 'exception::getcode' => array ( 0 => 'int|string', ), - 'Exception::getFile' => + 'exception::getfile' => array ( 0 => 'string', ), - 'Exception::getLine' => + 'exception::getline' => array ( 0 => 'int', ), - 'Exception::getMessage' => + 'exception::getmessage' => array ( 0 => 'string', ), - 'Exception::getPrevious' => + 'exception::getprevious' => array ( 0 => 'Throwable|null', ), - 'Exception::getTrace' => + 'exception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'Exception::getTraceAsString' => + 'exception::gettraceasstring' => array ( 0 => 'string', ), @@ -13071,7 +13071,7 @@ 0 => 'false|float', 'ann' => 'resource', ), - 'fann_get_MSE' => + 'fann_get_mse' => array ( 0 => 'false|float', 'ann' => 'resource', @@ -13230,7 +13230,7 @@ 0 => 'void', 'errdat' => 'resource', ), - 'fann_reset_MSE' => + 'fann_reset_mse' => array ( 0 => 'bool', 'ann' => 'string', @@ -13634,26 +13634,26 @@ 'epochs_between_reports' => 'int', 'desired_error' => 'float', ), - 'FANNConnection::__construct' => + 'fannconnection::__construct' => array ( 0 => 'void', 'from_neuron' => 'int', 'to_neuron' => 'int', 'weight' => 'float', ), - 'FANNConnection::getFromNeuron' => + 'fannconnection::getfromneuron' => array ( 0 => 'int', ), - 'FANNConnection::getToNeuron' => + 'fannconnection::gettoneuron' => array ( 0 => 'int', ), - 'FANNConnection::getWeight' => + 'fannconnection::getweight' => array ( 0 => 'void', ), - 'FANNConnection::setWeight' => + 'fannconnection::setweight' => array ( 0 => 'bool', 'weight' => 'float', @@ -14275,7 +14275,7 @@ 'frame_rate' => 'int', 'loop_count=' => 'int', ), - 'ffmpeg_animated_gif::addFrame' => + 'ffmpeg_animated_gif::addframe' => array ( 0 => 'mixed', 'frame_to_add' => 'ffmpeg_frame', @@ -14293,19 +14293,19 @@ 'crop_left=' => 'int', 'crop_right=' => 'int', ), - 'ffmpeg_frame::getHeight' => + 'ffmpeg_frame::getheight' => array ( 0 => 'int', ), - 'ffmpeg_frame::getPresentationTimestamp' => + 'ffmpeg_frame::getpresentationtimestamp' => array ( 0 => 'int', ), - 'ffmpeg_frame::getPTS' => + 'ffmpeg_frame::getpts' => array ( 0 => 'int', ), - 'ffmpeg_frame::getWidth' => + 'ffmpeg_frame::getwidth' => array ( 0 => 'int', ), @@ -14319,7 +14319,7 @@ 'crop_left=' => 'int', 'crop_right=' => 'int', ), - 'ffmpeg_frame::toGDImage' => + 'ffmpeg_frame::togdimage' => array ( 0 => 'resource', ), @@ -14329,112 +14329,112 @@ 'path_to_media' => 'string', 'persistent' => 'bool', ), - 'ffmpeg_movie::getArtist' => + 'ffmpeg_movie::getartist' => array ( 0 => 'string', ), - 'ffmpeg_movie::getAudioBitRate' => + 'ffmpeg_movie::getaudiobitrate' => array ( 0 => 'int', ), - 'ffmpeg_movie::getAudioChannels' => + 'ffmpeg_movie::getaudiochannels' => array ( 0 => 'int', ), - 'ffmpeg_movie::getAudioCodec' => + 'ffmpeg_movie::getaudiocodec' => array ( 0 => 'string', ), - 'ffmpeg_movie::getAudioSampleRate' => + 'ffmpeg_movie::getaudiosamplerate' => array ( 0 => 'int', ), - 'ffmpeg_movie::getAuthor' => + 'ffmpeg_movie::getauthor' => array ( 0 => 'string', ), - 'ffmpeg_movie::getBitRate' => + 'ffmpeg_movie::getbitrate' => array ( 0 => 'int', ), - 'ffmpeg_movie::getComment' => + 'ffmpeg_movie::getcomment' => array ( 0 => 'string', ), - 'ffmpeg_movie::getCopyright' => + 'ffmpeg_movie::getcopyright' => array ( 0 => 'string', ), - 'ffmpeg_movie::getDuration' => + 'ffmpeg_movie::getduration' => array ( 0 => 'int', ), - 'ffmpeg_movie::getFilename' => + 'ffmpeg_movie::getfilename' => array ( 0 => 'string', ), - 'ffmpeg_movie::getFrame' => + 'ffmpeg_movie::getframe' => array ( 0 => 'false|ffmpeg_frame', 'framenumber' => 'int', ), - 'ffmpeg_movie::getFrameCount' => + 'ffmpeg_movie::getframecount' => array ( 0 => 'int', ), - 'ffmpeg_movie::getFrameHeight' => + 'ffmpeg_movie::getframeheight' => array ( 0 => 'int', ), - 'ffmpeg_movie::getFrameNumber' => + 'ffmpeg_movie::getframenumber' => array ( 0 => 'int', ), - 'ffmpeg_movie::getFrameRate' => + 'ffmpeg_movie::getframerate' => array ( 0 => 'int', ), - 'ffmpeg_movie::getFrameWidth' => + 'ffmpeg_movie::getframewidth' => array ( 0 => 'int', ), - 'ffmpeg_movie::getGenre' => + 'ffmpeg_movie::getgenre' => array ( 0 => 'string', ), - 'ffmpeg_movie::getNextKeyFrame' => + 'ffmpeg_movie::getnextkeyframe' => array ( 0 => 'false|ffmpeg_frame', ), - 'ffmpeg_movie::getPixelFormat' => + 'ffmpeg_movie::getpixelformat' => array ( 0 => 'mixed', ), - 'ffmpeg_movie::getTitle' => + 'ffmpeg_movie::gettitle' => array ( 0 => 'string', ), - 'ffmpeg_movie::getTrackNumber' => + 'ffmpeg_movie::gettracknumber' => array ( 0 => 'int|string', ), - 'ffmpeg_movie::getVideoBitRate' => + 'ffmpeg_movie::getvideobitrate' => array ( 0 => 'int', ), - 'ffmpeg_movie::getVideoCodec' => + 'ffmpeg_movie::getvideocodec' => array ( 0 => 'string', ), - 'ffmpeg_movie::getYear' => + 'ffmpeg_movie::getyear' => array ( 0 => 'int|string', ), - 'ffmpeg_movie::hasAudio' => + 'ffmpeg_movie::hasaudio' => array ( 0 => 'bool', ), - 'ffmpeg_movie::hasVideo' => + 'ffmpeg_movie::hasvideo' => array ( 0 => 'bool', ), @@ -14458,56 +14458,56 @@ 'stream' => 'resource', 'length=' => 'int|null', ), - 'Fiber::__construct' => + 'fiber::__construct' => array ( 0 => 'void', 'callback' => 'callable', ), - 'Fiber::start' => + 'fiber::start' => array ( 0 => 'mixed', '...args' => 'mixed', ), - 'Fiber::resume' => + 'fiber::resume' => array ( 0 => 'mixed', 'value=' => 'mixed|null', ), - 'Fiber::throw' => + 'fiber::throw' => array ( 0 => 'mixed', 'exception' => 'Throwable', ), - 'Fiber::isStarted' => + 'fiber::isstarted' => array ( 0 => 'bool', ), - 'Fiber::isSuspended' => + 'fiber::issuspended' => array ( 0 => 'bool', ), - 'Fiber::isRunning' => + 'fiber::isrunning' => array ( 0 => 'bool', ), - 'Fiber::isTerminated' => + 'fiber::isterminated' => array ( 0 => 'bool', ), - 'Fiber::getReturn' => + 'fiber::getreturn' => array ( 0 => 'mixed', ), - 'Fiber::getCurrent' => + 'fiber::getcurrent' => array ( 0 => 'Fiber|null', ), - 'Fiber::suspend' => + 'fiber::suspend' => array ( 0 => 'mixed', 'value=' => 'mixed|null', ), - 'FiberError::__construct' => + 'fibererror::__construct' => array ( 0 => 'void', ), @@ -14614,167 +14614,167 @@ 0 => 'false|int', 'filename' => 'string', ), - 'FilesystemIterator::__construct' => + 'filesystemiterator::__construct' => array ( 0 => 'void', 'directory' => 'string', 'flags=' => 'int', ), - 'FilesystemIterator::__toString' => + 'filesystemiterator::__tostring' => array ( 0 => 'string', ), - 'FilesystemIterator::current' => + 'filesystemiterator::current' => array ( 0 => 'FilesystemIterator|SplFileInfo|string', ), - 'FilesystemIterator::getATime' => + 'filesystemiterator::getatime' => array ( 0 => 'int', ), - 'FilesystemIterator::getBasename' => + 'filesystemiterator::getbasename' => array ( 0 => 'string', 'suffix=' => 'string', ), - 'FilesystemIterator::getCTime' => + 'filesystemiterator::getctime' => array ( 0 => 'int', ), - 'FilesystemIterator::getExtension' => + 'filesystemiterator::getextension' => array ( 0 => 'string', ), - 'FilesystemIterator::getFileInfo' => + 'filesystemiterator::getfileinfo' => array ( 0 => 'SplFileInfo', 'class=' => 'class-string|null', ), - 'FilesystemIterator::getFilename' => + 'filesystemiterator::getfilename' => array ( 0 => 'string', ), - 'FilesystemIterator::getFlags' => + 'filesystemiterator::getflags' => array ( 0 => 'int', ), - 'FilesystemIterator::getGroup' => + 'filesystemiterator::getgroup' => array ( 0 => 'int', ), - 'FilesystemIterator::getInode' => + 'filesystemiterator::getinode' => array ( 0 => 'int', ), - 'FilesystemIterator::getLinkTarget' => + 'filesystemiterator::getlinktarget' => array ( 0 => 'string', ), - 'FilesystemIterator::getMTime' => + 'filesystemiterator::getmtime' => array ( 0 => 'int', ), - 'FilesystemIterator::getOwner' => + 'filesystemiterator::getowner' => array ( 0 => 'int', ), - 'FilesystemIterator::getPath' => + 'filesystemiterator::getpath' => array ( 0 => 'string', ), - 'FilesystemIterator::getPathInfo' => + 'filesystemiterator::getpathinfo' => array ( 0 => 'SplFileInfo|null', 'class=' => 'class-string|null', ), - 'FilesystemIterator::getPathname' => + 'filesystemiterator::getpathname' => array ( 0 => 'string', ), - 'FilesystemIterator::getPerms' => + 'filesystemiterator::getperms' => array ( 0 => 'int', ), - 'FilesystemIterator::getRealPath' => + 'filesystemiterator::getrealpath' => array ( 0 => 'non-falsy-string', ), - 'FilesystemIterator::getSize' => + 'filesystemiterator::getsize' => array ( 0 => 'int', ), - 'FilesystemIterator::getType' => + 'filesystemiterator::gettype' => array ( 0 => 'string', ), - 'FilesystemIterator::isDir' => + 'filesystemiterator::isdir' => array ( 0 => 'bool', ), - 'FilesystemIterator::isDot' => + 'filesystemiterator::isdot' => array ( 0 => 'bool', ), - 'FilesystemIterator::isExecutable' => + 'filesystemiterator::isexecutable' => array ( 0 => 'bool', ), - 'FilesystemIterator::isFile' => + 'filesystemiterator::isfile' => array ( 0 => 'bool', ), - 'FilesystemIterator::isLink' => + 'filesystemiterator::islink' => array ( 0 => 'bool', ), - 'FilesystemIterator::isReadable' => + 'filesystemiterator::isreadable' => array ( 0 => 'bool', ), - 'FilesystemIterator::isWritable' => + 'filesystemiterator::iswritable' => array ( 0 => 'bool', ), - 'FilesystemIterator::key' => + 'filesystemiterator::key' => array ( 0 => 'string', ), - 'FilesystemIterator::next' => + 'filesystemiterator::next' => array ( 0 => 'void', ), - 'FilesystemIterator::openFile' => + 'filesystemiterator::openfile' => array ( 0 => 'SplFileObject', 'mode=' => 'string', 'useIncludePath=' => 'bool', 'context=' => 'null|resource', ), - 'FilesystemIterator::rewind' => + 'filesystemiterator::rewind' => array ( 0 => 'void', ), - 'FilesystemIterator::seek' => + 'filesystemiterator::seek' => array ( 0 => 'void', 'offset' => 'int', ), - 'FilesystemIterator::setFileClass' => + 'filesystemiterator::setfileclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'FilesystemIterator::setFlags' => + 'filesystemiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'FilesystemIterator::setInfoClass' => + 'filesystemiterator::setinfoclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'FilesystemIterator::valid' => + 'filesystemiterator::valid' => array ( 0 => 'bool', ), @@ -14827,36 +14827,36 @@ 'options=' => 'array|int', 'add_empty=' => 'bool', ), - 'FilterIterator::__construct' => + 'filteriterator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', ), - 'FilterIterator::accept' => + 'filteriterator::accept' => array ( 0 => 'bool', ), - 'FilterIterator::current' => + 'filteriterator::current' => array ( 0 => 'mixed', ), - 'FilterIterator::getInnerIterator' => + 'filteriterator::getinneriterator' => array ( 0 => 'Iterator|null', ), - 'FilterIterator::key' => + 'filteriterator::key' => array ( 0 => 'mixed', ), - 'FilterIterator::next' => + 'filteriterator::next' => array ( 0 => 'void', ), - 'FilterIterator::rewind' => + 'filteriterator::rewind' => array ( 0 => 'void', ), - 'FilterIterator::valid' => + 'filteriterator::valid' => array ( 0 => 'bool', ), @@ -15922,27 +15922,27 @@ 0 => 'mixed', 'worker_object' => 'mixed', ), - 'GearmanClient::__construct' => + 'gearmanclient::__construct' => array ( 0 => 'void', ), - 'GearmanClient::addOptions' => + 'gearmanclient::addoptions' => array ( 0 => 'bool', 'options' => 'int', ), - 'GearmanClient::addServer' => + 'gearmanclient::addserver' => array ( 0 => 'bool', 'host=' => 'string', 'port=' => 'int', ), - 'GearmanClient::addServers' => + 'gearmanclient::addservers' => array ( 0 => 'bool', 'servers=' => 'string', ), - 'GearmanClient::addTask' => + 'gearmanclient::addtask' => array ( 0 => 'GearmanTask|false', 'function_name' => 'string', @@ -15950,7 +15950,7 @@ 'context=' => 'mixed', 'unique=' => 'string', ), - 'GearmanClient::addTaskBackground' => + 'gearmanclient::addtaskbackground' => array ( 0 => 'GearmanTask|false', 'function_name' => 'string', @@ -15958,7 +15958,7 @@ 'context=' => 'mixed', 'unique=' => 'string', ), - 'GearmanClient::addTaskHigh' => + 'gearmanclient::addtaskhigh' => array ( 0 => 'GearmanTask|false', 'function_name' => 'string', @@ -15966,7 +15966,7 @@ 'context=' => 'mixed', 'unique=' => 'string', ), - 'GearmanClient::addTaskHighBackground' => + 'gearmanclient::addtaskhighbackground' => array ( 0 => 'GearmanTask|false', 'function_name' => 'string', @@ -15974,7 +15974,7 @@ 'context=' => 'mixed', 'unique=' => 'string', ), - 'GearmanClient::addTaskLow' => + 'gearmanclient::addtasklow' => array ( 0 => 'GearmanTask|false', 'function_name' => 'string', @@ -15982,7 +15982,7 @@ 'context=' => 'mixed', 'unique=' => 'string', ), - 'GearmanClient::addTaskLowBackground' => + 'gearmanclient::addtasklowbackground' => array ( 0 => 'GearmanTask|false', 'function_name' => 'string', @@ -15990,367 +15990,367 @@ 'context=' => 'mixed', 'unique=' => 'string', ), - 'GearmanClient::addTaskStatus' => + 'gearmanclient::addtaskstatus' => array ( 0 => 'GearmanTask', 'job_handle' => 'string', 'context=' => 'string', ), - 'GearmanClient::clearCallbacks' => + 'gearmanclient::clearcallbacks' => array ( 0 => 'bool', ), - 'GearmanClient::clone' => + 'gearmanclient::clone' => array ( 0 => 'GearmanClient', ), - 'GearmanClient::context' => + 'gearmanclient::context' => array ( 0 => 'string', ), - 'GearmanClient::data' => + 'gearmanclient::data' => array ( 0 => 'string', ), - 'GearmanClient::do' => + 'gearmanclient::do' => array ( 0 => 'string', 'function_name' => 'string', 'workload' => 'string', 'unique=' => 'string', ), - 'GearmanClient::doBackground' => + 'gearmanclient::dobackground' => array ( 0 => 'string', 'function_name' => 'string', 'workload' => 'string', 'unique=' => 'string', ), - 'GearmanClient::doHigh' => + 'gearmanclient::dohigh' => array ( 0 => 'string', 'function_name' => 'string', 'workload' => 'string', 'unique=' => 'string', ), - 'GearmanClient::doHighBackground' => + 'gearmanclient::dohighbackground' => array ( 0 => 'string', 'function_name' => 'string', 'workload' => 'string', 'unique=' => 'string', ), - 'GearmanClient::doJobHandle' => + 'gearmanclient::dojobhandle' => array ( 0 => 'string', ), - 'GearmanClient::doLow' => + 'gearmanclient::dolow' => array ( 0 => 'string', 'function_name' => 'string', 'workload' => 'string', 'unique=' => 'string', ), - 'GearmanClient::doLowBackground' => + 'gearmanclient::dolowbackground' => array ( 0 => 'string', 'function_name' => 'string', 'workload' => 'string', 'unique=' => 'string', ), - 'GearmanClient::doNormal' => + 'gearmanclient::donormal' => array ( 0 => 'string', 'function_name' => 'string', 'workload' => 'string', 'unique=' => 'string', ), - 'GearmanClient::doStatus' => + 'gearmanclient::dostatus' => array ( 0 => 'array', ), - 'GearmanClient::echo' => + 'gearmanclient::echo' => array ( 0 => 'bool', 'workload' => 'string', ), - 'GearmanClient::error' => + 'gearmanclient::error' => array ( 0 => 'string', ), - 'GearmanClient::getErrno' => + 'gearmanclient::geterrno' => array ( 0 => 'int', ), - 'GearmanClient::jobStatus' => + 'gearmanclient::jobstatus' => array ( 0 => 'array', 'job_handle' => 'string', ), - 'GearmanClient::options' => + 'gearmanclient::options' => array ( 0 => 'mixed', ), - 'GearmanClient::ping' => + 'gearmanclient::ping' => array ( 0 => 'bool', 'workload' => 'string', ), - 'GearmanClient::removeOptions' => + 'gearmanclient::removeoptions' => array ( 0 => 'bool', 'options' => 'int', ), - 'GearmanClient::returnCode' => + 'gearmanclient::returncode' => array ( 0 => 'int', ), - 'GearmanClient::runTasks' => + 'gearmanclient::runtasks' => array ( 0 => 'bool', ), - 'GearmanClient::setClientCallback' => + 'gearmanclient::setclientcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'GearmanClient::setCompleteCallback' => + 'gearmanclient::setcompletecallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'GearmanClient::setContext' => + 'gearmanclient::setcontext' => array ( 0 => 'bool', 'context' => 'string', ), - 'GearmanClient::setCreatedCallback' => + 'gearmanclient::setcreatedcallback' => array ( 0 => 'bool', 'callback' => 'string', ), - 'GearmanClient::setData' => + 'gearmanclient::setdata' => array ( 0 => 'bool', 'data' => 'string', ), - 'GearmanClient::setDataCallback' => + 'gearmanclient::setdatacallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'GearmanClient::setExceptionCallback' => + 'gearmanclient::setexceptioncallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'GearmanClient::setFailCallback' => + 'gearmanclient::setfailcallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'GearmanClient::setOptions' => + 'gearmanclient::setoptions' => array ( 0 => 'bool', 'options' => 'int', ), - 'GearmanClient::setStatusCallback' => + 'gearmanclient::setstatuscallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'GearmanClient::setTimeout' => + 'gearmanclient::settimeout' => array ( 0 => 'bool', 'timeout' => 'int', ), - 'GearmanClient::setWarningCallback' => + 'gearmanclient::setwarningcallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'GearmanClient::setWorkloadCallback' => + 'gearmanclient::setworkloadcallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'GearmanClient::timeout' => + 'gearmanclient::timeout' => array ( 0 => 'int', ), - 'GearmanClient::wait' => + 'gearmanclient::wait' => array ( 0 => 'mixed', ), - 'GearmanJob::__construct' => + 'gearmanjob::__construct' => array ( 0 => 'void', ), - 'GearmanJob::complete' => + 'gearmanjob::complete' => array ( 0 => 'bool', 'result' => 'string', ), - 'GearmanJob::data' => + 'gearmanjob::data' => array ( 0 => 'bool', 'data' => 'string', ), - 'GearmanJob::exception' => + 'gearmanjob::exception' => array ( 0 => 'bool', 'exception' => 'string', ), - 'GearmanJob::fail' => + 'gearmanjob::fail' => array ( 0 => 'bool', ), - 'GearmanJob::functionName' => + 'gearmanjob::functionname' => array ( 0 => 'string', ), - 'GearmanJob::handle' => + 'gearmanjob::handle' => array ( 0 => 'string', ), - 'GearmanJob::returnCode' => + 'gearmanjob::returncode' => array ( 0 => 'int', ), - 'GearmanJob::sendComplete' => + 'gearmanjob::sendcomplete' => array ( 0 => 'bool', 'result' => 'string', ), - 'GearmanJob::sendData' => + 'gearmanjob::senddata' => array ( 0 => 'bool', 'data' => 'string', ), - 'GearmanJob::sendException' => + 'gearmanjob::sendexception' => array ( 0 => 'bool', 'exception' => 'string', ), - 'GearmanJob::sendFail' => + 'gearmanjob::sendfail' => array ( 0 => 'bool', ), - 'GearmanJob::sendStatus' => + 'gearmanjob::sendstatus' => array ( 0 => 'bool', 'numerator' => 'int', 'denominator' => 'int', ), - 'GearmanJob::sendWarning' => + 'gearmanjob::sendwarning' => array ( 0 => 'bool', 'warning' => 'string', ), - 'GearmanJob::setReturn' => + 'gearmanjob::setreturn' => array ( 0 => 'bool', 'gearman_return_t' => 'string', ), - 'GearmanJob::status' => + 'gearmanjob::status' => array ( 0 => 'bool', 'numerator' => 'int', 'denominator' => 'int', ), - 'GearmanJob::unique' => + 'gearmanjob::unique' => array ( 0 => 'string', ), - 'GearmanJob::warning' => + 'gearmanjob::warning' => array ( 0 => 'bool', 'warning' => 'string', ), - 'GearmanJob::workload' => + 'gearmanjob::workload' => array ( 0 => 'string', ), - 'GearmanJob::workloadSize' => + 'gearmanjob::workloadsize' => array ( 0 => 'int', ), - 'GearmanTask::__construct' => + 'gearmantask::__construct' => array ( 0 => 'void', ), - 'GearmanTask::create' => + 'gearmantask::create' => array ( 0 => 'GearmanTask', ), - 'GearmanTask::data' => + 'gearmantask::data' => array ( 0 => 'false|string', ), - 'GearmanTask::dataSize' => + 'gearmantask::datasize' => array ( 0 => 'false|int', ), - 'GearmanTask::function' => + 'gearmantask::function' => array ( 0 => 'string', ), - 'GearmanTask::functionName' => + 'gearmantask::functionname' => array ( 0 => 'string', ), - 'GearmanTask::isKnown' => + 'gearmantask::isknown' => array ( 0 => 'bool', ), - 'GearmanTask::isRunning' => + 'gearmantask::isrunning' => array ( 0 => 'bool', ), - 'GearmanTask::jobHandle' => + 'gearmantask::jobhandle' => array ( 0 => 'string', ), - 'GearmanTask::recvData' => + 'gearmantask::recvdata' => array ( 0 => 'array|false', 'data_len' => 'int', ), - 'GearmanTask::returnCode' => + 'gearmantask::returncode' => array ( 0 => 'int', ), - 'GearmanTask::sendData' => + 'gearmantask::senddata' => array ( 0 => 'int', 'data' => 'string', ), - 'GearmanTask::sendWorkload' => + 'gearmantask::sendworkload' => array ( 0 => 'false|int', 'data' => 'string', ), - 'GearmanTask::taskDenominator' => + 'gearmantask::taskdenominator' => array ( 0 => 'false|int', ), - 'GearmanTask::taskNumerator' => + 'gearmantask::tasknumerator' => array ( 0 => 'false|int', ), - 'GearmanTask::unique' => + 'gearmantask::unique' => array ( 0 => 'false|string', ), - 'GearmanTask::uuid' => + 'gearmantask::uuid' => array ( 0 => 'string', ), - 'GearmanWorker::__construct' => + 'gearmanworker::__construct' => array ( 0 => 'void', ), - 'GearmanWorker::addFunction' => + 'gearmanworker::addfunction' => array ( 0 => 'bool', 'function_name' => 'string', @@ -16358,163 +16358,163 @@ 'context=' => 'mixed', 'timeout=' => 'int', ), - 'GearmanWorker::addOptions' => + 'gearmanworker::addoptions' => array ( 0 => 'bool', 'option' => 'int', ), - 'GearmanWorker::addServer' => + 'gearmanworker::addserver' => array ( 0 => 'bool', 'host=' => 'string', 'port=' => 'int', ), - 'GearmanWorker::addServers' => + 'gearmanworker::addservers' => array ( 0 => 'bool', 'servers' => 'string', ), - 'GearmanWorker::clone' => + 'gearmanworker::clone' => array ( 0 => 'void', ), - 'GearmanWorker::echo' => + 'gearmanworker::echo' => array ( 0 => 'bool', 'workload' => 'string', ), - 'GearmanWorker::error' => + 'gearmanworker::error' => array ( 0 => 'string', ), - 'GearmanWorker::getErrno' => + 'gearmanworker::geterrno' => array ( 0 => 'int', ), - 'GearmanWorker::grabJob' => + 'gearmanworker::grabjob' => array ( 0 => 'mixed', ), - 'GearmanWorker::options' => + 'gearmanworker::options' => array ( 0 => 'int', ), - 'GearmanWorker::register' => + 'gearmanworker::register' => array ( 0 => 'bool', 'function_name' => 'string', 'timeout=' => 'int', ), - 'GearmanWorker::removeOptions' => + 'gearmanworker::removeoptions' => array ( 0 => 'bool', 'option' => 'int', ), - 'GearmanWorker::returnCode' => + 'gearmanworker::returncode' => array ( 0 => 'int', ), - 'GearmanWorker::setId' => + 'gearmanworker::setid' => array ( 0 => 'bool', 'id' => 'string', ), - 'GearmanWorker::setOptions' => + 'gearmanworker::setoptions' => array ( 0 => 'bool', 'option' => 'int', ), - 'GearmanWorker::setTimeout' => + 'gearmanworker::settimeout' => array ( 0 => 'bool', 'timeout' => 'int', ), - 'GearmanWorker::timeout' => + 'gearmanworker::timeout' => array ( 0 => 'int', ), - 'GearmanWorker::unregister' => + 'gearmanworker::unregister' => array ( 0 => 'bool', 'function_name' => 'string', ), - 'GearmanWorker::unregisterAll' => + 'gearmanworker::unregisterall' => array ( 0 => 'bool', ), - 'GearmanWorker::wait' => + 'gearmanworker::wait' => array ( 0 => 'bool', ), - 'GearmanWorker::work' => + 'gearmanworker::work' => array ( 0 => 'bool', ), - 'Gender\\Gender::__construct' => + 'gender\\gender::__construct' => array ( 0 => 'void', 'dsn=' => 'string', ), - 'Gender\\Gender::connect' => + 'gender\\gender::connect' => array ( 0 => 'bool', 'dsn' => 'string', ), - 'Gender\\Gender::country' => + 'gender\\gender::country' => array ( 0 => 'array', 'country' => 'int', ), - 'Gender\\Gender::get' => + 'gender\\gender::get' => array ( 0 => 'int', 'name' => 'string', 'country=' => 'int', ), - 'Gender\\Gender::isNick' => + 'gender\\gender::isnick' => array ( 0 => 'array', 'name0' => 'string', 'name1' => 'string', 'country=' => 'int', ), - 'Gender\\Gender::similarNames' => + 'gender\\gender::similarnames' => array ( 0 => 'array', 'name' => 'string', 'country=' => 'int', ), - 'Generator::current' => + 'generator::current' => array ( 0 => 'mixed', ), - 'Generator::getReturn' => + 'generator::getreturn' => array ( 0 => 'mixed', ), - 'Generator::key' => + 'generator::key' => array ( 0 => 'mixed', ), - 'Generator::next' => + 'generator::next' => array ( 0 => 'void', ), - 'Generator::rewind' => + 'generator::rewind' => array ( 0 => 'void', ), - 'Generator::send' => + 'generator::send' => array ( 0 => 'mixed', 'value' => 'mixed', ), - 'Generator::throw' => + 'generator::throw' => array ( 0 => 'mixed', 'exception' => 'Throwable', ), - 'Generator::valid' => + 'generator::valid' => array ( 0 => 'bool', ), @@ -16614,416 +16614,416 @@ 'country_code' => 'string', 'region_code=' => 'string', ), - 'GEOSGeometry::__toString' => + 'geosgeometry::__tostring' => array ( 0 => 'string', ), - 'GEOSGeometry::project' => + 'geosgeometry::project' => array ( 0 => 'float', 'other' => 'GEOSGeometry', 'normalized' => 'bool', ), - 'GEOSGeometry::interpolate' => + 'geosgeometry::interpolate' => array ( 0 => 'GEOSGeometry', 'dist' => 'float', 'normalized' => 'bool', ), - 'GEOSGeometry::buffer' => + 'geosgeometry::buffer' => array ( 0 => 'GEOSGeometry', 'dist' => 'float', 'styleArray=' => 'array', ), - 'GEOSGeometry::offsetCurve' => + 'geosgeometry::offsetcurve' => array ( 0 => 'GEOSGeometry', 'dist' => 'float', 'styleArray' => 'array', ), - 'GEOSGeometry::envelope' => + 'geosgeometry::envelope' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::intersection' => + 'geosgeometry::intersection' => array ( 0 => 'GEOSGeometry', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::convexHull' => + 'geosgeometry::convexhull' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::difference' => + 'geosgeometry::difference' => array ( 0 => 'GEOSGeometry', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::symDifference' => + 'geosgeometry::symdifference' => array ( 0 => 'GEOSGeometry', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::boundary' => + 'geosgeometry::boundary' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::union' => + 'geosgeometry::union' => array ( 0 => 'GEOSGeometry', 'otherGeom=' => 'GEOSGeometry', ), - 'GEOSGeometry::pointOnSurface' => + 'geosgeometry::pointonsurface' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::centroid' => + 'geosgeometry::centroid' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::relate' => + 'geosgeometry::relate' => array ( 0 => 'bool|string', 'otherGeom' => 'GEOSGeometry', 'pattern' => 'string', ), - 'GEOSGeometry::relateBoundaryNodeRule' => + 'geosgeometry::relateboundarynoderule' => array ( 0 => 'string', 'otherGeom' => 'GEOSGeometry', 'rule' => 'int', ), - 'GEOSGeometry::simplify' => + 'geosgeometry::simplify' => array ( 0 => 'GEOSGeometry', 'tolerance' => 'float', 'preserveTopology=' => 'bool', ), - 'GEOSGeometry::normalize' => + 'geosgeometry::normalize' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::extractUniquePoints' => + 'geosgeometry::extractuniquepoints' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::disjoint' => + 'geosgeometry::disjoint' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::touches' => + 'geosgeometry::touches' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::intersects' => + 'geosgeometry::intersects' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::crosses' => + 'geosgeometry::crosses' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::within' => + 'geosgeometry::within' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::contains' => + 'geosgeometry::contains' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::overlaps' => + 'geosgeometry::overlaps' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::covers' => + 'geosgeometry::covers' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::coveredBy' => + 'geosgeometry::coveredby' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::equals' => + 'geosgeometry::equals' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::equalsExact' => + 'geosgeometry::equalsexact' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', 'tolerance' => 'float', ), - 'GEOSGeometry::isEmpty' => + 'geosgeometry::isempty' => array ( 0 => 'bool', ), - 'GEOSGeometry::checkValidity' => + 'geosgeometry::checkvalidity' => array ( 0 => 'array{location?: GEOSGeometry, reason?: string, valid: bool}', ), - 'GEOSGeometry::isSimple' => + 'geosgeometry::issimple' => array ( 0 => 'bool', ), - 'GEOSGeometry::isRing' => + 'geosgeometry::isring' => array ( 0 => 'bool', ), - 'GEOSGeometry::hasZ' => + 'geosgeometry::hasz' => array ( 0 => 'bool', ), - 'GEOSGeometry::isClosed' => + 'geosgeometry::isclosed' => array ( 0 => 'bool', ), - 'GEOSGeometry::typeName' => + 'geosgeometry::typename' => array ( 0 => 'string', ), - 'GEOSGeometry::typeId' => + 'geosgeometry::typeid' => array ( 0 => 'int', ), - 'GEOSGeometry::getSRID' => + 'geosgeometry::getsrid' => array ( 0 => 'int', ), - 'GEOSGeometry::setSRID' => + 'geosgeometry::setsrid' => array ( 0 => 'void', 'srid' => 'int', ), - 'GEOSGeometry::numGeometries' => + 'geosgeometry::numgeometries' => array ( 0 => 'int', ), - 'GEOSGeometry::geometryN' => + 'geosgeometry::geometryn' => array ( 0 => 'GEOSGeometry', 'num' => 'int', ), - 'GEOSGeometry::numInteriorRings' => + 'geosgeometry::numinteriorrings' => array ( 0 => 'int', ), - 'GEOSGeometry::numPoints' => + 'geosgeometry::numpoints' => array ( 0 => 'int', ), - 'GEOSGeometry::getX' => + 'geosgeometry::getx' => array ( 0 => 'float', ), - 'GEOSGeometry::getY' => + 'geosgeometry::gety' => array ( 0 => 'float', ), - 'GEOSGeometry::interiorRingN' => + 'geosgeometry::interiorringn' => array ( 0 => 'GEOSGeometry', 'num' => 'int', ), - 'GEOSGeometry::exteriorRing' => + 'geosgeometry::exteriorring' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::numCoordinates' => + 'geosgeometry::numcoordinates' => array ( 0 => 'int', ), - 'GEOSGeometry::dimension' => + 'geosgeometry::dimension' => array ( 0 => 'int', ), - 'GEOSGeometry::coordinateDimension' => + 'geosgeometry::coordinatedimension' => array ( 0 => 'int', ), - 'GEOSGeometry::pointN' => + 'geosgeometry::pointn' => array ( 0 => 'GEOSGeometry', 'num' => 'int', ), - 'GEOSGeometry::startPoint' => + 'geosgeometry::startpoint' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::endPoint' => + 'geosgeometry::endpoint' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::area' => + 'geosgeometry::area' => array ( 0 => 'float', ), - 'GEOSGeometry::length' => + 'geosgeometry::length' => array ( 0 => 'float', ), - 'GEOSGeometry::distance' => + 'geosgeometry::distance' => array ( 0 => 'float', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::hausdorffDistance' => + 'geosgeometry::hausdorffdistance' => array ( 0 => 'float', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::snapTo' => + 'geosgeometry::snapto' => array ( 0 => 'GEOSGeometry', 'geom' => 'GEOSGeometry', 'tolerance' => 'float', ), - 'GEOSGeometry::node' => + 'geosgeometry::node' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::delaunayTriangulation' => + 'geosgeometry::delaunaytriangulation' => array ( 0 => 'GEOSGeometry', 'tolerance' => 'float', 'onlyEdges' => 'bool', ), - 'GEOSGeometry::voronoiDiagram' => + 'geosgeometry::voronoidiagram' => array ( 0 => 'GEOSGeometry', 'tolerance' => 'float', 'onlyEdges' => 'bool', 'extent' => 'GEOSGeometry|null', ), - 'GEOSLineMerge' => + 'geoslinemerge' => array ( 0 => 'array', 'geom' => 'GEOSGeometry', ), - 'GEOSPolygonize' => + 'geospolygonize' => array ( 0 => 'array{cut_edges?: array, dangles: array, invalid_rings: array, rings: array}', 'geom' => 'GEOSGeometry', ), - 'GEOSRelateMatch' => + 'geosrelatematch' => array ( 0 => 'bool', 'matrix' => 'string', 'pattern' => 'string', ), - 'GEOSSharedPaths' => + 'geossharedpaths' => array ( 0 => 'GEOSGeometry', 'geom1' => 'GEOSGeometry', 'geom2' => 'GEOSGeometry', ), - 'GEOSVersion' => + 'geosversion' => array ( 0 => 'string', ), - 'GEOSWKBReader::__construct' => + 'geoswkbreader::__construct' => array ( 0 => 'void', ), - 'GEOSWKBReader::read' => + 'geoswkbreader::read' => array ( 0 => 'GEOSGeometry', 'wkb' => 'string', ), - 'GEOSWKBReader::readHEX' => + 'geoswkbreader::readhex' => array ( 0 => 'GEOSGeometry', 'wkb' => 'string', ), - 'GEOSWKBWriter::__construct' => + 'geoswkbwriter::__construct' => array ( 0 => 'void', ), - 'GEOSWKBWriter::getOutputDimension' => + 'geoswkbwriter::getoutputdimension' => array ( 0 => 'int', ), - 'GEOSWKBWriter::setOutputDimension' => + 'geoswkbwriter::setoutputdimension' => array ( 0 => 'void', 'dim' => 'int', ), - 'GEOSWKBWriter::getByteOrder' => + 'geoswkbwriter::getbyteorder' => array ( 0 => 'int', ), - 'GEOSWKBWriter::setByteOrder' => + 'geoswkbwriter::setbyteorder' => array ( 0 => 'void', 'byteOrder' => 'int', ), - 'GEOSWKBWriter::getIncludeSRID' => + 'geoswkbwriter::getincludesrid' => array ( 0 => 'bool', ), - 'GEOSWKBWriter::setIncludeSRID' => + 'geoswkbwriter::setincludesrid' => array ( 0 => 'void', 'inc' => 'bool', ), - 'GEOSWKBWriter::write' => + 'geoswkbwriter::write' => array ( 0 => 'string', 'geom' => 'GEOSGeometry', ), - 'GEOSWKBWriter::writeHEX' => + 'geoswkbwriter::writehex' => array ( 0 => 'string', 'geom' => 'GEOSGeometry', ), - 'GEOSWKTReader::__construct' => + 'geoswktreader::__construct' => array ( 0 => 'void', ), - 'GEOSWKTReader::read' => + 'geoswktreader::read' => array ( 0 => 'GEOSGeometry', 'wkt' => 'string', ), - 'GEOSWKTWriter::__construct' => + 'geoswktwriter::__construct' => array ( 0 => 'void', ), - 'GEOSWKTWriter::write' => + 'geoswktwriter::write' => array ( 0 => 'string', 'geom' => 'GEOSGeometry', ), - 'GEOSWKTWriter::setTrim' => + 'geoswktwriter::settrim' => array ( 0 => 'void', 'trim' => 'bool', ), - 'GEOSWKTWriter::setRoundingPrecision' => + 'geoswktwriter::setroundingprecision' => array ( 0 => 'void', 'prec' => 'int', ), - 'GEOSWKTWriter::setOutputDimension' => + 'geoswktwriter::setoutputdimension' => array ( 0 => 'void', 'dim' => 'int', ), - 'GEOSWKTWriter::getOutputDimension' => + 'geoswktwriter::getoutputdimension' => array ( 0 => 'int', ), - 'GEOSWKTWriter::setOld3D' => + 'geoswktwriter::setold3d' => array ( 0 => 'void', 'val' => 'bool', @@ -17316,186 +17316,186 @@ 'pattern' => 'string', 'flags=' => 'int<0, max>', ), - 'GlobIterator::__construct' => + 'globiterator::__construct' => array ( 0 => 'void', 'pattern' => 'string', 'flags=' => 'int', ), - 'GlobIterator::count' => + 'globiterator::count' => array ( 0 => 'int', ), - 'GlobIterator::current' => + 'globiterator::current' => array ( 0 => 'FilesystemIterator|SplFileInfo|string', ), - 'GlobIterator::getATime' => + 'globiterator::getatime' => array ( 0 => 'int', ), - 'GlobIterator::getBasename' => + 'globiterator::getbasename' => array ( 0 => 'string', 'suffix=' => 'string', ), - 'GlobIterator::getCTime' => + 'globiterator::getctime' => array ( 0 => 'int', ), - 'GlobIterator::getExtension' => + 'globiterator::getextension' => array ( 0 => 'string', ), - 'GlobIterator::getFileInfo' => + 'globiterator::getfileinfo' => array ( 0 => 'SplFileInfo', 'class=' => 'class-string|null', ), - 'GlobIterator::getFilename' => + 'globiterator::getfilename' => array ( 0 => 'string', ), - 'GlobIterator::getFlags' => + 'globiterator::getflags' => array ( 0 => 'int', ), - 'GlobIterator::getGroup' => + 'globiterator::getgroup' => array ( 0 => 'int', ), - 'GlobIterator::getInode' => + 'globiterator::getinode' => array ( 0 => 'int', ), - 'GlobIterator::getLinkTarget' => + 'globiterator::getlinktarget' => array ( 0 => 'false|string', ), - 'GlobIterator::getMTime' => + 'globiterator::getmtime' => array ( 0 => 'int', ), - 'GlobIterator::getOwner' => + 'globiterator::getowner' => array ( 0 => 'int', ), - 'GlobIterator::getPath' => + 'globiterator::getpath' => array ( 0 => 'string', ), - 'GlobIterator::getPathInfo' => + 'globiterator::getpathinfo' => array ( 0 => 'SplFileInfo|null', 'class=' => 'class-string|null', ), - 'GlobIterator::getPathname' => + 'globiterator::getpathname' => array ( 0 => 'string', ), - 'GlobIterator::getPerms' => + 'globiterator::getperms' => array ( 0 => 'int', ), - 'GlobIterator::getRealPath' => + 'globiterator::getrealpath' => array ( 0 => 'false|non-falsy-string', ), - 'GlobIterator::getSize' => + 'globiterator::getsize' => array ( 0 => 'int', ), - 'GlobIterator::getType' => + 'globiterator::gettype' => array ( 0 => 'false|string', ), - 'GlobIterator::isDir' => + 'globiterator::isdir' => array ( 0 => 'bool', ), - 'GlobIterator::isDot' => + 'globiterator::isdot' => array ( 0 => 'bool', ), - 'GlobIterator::isExecutable' => + 'globiterator::isexecutable' => array ( 0 => 'bool', ), - 'GlobIterator::isFile' => + 'globiterator::isfile' => array ( 0 => 'bool', ), - 'GlobIterator::isLink' => + 'globiterator::islink' => array ( 0 => 'bool', ), - 'GlobIterator::isReadable' => + 'globiterator::isreadable' => array ( 0 => 'bool', ), - 'GlobIterator::isWritable' => + 'globiterator::iswritable' => array ( 0 => 'bool', ), - 'GlobIterator::key' => + 'globiterator::key' => array ( 0 => 'string', ), - 'GlobIterator::next' => + 'globiterator::next' => array ( 0 => 'void', ), - 'GlobIterator::openFile' => + 'globiterator::openfile' => array ( 0 => 'SplFileObject', 'mode=' => 'string', 'useIncludePath=' => 'bool', 'context=' => 'null|resource', ), - 'GlobIterator::rewind' => + 'globiterator::rewind' => array ( 0 => 'void', ), - 'GlobIterator::seek' => + 'globiterator::seek' => array ( 0 => 'void', 'offset' => 'int', ), - 'GlobIterator::setFileClass' => + 'globiterator::setfileclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'GlobIterator::setFlags' => + 'globiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'GlobIterator::setInfoClass' => + 'globiterator::setinfoclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'GlobIterator::valid' => + 'globiterator::valid' => array ( 0 => 'bool', ), - 'Gmagick::__construct' => + 'gmagick::__construct' => array ( 0 => 'void', 'filename=' => 'string', ), - 'Gmagick::addimage' => + 'gmagick::addimage' => array ( 0 => 'Gmagick', 'gmagick' => 'gmagick', ), - 'Gmagick::addnoiseimage' => + 'gmagick::addnoiseimage' => array ( 0 => 'Gmagick', 'noise' => 'int', ), - 'Gmagick::annotateimage' => + 'gmagick::annotateimage' => array ( 0 => 'Gmagick', 'gmagickdraw' => 'gmagickdraw', @@ -17504,27 +17504,27 @@ 'angle' => 'float', 'text' => 'string', ), - 'Gmagick::blurimage' => + 'gmagick::blurimage' => array ( 0 => 'Gmagick', 'radius' => 'float', 'sigma' => 'float', 'channel=' => 'int', ), - 'Gmagick::borderimage' => + 'gmagick::borderimage' => array ( 0 => 'Gmagick', 'color' => 'gmagickpixel', 'width' => 'int', 'height' => 'int', ), - 'Gmagick::charcoalimage' => + 'gmagick::charcoalimage' => array ( 0 => 'Gmagick', 'radius' => 'float', 'sigma' => 'float', ), - 'Gmagick::chopimage' => + 'gmagick::chopimage' => array ( 0 => 'Gmagick', 'width' => 'int', @@ -17532,16 +17532,16 @@ 'x' => 'int', 'y' => 'int', ), - 'Gmagick::clear' => + 'gmagick::clear' => array ( 0 => 'Gmagick', ), - 'Gmagick::commentimage' => + 'gmagick::commentimage' => array ( 0 => 'Gmagick', 'comment' => 'string', ), - 'Gmagick::compositeimage' => + 'gmagick::compositeimage' => array ( 0 => 'Gmagick', 'source' => 'gmagick', @@ -17549,7 +17549,7 @@ 'x' => 'int', 'y' => 'int', ), - 'Gmagick::cropimage' => + 'gmagick::cropimage' => array ( 0 => 'Gmagick', 'width' => 'int', @@ -17557,66 +17557,66 @@ 'x' => 'int', 'y' => 'int', ), - 'Gmagick::cropthumbnailimage' => + 'gmagick::cropthumbnailimage' => array ( 0 => 'Gmagick', 'width' => 'int', 'height' => 'int', ), - 'Gmagick::current' => + 'gmagick::current' => array ( 0 => 'Gmagick', ), - 'Gmagick::cyclecolormapimage' => + 'gmagick::cyclecolormapimage' => array ( 0 => 'Gmagick', 'displace' => 'int', ), - 'Gmagick::deconstructimages' => + 'gmagick::deconstructimages' => array ( 0 => 'Gmagick', ), - 'Gmagick::despeckleimage' => + 'gmagick::despeckleimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::destroy' => + 'gmagick::destroy' => array ( 0 => 'bool', ), - 'Gmagick::drawimage' => + 'gmagick::drawimage' => array ( 0 => 'Gmagick', 'gmagickdraw' => 'gmagickdraw', ), - 'Gmagick::edgeimage' => + 'gmagick::edgeimage' => array ( 0 => 'Gmagick', 'radius' => 'float', ), - 'Gmagick::embossimage' => + 'gmagick::embossimage' => array ( 0 => 'Gmagick', 'radius' => 'float', 'sigma' => 'float', ), - 'Gmagick::enhanceimage' => + 'gmagick::enhanceimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::equalizeimage' => + 'gmagick::equalizeimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::flipimage' => + 'gmagick::flipimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::flopimage' => + 'gmagick::flopimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::frameimage' => + 'gmagick::frameimage' => array ( 0 => 'Gmagick', 'color' => 'gmagickpixel', @@ -17625,192 +17625,192 @@ 'inner_bevel' => 'int', 'outer_bevel' => 'int', ), - 'Gmagick::gammaimage' => + 'gmagick::gammaimage' => array ( 0 => 'Gmagick', 'gamma' => 'float', ), - 'Gmagick::getcopyright' => + 'gmagick::getcopyright' => array ( 0 => 'string', ), - 'Gmagick::getfilename' => + 'gmagick::getfilename' => array ( 0 => 'string', ), - 'Gmagick::getimagebackgroundcolor' => + 'gmagick::getimagebackgroundcolor' => array ( 0 => 'GmagickPixel', ), - 'Gmagick::getimageblueprimary' => + 'gmagick::getimageblueprimary' => array ( 0 => 'array', ), - 'Gmagick::getimagebordercolor' => + 'gmagick::getimagebordercolor' => array ( 0 => 'GmagickPixel', ), - 'Gmagick::getimagechanneldepth' => + 'gmagick::getimagechanneldepth' => array ( 0 => 'int', 'channel_type' => 'int', ), - 'Gmagick::getimagecolors' => + 'gmagick::getimagecolors' => array ( 0 => 'int', ), - 'Gmagick::getimagecolorspace' => + 'gmagick::getimagecolorspace' => array ( 0 => 'int', ), - 'Gmagick::getimagecompose' => + 'gmagick::getimagecompose' => array ( 0 => 'int', ), - 'Gmagick::getimagedelay' => + 'gmagick::getimagedelay' => array ( 0 => 'int', ), - 'Gmagick::getimagedepth' => + 'gmagick::getimagedepth' => array ( 0 => 'int', ), - 'Gmagick::getimagedispose' => + 'gmagick::getimagedispose' => array ( 0 => 'int', ), - 'Gmagick::getimageextrema' => + 'gmagick::getimageextrema' => array ( 0 => 'array', ), - 'Gmagick::getimagefilename' => + 'gmagick::getimagefilename' => array ( 0 => 'string', ), - 'Gmagick::getimageformat' => + 'gmagick::getimageformat' => array ( 0 => 'string', ), - 'Gmagick::getimagegamma' => + 'gmagick::getimagegamma' => array ( 0 => 'float', ), - 'Gmagick::getimagegreenprimary' => + 'gmagick::getimagegreenprimary' => array ( 0 => 'array', ), - 'Gmagick::getimageheight' => + 'gmagick::getimageheight' => array ( 0 => 'int', ), - 'Gmagick::getimagehistogram' => + 'gmagick::getimagehistogram' => array ( 0 => 'array', ), - 'Gmagick::getimageindex' => + 'gmagick::getimageindex' => array ( 0 => 'int', ), - 'Gmagick::getimageinterlacescheme' => + 'gmagick::getimageinterlacescheme' => array ( 0 => 'int', ), - 'Gmagick::getimageiterations' => + 'gmagick::getimageiterations' => array ( 0 => 'int', ), - 'Gmagick::getimagematte' => + 'gmagick::getimagematte' => array ( 0 => 'int', ), - 'Gmagick::getimagemattecolor' => + 'gmagick::getimagemattecolor' => array ( 0 => 'GmagickPixel', ), - 'Gmagick::getimageprofile' => + 'gmagick::getimageprofile' => array ( 0 => 'string', 'name' => 'string', ), - 'Gmagick::getimageredprimary' => + 'gmagick::getimageredprimary' => array ( 0 => 'array', ), - 'Gmagick::getimagerenderingintent' => + 'gmagick::getimagerenderingintent' => array ( 0 => 'int', ), - 'Gmagick::getimageresolution' => + 'gmagick::getimageresolution' => array ( 0 => 'array', ), - 'Gmagick::getimagescene' => + 'gmagick::getimagescene' => array ( 0 => 'int', ), - 'Gmagick::getimagesignature' => + 'gmagick::getimagesignature' => array ( 0 => 'string', ), - 'Gmagick::getimagetype' => + 'gmagick::getimagetype' => array ( 0 => 'int', ), - 'Gmagick::getimageunits' => + 'gmagick::getimageunits' => array ( 0 => 'int', ), - 'Gmagick::getimagewhitepoint' => + 'gmagick::getimagewhitepoint' => array ( 0 => 'array', ), - 'Gmagick::getimagewidth' => + 'gmagick::getimagewidth' => array ( 0 => 'int', ), - 'Gmagick::getpackagename' => + 'gmagick::getpackagename' => array ( 0 => 'string', ), - 'Gmagick::getquantumdepth' => + 'gmagick::getquantumdepth' => array ( 0 => 'array', ), - 'Gmagick::getreleasedate' => + 'gmagick::getreleasedate' => array ( 0 => 'string', ), - 'Gmagick::getsamplingfactors' => + 'gmagick::getsamplingfactors' => array ( 0 => 'array', ), - 'Gmagick::getsize' => + 'gmagick::getsize' => array ( 0 => 'array', ), - 'Gmagick::getversion' => + 'gmagick::getversion' => array ( 0 => 'array', ), - 'Gmagick::hasnextimage' => + 'gmagick::hasnextimage' => array ( 0 => 'bool', ), - 'Gmagick::haspreviousimage' => + 'gmagick::haspreviousimage' => array ( 0 => 'bool', ), - 'Gmagick::implodeimage' => + 'gmagick::implodeimage' => array ( 0 => 'mixed', 'radius' => 'float', ), - 'Gmagick::labelimage' => + 'gmagick::labelimage' => array ( 0 => 'mixed', 'label' => 'string', ), - 'Gmagick::levelimage' => + 'gmagick::levelimage' => array ( 0 => 'mixed', 'blackpoint' => 'float', @@ -17818,40 +17818,40 @@ 'whitepoint' => 'float', 'channel=' => 'int', ), - 'Gmagick::magnifyimage' => + 'gmagick::magnifyimage' => array ( 0 => 'mixed', ), - 'Gmagick::mapimage' => + 'gmagick::mapimage' => array ( 0 => 'Gmagick', 'gmagick' => 'gmagick', 'dither' => 'bool', ), - 'Gmagick::medianfilterimage' => + 'gmagick::medianfilterimage' => array ( 0 => 'void', 'radius' => 'float', ), - 'Gmagick::minifyimage' => + 'gmagick::minifyimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::modulateimage' => + 'gmagick::modulateimage' => array ( 0 => 'Gmagick', 'brightness' => 'float', 'saturation' => 'float', 'hue' => 'float', ), - 'Gmagick::motionblurimage' => + 'gmagick::motionblurimage' => array ( 0 => 'Gmagick', 'radius' => 'float', 'sigma' => 'float', 'angle' => 'float', ), - 'Gmagick::newimage' => + 'gmagick::newimage' => array ( 0 => 'Gmagick', 'width' => 'int', @@ -17859,31 +17859,31 @@ 'background' => 'string', 'format=' => 'string', ), - 'Gmagick::nextimage' => + 'gmagick::nextimage' => array ( 0 => 'bool', ), - 'Gmagick::normalizeimage' => + 'gmagick::normalizeimage' => array ( 0 => 'Gmagick', 'channel=' => 'int', ), - 'Gmagick::oilpaintimage' => + 'gmagick::oilpaintimage' => array ( 0 => 'Gmagick', 'radius' => 'float', ), - 'Gmagick::previousimage' => + 'gmagick::previousimage' => array ( 0 => 'bool', ), - 'Gmagick::profileimage' => + 'gmagick::profileimage' => array ( 0 => 'Gmagick', 'name' => 'string', 'profile' => 'string', ), - 'Gmagick::quantizeimage' => + 'gmagick::quantizeimage' => array ( 0 => 'Gmagick', 'numcolors' => 'int', @@ -17892,7 +17892,7 @@ 'dither' => 'bool', 'measureerror' => 'bool', ), - 'Gmagick::quantizeimages' => + 'gmagick::quantizeimages' => array ( 0 => 'Gmagick', 'numcolors' => 'int', @@ -17901,29 +17901,29 @@ 'dither' => 'bool', 'measureerror' => 'bool', ), - 'Gmagick::queryfontmetrics' => + 'gmagick::queryfontmetrics' => array ( 0 => 'array', 'draw' => 'gmagickdraw', 'text' => 'string', ), - 'Gmagick::queryfonts' => + 'gmagick::queryfonts' => array ( 0 => 'array', 'pattern=' => 'string', ), - 'Gmagick::queryformats' => + 'gmagick::queryformats' => array ( 0 => 'array', 'pattern=' => 'string', ), - 'Gmagick::radialblurimage' => + 'gmagick::radialblurimage' => array ( 0 => 'Gmagick', 'angle' => 'float', 'channel=' => 'int', ), - 'Gmagick::raiseimage' => + 'gmagick::raiseimage' => array ( 0 => 'Gmagick', 'width' => 'int', @@ -17932,43 +17932,43 @@ 'y' => 'int', 'raise' => 'bool', ), - 'Gmagick::read' => + 'gmagick::read' => array ( 0 => 'Gmagick', 'filename' => 'string', ), - 'Gmagick::readimage' => + 'gmagick::readimage' => array ( 0 => 'Gmagick', 'filename' => 'string', ), - 'Gmagick::readimageblob' => + 'gmagick::readimageblob' => array ( 0 => 'Gmagick', 'imagecontents' => 'string', 'filename=' => 'string', ), - 'Gmagick::readimagefile' => + 'gmagick::readimagefile' => array ( 0 => 'Gmagick', 'fp' => 'resource', 'filename=' => 'string', ), - 'Gmagick::reducenoiseimage' => + 'gmagick::reducenoiseimage' => array ( 0 => 'Gmagick', 'radius' => 'float', ), - 'Gmagick::removeimage' => + 'gmagick::removeimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::removeimageprofile' => + 'gmagick::removeimageprofile' => array ( 0 => 'string', 'name' => 'string', ), - 'Gmagick::resampleimage' => + 'gmagick::resampleimage' => array ( 0 => 'Gmagick', 'xresolution' => 'float', @@ -17976,7 +17976,7 @@ 'filter' => 'int', 'blur' => 'float', ), - 'Gmagick::resizeimage' => + 'gmagick::resizeimage' => array ( 0 => 'Gmagick', 'width' => 'int', @@ -17985,235 +17985,235 @@ 'blur' => 'float', 'fit=' => 'bool', ), - 'Gmagick::rollimage' => + 'gmagick::rollimage' => array ( 0 => 'Gmagick', 'x' => 'int', 'y' => 'int', ), - 'Gmagick::rotateimage' => + 'gmagick::rotateimage' => array ( 0 => 'Gmagick', 'color' => 'mixed', 'degrees' => 'float', ), - 'Gmagick::scaleimage' => + 'gmagick::scaleimage' => array ( 0 => 'Gmagick', 'width' => 'int', 'height' => 'int', 'fit=' => 'bool', ), - 'Gmagick::separateimagechannel' => + 'gmagick::separateimagechannel' => array ( 0 => 'Gmagick', 'channel' => 'int', ), - 'Gmagick::setCompressionQuality' => + 'gmagick::setcompressionquality' => array ( 0 => 'Gmagick', 'quality' => 'int', ), - 'Gmagick::setfilename' => + 'gmagick::setfilename' => array ( 0 => 'Gmagick', 'filename' => 'string', ), - 'Gmagick::setimagebackgroundcolor' => + 'gmagick::setimagebackgroundcolor' => array ( 0 => 'Gmagick', 'color' => 'gmagickpixel', ), - 'Gmagick::setimageblueprimary' => + 'gmagick::setimageblueprimary' => array ( 0 => 'Gmagick', 'x' => 'float', 'y' => 'float', ), - 'Gmagick::setimagebordercolor' => + 'gmagick::setimagebordercolor' => array ( 0 => 'Gmagick', 'color' => 'gmagickpixel', ), - 'Gmagick::setimagechanneldepth' => + 'gmagick::setimagechanneldepth' => array ( 0 => 'Gmagick', 'channel' => 'int', 'depth' => 'int', ), - 'Gmagick::setimagecolorspace' => + 'gmagick::setimagecolorspace' => array ( 0 => 'Gmagick', 'colorspace' => 'int', ), - 'Gmagick::setimagecompose' => + 'gmagick::setimagecompose' => array ( 0 => 'Gmagick', 'composite' => 'int', ), - 'Gmagick::setimagedelay' => + 'gmagick::setimagedelay' => array ( 0 => 'Gmagick', 'delay' => 'int', ), - 'Gmagick::setimagedepth' => + 'gmagick::setimagedepth' => array ( 0 => 'Gmagick', 'depth' => 'int', ), - 'Gmagick::setimagedispose' => + 'gmagick::setimagedispose' => array ( 0 => 'Gmagick', 'disposetype' => 'int', ), - 'Gmagick::setimagefilename' => + 'gmagick::setimagefilename' => array ( 0 => 'Gmagick', 'filename' => 'string', ), - 'Gmagick::setimageformat' => + 'gmagick::setimageformat' => array ( 0 => 'Gmagick', 'imageformat' => 'string', ), - 'Gmagick::setimagegamma' => + 'gmagick::setimagegamma' => array ( 0 => 'Gmagick', 'gamma' => 'float', ), - 'Gmagick::setimagegreenprimary' => + 'gmagick::setimagegreenprimary' => array ( 0 => 'Gmagick', 'x' => 'float', 'y' => 'float', ), - 'Gmagick::setimageindex' => + 'gmagick::setimageindex' => array ( 0 => 'Gmagick', 'index' => 'int', ), - 'Gmagick::setimageinterlacescheme' => + 'gmagick::setimageinterlacescheme' => array ( 0 => 'Gmagick', 'interlace' => 'int', ), - 'Gmagick::setimageiterations' => + 'gmagick::setimageiterations' => array ( 0 => 'Gmagick', 'iterations' => 'int', ), - 'Gmagick::setimageprofile' => + 'gmagick::setimageprofile' => array ( 0 => 'Gmagick', 'name' => 'string', 'profile' => 'string', ), - 'Gmagick::setimageredprimary' => + 'gmagick::setimageredprimary' => array ( 0 => 'Gmagick', 'x' => 'float', 'y' => 'float', ), - 'Gmagick::setimagerenderingintent' => + 'gmagick::setimagerenderingintent' => array ( 0 => 'Gmagick', 'rendering_intent' => 'int', ), - 'Gmagick::setimageresolution' => + 'gmagick::setimageresolution' => array ( 0 => 'Gmagick', 'xresolution' => 'float', 'yresolution' => 'float', ), - 'Gmagick::setimagescene' => + 'gmagick::setimagescene' => array ( 0 => 'Gmagick', 'scene' => 'int', ), - 'Gmagick::setimagetype' => + 'gmagick::setimagetype' => array ( 0 => 'Gmagick', 'imgtype' => 'int', ), - 'Gmagick::setimageunits' => + 'gmagick::setimageunits' => array ( 0 => 'Gmagick', 'resolution' => 'int', ), - 'Gmagick::setimagewhitepoint' => + 'gmagick::setimagewhitepoint' => array ( 0 => 'Gmagick', 'x' => 'float', 'y' => 'float', ), - 'Gmagick::setsamplingfactors' => + 'gmagick::setsamplingfactors' => array ( 0 => 'Gmagick', 'factors' => 'array', ), - 'Gmagick::setsize' => + 'gmagick::setsize' => array ( 0 => 'Gmagick', 'columns' => 'int', 'rows' => 'int', ), - 'Gmagick::shearimage' => + 'gmagick::shearimage' => array ( 0 => 'Gmagick', 'color' => 'mixed', 'xshear' => 'float', 'yshear' => 'float', ), - 'Gmagick::solarizeimage' => + 'gmagick::solarizeimage' => array ( 0 => 'Gmagick', 'threshold' => 'int', ), - 'Gmagick::spreadimage' => + 'gmagick::spreadimage' => array ( 0 => 'Gmagick', 'radius' => 'float', ), - 'Gmagick::stripimage' => + 'gmagick::stripimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::swirlimage' => + 'gmagick::swirlimage' => array ( 0 => 'Gmagick', 'degrees' => 'float', ), - 'Gmagick::thumbnailimage' => + 'gmagick::thumbnailimage' => array ( 0 => 'Gmagick', 'width' => 'int', 'height' => 'int', 'fit=' => 'bool', ), - 'Gmagick::trimimage' => + 'gmagick::trimimage' => array ( 0 => 'Gmagick', 'fuzz' => 'float', ), - 'Gmagick::write' => + 'gmagick::write' => array ( 0 => 'Gmagick', 'filename' => 'string', ), - 'Gmagick::writeimage' => + 'gmagick::writeimage' => array ( 0 => 'Gmagick', 'filename' => 'string', 'all_frames=' => 'bool', ), - 'GmagickDraw::annotate' => + 'gmagickdraw::annotate' => array ( 0 => 'GmagickDraw', 'x' => 'float', 'y' => 'float', 'text' => 'string', ), - 'GmagickDraw::arc' => + 'gmagickdraw::arc' => array ( 0 => 'GmagickDraw', 'sx' => 'float', @@ -18223,12 +18223,12 @@ 'sd' => 'float', 'ed' => 'float', ), - 'GmagickDraw::bezier' => + 'gmagickdraw::bezier' => array ( 0 => 'GmagickDraw', 'coordinate_array' => 'array', ), - 'GmagickDraw::ellipse' => + 'gmagickdraw::ellipse' => array ( 0 => 'GmagickDraw', 'ox' => 'float', @@ -18238,51 +18238,51 @@ 'start' => 'float', 'end' => 'float', ), - 'GmagickDraw::getfillcolor' => + 'gmagickdraw::getfillcolor' => array ( 0 => 'GmagickPixel', ), - 'GmagickDraw::getfillopacity' => + 'gmagickdraw::getfillopacity' => array ( 0 => 'float', ), - 'GmagickDraw::getfont' => + 'gmagickdraw::getfont' => array ( 0 => 'false|string', ), - 'GmagickDraw::getfontsize' => + 'gmagickdraw::getfontsize' => array ( 0 => 'float', ), - 'GmagickDraw::getfontstyle' => + 'gmagickdraw::getfontstyle' => array ( 0 => 'int', ), - 'GmagickDraw::getfontweight' => + 'gmagickdraw::getfontweight' => array ( 0 => 'int', ), - 'GmagickDraw::getstrokecolor' => + 'gmagickdraw::getstrokecolor' => array ( 0 => 'GmagickPixel', ), - 'GmagickDraw::getstrokeopacity' => + 'gmagickdraw::getstrokeopacity' => array ( 0 => 'float', ), - 'GmagickDraw::getstrokewidth' => + 'gmagickdraw::getstrokewidth' => array ( 0 => 'float', ), - 'GmagickDraw::gettextdecoration' => + 'gmagickdraw::gettextdecoration' => array ( 0 => 'int', ), - 'GmagickDraw::gettextencoding' => + 'gmagickdraw::gettextencoding' => array ( 0 => 'false|string', ), - 'GmagickDraw::line' => + 'gmagickdraw::line' => array ( 0 => 'GmagickDraw', 'sx' => 'float', @@ -18290,23 +18290,23 @@ 'ex' => 'float', 'ey' => 'float', ), - 'GmagickDraw::point' => + 'gmagickdraw::point' => array ( 0 => 'GmagickDraw', 'x' => 'float', 'y' => 'float', ), - 'GmagickDraw::polygon' => + 'gmagickdraw::polygon' => array ( 0 => 'GmagickDraw', 'coordinates' => 'array', ), - 'GmagickDraw::polyline' => + 'gmagickdraw::polyline' => array ( 0 => 'GmagickDraw', 'coordinate_array' => 'array', ), - 'GmagickDraw::rectangle' => + 'gmagickdraw::rectangle' => array ( 0 => 'GmagickDraw', 'x1' => 'float', @@ -18314,12 +18314,12 @@ 'x2' => 'float', 'y2' => 'float', ), - 'GmagickDraw::rotate' => + 'gmagickdraw::rotate' => array ( 0 => 'GmagickDraw', 'degrees' => 'float', ), - 'GmagickDraw::roundrectangle' => + 'gmagickdraw::roundrectangle' => array ( 0 => 'GmagickDraw', 'x1' => 'float', @@ -18329,93 +18329,93 @@ 'rx' => 'float', 'ry' => 'float', ), - 'GmagickDraw::scale' => + 'gmagickdraw::scale' => array ( 0 => 'GmagickDraw', 'x' => 'float', 'y' => 'float', ), - 'GmagickDraw::setfillcolor' => + 'gmagickdraw::setfillcolor' => array ( 0 => 'GmagickDraw', 'color' => 'string', ), - 'GmagickDraw::setfillopacity' => + 'gmagickdraw::setfillopacity' => array ( 0 => 'GmagickDraw', 'fill_opacity' => 'float', ), - 'GmagickDraw::setfont' => + 'gmagickdraw::setfont' => array ( 0 => 'GmagickDraw', 'font' => 'string', ), - 'GmagickDraw::setfontsize' => + 'gmagickdraw::setfontsize' => array ( 0 => 'GmagickDraw', 'pointsize' => 'float', ), - 'GmagickDraw::setfontstyle' => + 'gmagickdraw::setfontstyle' => array ( 0 => 'GmagickDraw', 'style' => 'int', ), - 'GmagickDraw::setfontweight' => + 'gmagickdraw::setfontweight' => array ( 0 => 'GmagickDraw', 'weight' => 'int', ), - 'GmagickDraw::setstrokecolor' => + 'gmagickdraw::setstrokecolor' => array ( 0 => 'GmagickDraw', 'color' => 'gmagickpixel', ), - 'GmagickDraw::setstrokeopacity' => + 'gmagickdraw::setstrokeopacity' => array ( 0 => 'GmagickDraw', 'stroke_opacity' => 'float', ), - 'GmagickDraw::setstrokewidth' => + 'gmagickdraw::setstrokewidth' => array ( 0 => 'GmagickDraw', 'width' => 'float', ), - 'GmagickDraw::settextdecoration' => + 'gmagickdraw::settextdecoration' => array ( 0 => 'GmagickDraw', 'decoration' => 'int', ), - 'GmagickDraw::settextencoding' => + 'gmagickdraw::settextencoding' => array ( 0 => 'GmagickDraw', 'encoding' => 'string', ), - 'GmagickPixel::__construct' => + 'gmagickpixel::__construct' => array ( 0 => 'void', 'color=' => 'string', ), - 'GmagickPixel::getcolor' => + 'gmagickpixel::getcolor' => array ( 0 => 'mixed', 'as_array=' => 'bool', 'normalize_array=' => 'bool', ), - 'GmagickPixel::getcolorcount' => + 'gmagickpixel::getcolorcount' => array ( 0 => 'int', ), - 'GmagickPixel::getcolorvalue' => + 'gmagickpixel::getcolorvalue' => array ( 0 => 'float', 'color' => 'int', ), - 'GmagickPixel::setcolor' => + 'gmagickpixel::setcolor' => array ( 0 => 'GmagickPixel', 'color' => 'string', ), - 'GmagickPixel::setcolorvalue' => + 'gmagickpixel::setcolorvalue' => array ( 0 => 'GmagickPixel', 'color' => 'int', @@ -18437,11 +18437,11 @@ 'day=' => 'int|null', 'year=' => 'int|null', ), - 'GMP::__serialize' => + 'gmp::__serialize' => array ( 0 => 'array', ), - 'GMP::__unserialize' => + 'gmp::__unserialize' => array ( 0 => 'void', 'data' => 'array', @@ -19051,13 +19051,13 @@ 'day' => 'int', 'year' => 'int', ), - 'gridObj::set' => + 'gridobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'Grpc\\Call::__construct' => + 'grpc\\call::__construct' => array ( 0 => 'void', 'channel' => 'Grpc\\Channel', @@ -19065,164 +19065,164 @@ 'absolute_deadline' => 'Grpc\\Timeval', 'host_override=' => 'mixed', ), - 'Grpc\\Call::cancel' => + 'grpc\\call::cancel' => array ( 0 => 'mixed', ), - 'Grpc\\Call::getPeer' => + 'grpc\\call::getpeer' => array ( 0 => 'string', ), - 'Grpc\\Call::setCredentials' => + 'grpc\\call::setcredentials' => array ( 0 => 'int', 'creds_obj' => 'Grpc\\CallCredentials', ), - 'Grpc\\Call::startBatch' => + 'grpc\\call::startbatch' => array ( 0 => 'object', 'batch' => 'array', ), - 'Grpc\\CallCredentials::createComposite' => + 'grpc\\callcredentials::createcomposite' => array ( 0 => 'Grpc\\CallCredentials', 'cred1' => 'Grpc\\CallCredentials', 'cred2' => 'Grpc\\CallCredentials', ), - 'Grpc\\CallCredentials::createFromPlugin' => + 'grpc\\callcredentials::createfromplugin' => array ( 0 => 'Grpc\\CallCredentials', 'callback' => 'Closure', ), - 'Grpc\\Channel::__construct' => + 'grpc\\channel::__construct' => array ( 0 => 'void', 'target' => 'string', 'args=' => 'array', ), - 'Grpc\\Channel::close' => + 'grpc\\channel::close' => array ( 0 => 'mixed', ), - 'Grpc\\Channel::getConnectivityState' => + 'grpc\\channel::getconnectivitystate' => array ( 0 => 'int', 'try_to_connect=' => 'bool', ), - 'Grpc\\Channel::getTarget' => + 'grpc\\channel::gettarget' => array ( 0 => 'string', ), - 'Grpc\\Channel::watchConnectivityState' => + 'grpc\\channel::watchconnectivitystate' => array ( 0 => 'bool', 'last_state' => 'int', 'deadline_obj' => 'Grpc\\Timeval', ), - 'Grpc\\ChannelCredentials::createComposite' => + 'grpc\\channelcredentials::createcomposite' => array ( 0 => 'Grpc\\ChannelCredentials', 'cred1' => 'Grpc\\ChannelCredentials', 'cred2' => 'Grpc\\CallCredentials', ), - 'Grpc\\ChannelCredentials::createDefault' => + 'grpc\\channelcredentials::createdefault' => array ( 0 => 'Grpc\\ChannelCredentials', ), - 'Grpc\\ChannelCredentials::createInsecure' => + 'grpc\\channelcredentials::createinsecure' => array ( 0 => 'null', ), - 'Grpc\\ChannelCredentials::createSsl' => + 'grpc\\channelcredentials::createssl' => array ( 0 => 'Grpc\\ChannelCredentials', 'pem_root_certs' => 'string', 'pem_private_key=' => 'string', 'pem_cert_chain=' => 'string', ), - 'Grpc\\ChannelCredentials::setDefaultRootsPem' => + 'grpc\\channelcredentials::setdefaultrootspem' => array ( 0 => 'mixed', 'pem_roots' => 'string', ), - 'Grpc\\Server::__construct' => + 'grpc\\server::__construct' => array ( 0 => 'void', 'args' => 'array', ), - 'Grpc\\Server::addHttp2Port' => + 'grpc\\server::addhttp2port' => array ( 0 => 'bool', 'addr' => 'string', ), - 'Grpc\\Server::addSecureHttp2Port' => + 'grpc\\server::addsecurehttp2port' => array ( 0 => 'bool', 'addr' => 'string', 'creds_obj' => 'Grpc\\ServerCredentials', ), - 'Grpc\\Server::requestCall' => + 'grpc\\server::requestcall' => array ( 0 => 'mixed', 'tag_new' => 'int', 'tag_cancel' => 'int', ), - 'Grpc\\Server::start' => + 'grpc\\server::start' => array ( 0 => 'mixed', ), - 'Grpc\\ServerCredentials::createSsl' => + 'grpc\\servercredentials::createssl' => array ( 0 => 'object', 'pem_root_certs' => 'string', 'pem_private_key' => 'string', 'pem_cert_chain' => 'string', ), - 'Grpc\\Timeval::__construct' => + 'grpc\\timeval::__construct' => array ( 0 => 'void', 'usec' => 'int', ), - 'Grpc\\Timeval::add' => + 'grpc\\timeval::add' => array ( 0 => 'Grpc\\Timeval', 'other' => 'Grpc\\Timeval', ), - 'Grpc\\Timeval::compare' => + 'grpc\\timeval::compare' => array ( 0 => 'int', 'a' => 'Grpc\\Timeval', 'b' => 'Grpc\\Timeval', ), - 'Grpc\\Timeval::infFuture' => + 'grpc\\timeval::inffuture' => array ( 0 => 'Grpc\\Timeval', ), - 'Grpc\\Timeval::infPast' => + 'grpc\\timeval::infpast' => array ( 0 => 'Grpc\\Timeval', ), - 'Grpc\\Timeval::now' => + 'grpc\\timeval::now' => array ( 0 => 'Grpc\\Timeval', ), - 'Grpc\\Timeval::similar' => + 'grpc\\timeval::similar' => array ( 0 => 'bool', 'a' => 'Grpc\\Timeval', 'b' => 'Grpc\\Timeval', 'threshold' => 'Grpc\\Timeval', ), - 'Grpc\\Timeval::sleepUntil' => + 'grpc\\timeval::sleepuntil' => array ( 0 => 'mixed', ), - 'Grpc\\Timeval::subtract' => + 'grpc\\timeval::subtract' => array ( 0 => 'Grpc\\Timeval', 'other' => 'Grpc\\Timeval', ), - 'Grpc\\Timeval::zero' => + 'grpc\\timeval::zero' => array ( 0 => 'Grpc\\Timeval', ), @@ -19588,52 +19588,52 @@ 'data' => 'string', 'length=' => 'int|null', ), - 'HaruAnnotation::setBorderStyle' => + 'haruannotation::setborderstyle' => array ( 0 => 'bool', 'width' => 'float', 'dash_on' => 'int', 'dash_off' => 'int', ), - 'HaruAnnotation::setHighlightMode' => + 'haruannotation::sethighlightmode' => array ( 0 => 'bool', 'mode' => 'int', ), - 'HaruAnnotation::setIcon' => + 'haruannotation::seticon' => array ( 0 => 'bool', 'icon' => 'int', ), - 'HaruAnnotation::setOpened' => + 'haruannotation::setopened' => array ( 0 => 'bool', 'opened' => 'bool', ), - 'HaruDestination::setFit' => + 'harudestination::setfit' => array ( 0 => 'bool', ), - 'HaruDestination::setFitB' => + 'harudestination::setfitb' => array ( 0 => 'bool', ), - 'HaruDestination::setFitBH' => + 'harudestination::setfitbh' => array ( 0 => 'bool', 'top' => 'float', ), - 'HaruDestination::setFitBV' => + 'harudestination::setfitbv' => array ( 0 => 'bool', 'left' => 'float', ), - 'HaruDestination::setFitH' => + 'harudestination::setfith' => array ( 0 => 'bool', 'top' => 'float', ), - 'HaruDestination::setFitR' => + 'harudestination::setfitr' => array ( 0 => 'bool', 'left' => 'float', @@ -19641,27 +19641,27 @@ 'right' => 'float', 'top' => 'float', ), - 'HaruDestination::setFitV' => + 'harudestination::setfitv' => array ( 0 => 'bool', 'left' => 'float', ), - 'HaruDestination::setXYZ' => + 'harudestination::setxyz' => array ( 0 => 'bool', 'left' => 'float', 'top' => 'float', 'zoom' => 'float', ), - 'HaruDoc::__construct' => + 'harudoc::__construct' => array ( 0 => 'void', ), - 'HaruDoc::addPage' => + 'harudoc::addpage' => array ( 0 => 'object', ), - 'HaruDoc::addPageLabel' => + 'harudoc::addpagelabel' => array ( 0 => 'bool', 'first_page' => 'int', @@ -19669,66 +19669,66 @@ 'first_num' => 'int', 'prefix=' => 'string', ), - 'HaruDoc::createOutline' => + 'harudoc::createoutline' => array ( 0 => 'object', 'title' => 'string', 'parent_outline=' => 'object', 'encoder=' => 'object', ), - 'HaruDoc::getCurrentEncoder' => + 'harudoc::getcurrentencoder' => array ( 0 => 'object', ), - 'HaruDoc::getCurrentPage' => + 'harudoc::getcurrentpage' => array ( 0 => 'object', ), - 'HaruDoc::getEncoder' => + 'harudoc::getencoder' => array ( 0 => 'object', 'encoding' => 'string', ), - 'HaruDoc::getFont' => + 'harudoc::getfont' => array ( 0 => 'object', 'fontname' => 'string', 'encoding=' => 'string', ), - 'HaruDoc::getInfoAttr' => + 'harudoc::getinfoattr' => array ( 0 => 'string', 'type' => 'int', ), - 'HaruDoc::getPageLayout' => + 'harudoc::getpagelayout' => array ( 0 => 'int', ), - 'HaruDoc::getPageMode' => + 'harudoc::getpagemode' => array ( 0 => 'int', ), - 'HaruDoc::getStreamSize' => + 'harudoc::getstreamsize' => array ( 0 => 'int', ), - 'HaruDoc::insertPage' => + 'harudoc::insertpage' => array ( 0 => 'object', 'page' => 'object', ), - 'HaruDoc::loadJPEG' => + 'harudoc::loadjpeg' => array ( 0 => 'object', 'filename' => 'string', ), - 'HaruDoc::loadPNG' => + 'harudoc::loadpng' => array ( 0 => 'object', 'filename' => 'string', 'deferred=' => 'bool', ), - 'HaruDoc::loadRaw' => + 'harudoc::loadraw' => array ( 0 => 'object', 'filename' => 'string', @@ -19736,74 +19736,74 @@ 'height' => 'int', 'color_space' => 'int', ), - 'HaruDoc::loadTTC' => + 'harudoc::loadttc' => array ( 0 => 'string', 'fontfile' => 'string', 'index' => 'int', 'embed=' => 'bool', ), - 'HaruDoc::loadTTF' => + 'harudoc::loadttf' => array ( 0 => 'string', 'fontfile' => 'string', 'embed=' => 'bool', ), - 'HaruDoc::loadType1' => + 'harudoc::loadtype1' => array ( 0 => 'string', 'afmfile' => 'string', 'pfmfile=' => 'string', ), - 'HaruDoc::output' => + 'harudoc::output' => array ( 0 => 'bool', ), - 'HaruDoc::readFromStream' => + 'harudoc::readfromstream' => array ( 0 => 'string', 'bytes' => 'int', ), - 'HaruDoc::resetError' => + 'harudoc::reseterror' => array ( 0 => 'bool', ), - 'HaruDoc::resetStream' => + 'harudoc::resetstream' => array ( 0 => 'bool', ), - 'HaruDoc::save' => + 'harudoc::save' => array ( 0 => 'bool', 'file' => 'string', ), - 'HaruDoc::saveToStream' => + 'harudoc::savetostream' => array ( 0 => 'bool', ), - 'HaruDoc::setCompressionMode' => + 'harudoc::setcompressionmode' => array ( 0 => 'bool', 'mode' => 'int', ), - 'HaruDoc::setCurrentEncoder' => + 'harudoc::setcurrentencoder' => array ( 0 => 'bool', 'encoding' => 'string', ), - 'HaruDoc::setEncryptionMode' => + 'harudoc::setencryptionmode' => array ( 0 => 'bool', 'mode' => 'int', 'key_len=' => 'int', ), - 'HaruDoc::setInfoAttr' => + 'harudoc::setinfoattr' => array ( 0 => 'bool', 'type' => 'int', 'info' => 'string', ), - 'HaruDoc::setInfoDateAttr' => + 'harudoc::setinfodateattr' => array ( 0 => 'bool', 'type' => 'int', @@ -19817,123 +19817,123 @@ 'off_hour' => 'int', 'off_min' => 'int', ), - 'HaruDoc::setOpenAction' => + 'harudoc::setopenaction' => array ( 0 => 'bool', 'destination' => 'object', ), - 'HaruDoc::setPageLayout' => + 'harudoc::setpagelayout' => array ( 0 => 'bool', 'layout' => 'int', ), - 'HaruDoc::setPageMode' => + 'harudoc::setpagemode' => array ( 0 => 'bool', 'mode' => 'int', ), - 'HaruDoc::setPagesConfiguration' => + 'harudoc::setpagesconfiguration' => array ( 0 => 'bool', 'page_per_pages' => 'int', ), - 'HaruDoc::setPassword' => + 'harudoc::setpassword' => array ( 0 => 'bool', 'owner_password' => 'string', 'user_password' => 'string', ), - 'HaruDoc::setPermission' => + 'harudoc::setpermission' => array ( 0 => 'bool', 'permission' => 'int', ), - 'HaruDoc::useCNSEncodings' => + 'harudoc::usecnsencodings' => array ( 0 => 'bool', ), - 'HaruDoc::useCNSFonts' => + 'harudoc::usecnsfonts' => array ( 0 => 'bool', ), - 'HaruDoc::useCNTEncodings' => + 'harudoc::usecntencodings' => array ( 0 => 'bool', ), - 'HaruDoc::useCNTFonts' => + 'harudoc::usecntfonts' => array ( 0 => 'bool', ), - 'HaruDoc::useJPEncodings' => + 'harudoc::usejpencodings' => array ( 0 => 'bool', ), - 'HaruDoc::useJPFonts' => + 'harudoc::usejpfonts' => array ( 0 => 'bool', ), - 'HaruDoc::useKREncodings' => + 'harudoc::usekrencodings' => array ( 0 => 'bool', ), - 'HaruDoc::useKRFonts' => + 'harudoc::usekrfonts' => array ( 0 => 'bool', ), - 'HaruEncoder::getByteType' => + 'haruencoder::getbytetype' => array ( 0 => 'int', 'text' => 'string', 'index' => 'int', ), - 'HaruEncoder::getType' => + 'haruencoder::gettype' => array ( 0 => 'int', ), - 'HaruEncoder::getUnicode' => + 'haruencoder::getunicode' => array ( 0 => 'int', 'character' => 'int', ), - 'HaruEncoder::getWritingMode' => + 'haruencoder::getwritingmode' => array ( 0 => 'int', ), - 'HaruFont::getAscent' => + 'harufont::getascent' => array ( 0 => 'int', ), - 'HaruFont::getCapHeight' => + 'harufont::getcapheight' => array ( 0 => 'int', ), - 'HaruFont::getDescent' => + 'harufont::getdescent' => array ( 0 => 'int', ), - 'HaruFont::getEncodingName' => + 'harufont::getencodingname' => array ( 0 => 'string', ), - 'HaruFont::getFontName' => + 'harufont::getfontname' => array ( 0 => 'string', ), - 'HaruFont::getTextWidth' => + 'harufont::gettextwidth' => array ( 0 => 'array', 'text' => 'string', ), - 'HaruFont::getUnicodeWidth' => + 'harufont::getunicodewidth' => array ( 0 => 'int', 'character' => 'int', ), - 'HaruFont::getXHeight' => + 'harufont::getxheight' => array ( 0 => 'int', ), - 'HaruFont::measureText' => + 'harufont::measuretext' => array ( 0 => 'int', 'text' => 'string', @@ -19943,27 +19943,27 @@ 'word_space' => 'float', 'word_wrap=' => 'bool', ), - 'HaruImage::getBitsPerComponent' => + 'haruimage::getbitspercomponent' => array ( 0 => 'int', ), - 'HaruImage::getColorSpace' => + 'haruimage::getcolorspace' => array ( 0 => 'string', ), - 'HaruImage::getHeight' => + 'haruimage::getheight' => array ( 0 => 'int', ), - 'HaruImage::getSize' => + 'haruimage::getsize' => array ( 0 => 'array', ), - 'HaruImage::getWidth' => + 'haruimage::getwidth' => array ( 0 => 'int', ), - 'HaruImage::setColorMask' => + 'haruimage::setcolormask' => array ( 0 => 'bool', 'rmin' => 'int', @@ -19973,22 +19973,22 @@ 'bmin' => 'int', 'bmax' => 'int', ), - 'HaruImage::setMaskImage' => + 'haruimage::setmaskimage' => array ( 0 => 'bool', 'mask_image' => 'object', ), - 'HaruOutline::setDestination' => + 'haruoutline::setdestination' => array ( 0 => 'bool', 'destination' => 'object', ), - 'HaruOutline::setOpened' => + 'haruoutline::setopened' => array ( 0 => 'bool', 'opened' => 'bool', ), - 'HaruPage::arc' => + 'harupage::arc' => array ( 0 => 'bool', 'x' => 'float', @@ -19997,22 +19997,22 @@ 'ang1' => 'float', 'ang2' => 'float', ), - 'HaruPage::beginText' => + 'harupage::begintext' => array ( 0 => 'bool', ), - 'HaruPage::circle' => + 'harupage::circle' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', 'ray' => 'float', ), - 'HaruPage::closePath' => + 'harupage::closepath' => array ( 0 => 'bool', ), - 'HaruPage::concat' => + 'harupage::concat' => array ( 0 => 'bool', 'a' => 'float', @@ -20022,30 +20022,30 @@ 'x' => 'float', 'y' => 'float', ), - 'HaruPage::createDestination' => + 'harupage::createdestination' => array ( 0 => 'object', ), - 'HaruPage::createLinkAnnotation' => + 'harupage::createlinkannotation' => array ( 0 => 'object', 'rectangle' => 'array', 'destination' => 'object', ), - 'HaruPage::createTextAnnotation' => + 'harupage::createtextannotation' => array ( 0 => 'object', 'rectangle' => 'array', 'text' => 'string', 'encoder=' => 'object', ), - 'HaruPage::createURLAnnotation' => + 'harupage::createurlannotation' => array ( 0 => 'object', 'rectangle' => 'array', 'url' => 'string', ), - 'HaruPage::curveTo' => + 'harupage::curveto' => array ( 0 => 'bool', 'x1' => 'float', @@ -20055,7 +20055,7 @@ 'x3' => 'float', 'y3' => 'float', ), - 'HaruPage::curveTo2' => + 'harupage::curveto2' => array ( 0 => 'bool', 'x2' => 'float', @@ -20063,7 +20063,7 @@ 'x3' => 'float', 'y3' => 'float', ), - 'HaruPage::curveTo3' => + 'harupage::curveto3' => array ( 0 => 'bool', 'x1' => 'float', @@ -20071,7 +20071,7 @@ 'x3' => 'float', 'y3' => 'float', ), - 'HaruPage::drawImage' => + 'harupage::drawimage' => array ( 0 => 'bool', 'image' => 'object', @@ -20080,7 +20080,7 @@ 'width' => 'float', 'height' => 'float', ), - 'HaruPage::ellipse' => + 'harupage::ellipse' => array ( 0 => 'bool', 'x' => 'float', @@ -20088,184 +20088,184 @@ 'xray' => 'float', 'yray' => 'float', ), - 'HaruPage::endPath' => + 'harupage::endpath' => array ( 0 => 'bool', ), - 'HaruPage::endText' => + 'harupage::endtext' => array ( 0 => 'bool', ), - 'HaruPage::eofill' => + 'harupage::eofill' => array ( 0 => 'bool', ), - 'HaruPage::eoFillStroke' => + 'harupage::eofillstroke' => array ( 0 => 'bool', 'close_path=' => 'bool', ), - 'HaruPage::fill' => + 'harupage::fill' => array ( 0 => 'bool', ), - 'HaruPage::fillStroke' => + 'harupage::fillstroke' => array ( 0 => 'bool', 'close_path=' => 'bool', ), - 'HaruPage::getCharSpace' => + 'harupage::getcharspace' => array ( 0 => 'float', ), - 'HaruPage::getCMYKFill' => + 'harupage::getcmykfill' => array ( 0 => 'array', ), - 'HaruPage::getCMYKStroke' => + 'harupage::getcmykstroke' => array ( 0 => 'array', ), - 'HaruPage::getCurrentFont' => + 'harupage::getcurrentfont' => array ( 0 => 'object', ), - 'HaruPage::getCurrentFontSize' => + 'harupage::getcurrentfontsize' => array ( 0 => 'float', ), - 'HaruPage::getCurrentPos' => + 'harupage::getcurrentpos' => array ( 0 => 'array', ), - 'HaruPage::getCurrentTextPos' => + 'harupage::getcurrenttextpos' => array ( 0 => 'array', ), - 'HaruPage::getDash' => + 'harupage::getdash' => array ( 0 => 'array', ), - 'HaruPage::getFillingColorSpace' => + 'harupage::getfillingcolorspace' => array ( 0 => 'int', ), - 'HaruPage::getFlatness' => + 'harupage::getflatness' => array ( 0 => 'float', ), - 'HaruPage::getGMode' => + 'harupage::getgmode' => array ( 0 => 'int', ), - 'HaruPage::getGrayFill' => + 'harupage::getgrayfill' => array ( 0 => 'float', ), - 'HaruPage::getGrayStroke' => + 'harupage::getgraystroke' => array ( 0 => 'float', ), - 'HaruPage::getHeight' => + 'harupage::getheight' => array ( 0 => 'float', ), - 'HaruPage::getHorizontalScaling' => + 'harupage::gethorizontalscaling' => array ( 0 => 'float', ), - 'HaruPage::getLineCap' => + 'harupage::getlinecap' => array ( 0 => 'int', ), - 'HaruPage::getLineJoin' => + 'harupage::getlinejoin' => array ( 0 => 'int', ), - 'HaruPage::getLineWidth' => + 'harupage::getlinewidth' => array ( 0 => 'float', ), - 'HaruPage::getMiterLimit' => + 'harupage::getmiterlimit' => array ( 0 => 'float', ), - 'HaruPage::getRGBFill' => + 'harupage::getrgbfill' => array ( 0 => 'array', ), - 'HaruPage::getRGBStroke' => + 'harupage::getrgbstroke' => array ( 0 => 'array', ), - 'HaruPage::getStrokingColorSpace' => + 'harupage::getstrokingcolorspace' => array ( 0 => 'int', ), - 'HaruPage::getTextLeading' => + 'harupage::gettextleading' => array ( 0 => 'float', ), - 'HaruPage::getTextMatrix' => + 'harupage::gettextmatrix' => array ( 0 => 'array', ), - 'HaruPage::getTextRenderingMode' => + 'harupage::gettextrenderingmode' => array ( 0 => 'int', ), - 'HaruPage::getTextRise' => + 'harupage::gettextrise' => array ( 0 => 'float', ), - 'HaruPage::getTextWidth' => + 'harupage::gettextwidth' => array ( 0 => 'float', 'text' => 'string', ), - 'HaruPage::getTransMatrix' => + 'harupage::gettransmatrix' => array ( 0 => 'array', ), - 'HaruPage::getWidth' => + 'harupage::getwidth' => array ( 0 => 'float', ), - 'HaruPage::getWordSpace' => + 'harupage::getwordspace' => array ( 0 => 'float', ), - 'HaruPage::lineTo' => + 'harupage::lineto' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'HaruPage::measureText' => + 'harupage::measuretext' => array ( 0 => 'int', 'text' => 'string', 'width' => 'float', 'wordwrap=' => 'bool', ), - 'HaruPage::moveTextPos' => + 'harupage::movetextpos' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', 'set_leading=' => 'bool', ), - 'HaruPage::moveTo' => + 'harupage::moveto' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'HaruPage::moveToNextLine' => + 'harupage::movetonextline' => array ( 0 => 'bool', ), - 'HaruPage::rectangle' => + 'harupage::rectangle' => array ( 0 => 'bool', 'x' => 'float', @@ -20273,12 +20273,12 @@ 'width' => 'float', 'height' => 'float', ), - 'HaruPage::setCharSpace' => + 'harupage::setcharspace' => array ( 0 => 'bool', 'char_space' => 'float', ), - 'HaruPage::setCMYKFill' => + 'harupage::setcmykfill' => array ( 0 => 'bool', 'c' => 'float', @@ -20286,7 +20286,7 @@ 'y' => 'float', 'k' => 'float', ), - 'HaruPage::setCMYKStroke' => + 'harupage::setcmykstroke' => array ( 0 => 'bool', 'c' => 'float', @@ -20294,101 +20294,101 @@ 'y' => 'float', 'k' => 'float', ), - 'HaruPage::setDash' => + 'harupage::setdash' => array ( 0 => 'bool', 'pattern' => 'array', 'phase' => 'int', ), - 'HaruPage::setFlatness' => + 'harupage::setflatness' => array ( 0 => 'bool', 'flatness' => 'float', ), - 'HaruPage::setFontAndSize' => + 'harupage::setfontandsize' => array ( 0 => 'bool', 'font' => 'object', 'size' => 'float', ), - 'HaruPage::setGrayFill' => + 'harupage::setgrayfill' => array ( 0 => 'bool', 'value' => 'float', ), - 'HaruPage::setGrayStroke' => + 'harupage::setgraystroke' => array ( 0 => 'bool', 'value' => 'float', ), - 'HaruPage::setHeight' => + 'harupage::setheight' => array ( 0 => 'bool', 'height' => 'float', ), - 'HaruPage::setHorizontalScaling' => + 'harupage::sethorizontalscaling' => array ( 0 => 'bool', 'scaling' => 'float', ), - 'HaruPage::setLineCap' => + 'harupage::setlinecap' => array ( 0 => 'bool', 'cap' => 'int', ), - 'HaruPage::setLineJoin' => + 'harupage::setlinejoin' => array ( 0 => 'bool', 'join' => 'int', ), - 'HaruPage::setLineWidth' => + 'harupage::setlinewidth' => array ( 0 => 'bool', 'width' => 'float', ), - 'HaruPage::setMiterLimit' => + 'harupage::setmiterlimit' => array ( 0 => 'bool', 'limit' => 'float', ), - 'HaruPage::setRGBFill' => + 'harupage::setrgbfill' => array ( 0 => 'bool', 'r' => 'float', 'g' => 'float', 'b' => 'float', ), - 'HaruPage::setRGBStroke' => + 'harupage::setrgbstroke' => array ( 0 => 'bool', 'r' => 'float', 'g' => 'float', 'b' => 'float', ), - 'HaruPage::setRotate' => + 'harupage::setrotate' => array ( 0 => 'bool', 'angle' => 'int', ), - 'HaruPage::setSize' => + 'harupage::setsize' => array ( 0 => 'bool', 'size' => 'int', 'direction' => 'int', ), - 'HaruPage::setSlideShow' => + 'harupage::setslideshow' => array ( 0 => 'bool', 'type' => 'int', 'disp_time' => 'float', 'trans_time' => 'float', ), - 'HaruPage::setTextLeading' => + 'harupage::settextleading' => array ( 0 => 'bool', 'text_leading' => 'float', ), - 'HaruPage::setTextMatrix' => + 'harupage::settextmatrix' => array ( 0 => 'bool', 'a' => 'float', @@ -20398,51 +20398,51 @@ 'x' => 'float', 'y' => 'float', ), - 'HaruPage::setTextRenderingMode' => + 'harupage::settextrenderingmode' => array ( 0 => 'bool', 'mode' => 'int', ), - 'HaruPage::setTextRise' => + 'harupage::settextrise' => array ( 0 => 'bool', 'rise' => 'float', ), - 'HaruPage::setWidth' => + 'harupage::setwidth' => array ( 0 => 'bool', 'width' => 'float', ), - 'HaruPage::setWordSpace' => + 'harupage::setwordspace' => array ( 0 => 'bool', 'word_space' => 'float', ), - 'HaruPage::showText' => + 'harupage::showtext' => array ( 0 => 'bool', 'text' => 'string', ), - 'HaruPage::showTextNextLine' => + 'harupage::showtextnextline' => array ( 0 => 'bool', 'text' => 'string', 'word_space=' => 'float', 'char_space=' => 'float', ), - 'HaruPage::stroke' => + 'harupage::stroke' => array ( 0 => 'bool', 'close_path=' => 'bool', ), - 'HaruPage::textOut' => + 'harupage::textout' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', 'text' => 'string', ), - 'HaruPage::textRect' => + 'harupage::textrect' => array ( 0 => 'bool', 'left' => 'float', @@ -20557,26 +20557,26 @@ 'stream' => 'resource', 'length=' => 'int', ), - 'hashTableObj::clear' => + 'hashtableobj::clear' => array ( 0 => 'void', ), - 'hashTableObj::get' => + 'hashtableobj::get' => array ( 0 => 'string', 'key' => 'string', ), - 'hashTableObj::nextkey' => + 'hashtableobj::nextkey' => array ( 0 => 'string', 'previousKey' => 'string', ), - 'hashTableObj::remove' => + 'hashtableobj::remove' => array ( 0 => 'int', 'key' => 'string', ), - 'hashTableObj::set' => + 'hashtableobj::set' => array ( 0 => 'int', 'key' => 'string', @@ -20653,66 +20653,66 @@ 0 => 'false|float|int', 'as_number=' => 'true', ), - 'HRTime\\PerformanceCounter::getElapsedTicks' => + 'hrtime\\performancecounter::getelapsedticks' => array ( 0 => 'int', ), - 'HRTime\\PerformanceCounter::getFrequency' => + 'hrtime\\performancecounter::getfrequency' => array ( 0 => 'int', ), - 'HRTime\\PerformanceCounter::getLastElapsedTicks' => + 'hrtime\\performancecounter::getlastelapsedticks' => array ( 0 => 'int', ), - 'HRTime\\PerformanceCounter::getTicks' => + 'hrtime\\performancecounter::getticks' => array ( 0 => 'int', ), - 'HRTime\\PerformanceCounter::getTicksSince' => + 'hrtime\\performancecounter::gettickssince' => array ( 0 => 'int', 'start' => 'int', ), - 'HRTime\\PerformanceCounter::isRunning' => + 'hrtime\\performancecounter::isrunning' => array ( 0 => 'bool', ), - 'HRTime\\PerformanceCounter::start' => + 'hrtime\\performancecounter::start' => array ( 0 => 'void', ), - 'HRTime\\PerformanceCounter::stop' => + 'hrtime\\performancecounter::stop' => array ( 0 => 'void', ), - 'HRTime\\StopWatch::getElapsedTicks' => + 'hrtime\\stopwatch::getelapsedticks' => array ( 0 => 'int', ), - 'HRTime\\StopWatch::getElapsedTime' => + 'hrtime\\stopwatch::getelapsedtime' => array ( 0 => 'float', 'unit=' => 'int', ), - 'HRTime\\StopWatch::getLastElapsedTicks' => + 'hrtime\\stopwatch::getlastelapsedticks' => array ( 0 => 'int', ), - 'HRTime\\StopWatch::getLastElapsedTime' => + 'hrtime\\stopwatch::getlastelapsedtime' => array ( 0 => 'float', 'unit=' => 'int', ), - 'HRTime\\StopWatch::isRunning' => + 'hrtime\\stopwatch::isrunning' => array ( 0 => 'bool', ), - 'HRTime\\StopWatch::start' => + 'hrtime\\stopwatch::start' => array ( 0 => 'void', ), - 'HRTime\\StopWatch::stop' => + 'hrtime\\stopwatch::stop' => array ( 0 => 'void', ), @@ -20745,187 +20745,187 @@ 'string' => 'string', 'flags=' => 'int', ), - 'http\\Client::__construct' => + 'http\\client::__construct' => array ( 0 => 'void', 'driver=' => 'string', 'persistent_handle_id=' => 'string', ), - 'http\\Client::addCookies' => + 'http\\client::addcookies' => array ( 0 => 'http\\Client', 'cookies=' => 'array|null', ), - 'http\\Client::addSslOptions' => + 'http\\client::addssloptions' => array ( 0 => 'http\\Client', 'ssl_options=' => 'array|null', ), - 'http\\Client::attach' => + 'http\\client::attach' => array ( 0 => 'void', 'observer' => 'SplObserver', ), - 'http\\Client::configure' => + 'http\\client::configure' => array ( 0 => 'http\\Client', 'settings' => 'array', ), - 'http\\Client::count' => + 'http\\client::count' => array ( 0 => 'int', ), - 'http\\Client::dequeue' => + 'http\\client::dequeue' => array ( 0 => 'http\\Client', 'request' => 'http\\Client\\Request', ), - 'http\\Client::detach' => + 'http\\client::detach' => array ( 0 => 'void', 'observer' => 'SplObserver', ), - 'http\\Client::enableEvents' => + 'http\\client::enableevents' => array ( 0 => 'http\\Client', 'enable=' => 'mixed', ), - 'http\\Client::enablePipelining' => + 'http\\client::enablepipelining' => array ( 0 => 'http\\Client', 'enable=' => 'mixed', ), - 'http\\Client::enqueue' => + 'http\\client::enqueue' => array ( 0 => 'http\\Client', 'request' => 'http\\Client\\Request', 'callable=' => 'mixed', ), - 'http\\Client::getAvailableConfiguration' => + 'http\\client::getavailableconfiguration' => array ( 0 => 'array', ), - 'http\\Client::getAvailableDrivers' => + 'http\\client::getavailabledrivers' => array ( 0 => 'array', ), - 'http\\Client::getAvailableOptions' => + 'http\\client::getavailableoptions' => array ( 0 => 'array', ), - 'http\\Client::getCookies' => + 'http\\client::getcookies' => array ( 0 => 'array', ), - 'http\\Client::getHistory' => + 'http\\client::gethistory' => array ( 0 => 'http\\Message', ), - 'http\\Client::getObservers' => + 'http\\client::getobservers' => array ( 0 => 'SplObjectStorage', ), - 'http\\Client::getOptions' => + 'http\\client::getoptions' => array ( 0 => 'array', ), - 'http\\Client::getProgressInfo' => + 'http\\client::getprogressinfo' => array ( 0 => 'null|object', 'request' => 'http\\Client\\Request', ), - 'http\\Client::getResponse' => + 'http\\client::getresponse' => array ( 0 => 'http\\Client\\Response|null', 'request=' => 'http\\Client\\Request|null', ), - 'http\\Client::getSslOptions' => + 'http\\client::getssloptions' => array ( 0 => 'array', ), - 'http\\Client::getTransferInfo' => + 'http\\client::gettransferinfo' => array ( 0 => 'object', 'request' => 'http\\Client\\Request', ), - 'http\\Client::notify' => + 'http\\client::notify' => array ( 0 => 'void', 'request=' => 'http\\Client\\Request|null', ), - 'http\\Client::once' => + 'http\\client::once' => array ( 0 => 'bool', ), - 'http\\Client::requeue' => + 'http\\client::requeue' => array ( 0 => 'http\\Client', 'request' => 'http\\Client\\Request', 'callable=' => 'mixed', ), - 'http\\Client::reset' => + 'http\\client::reset' => array ( 0 => 'http\\Client', ), - 'http\\Client::send' => + 'http\\client::send' => array ( 0 => 'http\\Client', ), - 'http\\Client::setCookies' => + 'http\\client::setcookies' => array ( 0 => 'http\\Client', 'cookies=' => 'array|null', ), - 'http\\Client::setDebug' => + 'http\\client::setdebug' => array ( 0 => 'http\\Client', 'callback' => 'callable', ), - 'http\\Client::setOptions' => + 'http\\client::setoptions' => array ( 0 => 'http\\Client', 'options=' => 'array|null', ), - 'http\\Client::setSslOptions' => + 'http\\client::setssloptions' => array ( 0 => 'http\\Client', 'ssl_option=' => 'array|null', ), - 'http\\Client::wait' => + 'http\\client::wait' => array ( 0 => 'bool', 'timeout=' => 'mixed', ), - 'http\\Client\\Curl\\User::init' => + 'http\\client\\curl\\user::init' => array ( 0 => 'mixed', 'run' => 'callable', ), - 'http\\Client\\Curl\\User::once' => + 'http\\client\\curl\\user::once' => array ( 0 => 'mixed', ), - 'http\\Client\\Curl\\User::send' => + 'http\\client\\curl\\user::send' => array ( 0 => 'mixed', ), - 'http\\Client\\Curl\\User::socket' => + 'http\\client\\curl\\user::socket' => array ( 0 => 'mixed', 'socket' => 'resource', 'action' => 'int', ), - 'http\\Client\\Curl\\User::timer' => + 'http\\client\\curl\\user::timer' => array ( 0 => 'mixed', 'timeout_ms' => 'int', ), - 'http\\Client\\Curl\\User::wait' => + 'http\\client\\curl\\user::wait' => array ( 0 => 'mixed', 'timeout_ms=' => 'mixed', ), - 'http\\Client\\Request::__construct' => + 'http\\client\\request::__construct' => array ( 0 => 'void', 'method=' => 'mixed', @@ -20933,762 +20933,762 @@ 'headers=' => 'array|null', 'body=' => 'http\\Message\\Body|null', ), - 'http\\Client\\Request::__toString' => + 'http\\client\\request::__tostring' => array ( 0 => 'string', ), - 'http\\Client\\Request::addBody' => + 'http\\client\\request::addbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Client\\Request::addHeader' => + 'http\\client\\request::addheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value' => 'mixed', ), - 'http\\Client\\Request::addHeaders' => + 'http\\client\\request::addheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', 'append=' => 'mixed', ), - 'http\\Client\\Request::addQuery' => + 'http\\client\\request::addquery' => array ( 0 => 'http\\Client\\Request', 'query_data' => 'mixed', ), - 'http\\Client\\Request::addSslOptions' => + 'http\\client\\request::addssloptions' => array ( 0 => 'http\\Client\\Request', 'ssl_options=' => 'array|null', ), - 'http\\Client\\Request::count' => + 'http\\client\\request::count' => array ( 0 => 'int', ), - 'http\\Client\\Request::current' => + 'http\\client\\request::current' => array ( 0 => 'mixed', ), - 'http\\Client\\Request::detach' => + 'http\\client\\request::detach' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Request::getBody' => + 'http\\client\\request::getbody' => array ( 0 => 'http\\Message\\Body', ), - 'http\\Client\\Request::getContentType' => + 'http\\client\\request::getcontenttype' => array ( 0 => 'null|string', ), - 'http\\Client\\Request::getHeader' => + 'http\\client\\request::getheader' => array ( 0 => 'http\\Header|mixed', 'header' => 'string', 'into_class=' => 'mixed', ), - 'http\\Client\\Request::getHeaders' => + 'http\\client\\request::getheaders' => array ( 0 => 'array', ), - 'http\\Client\\Request::getHttpVersion' => + 'http\\client\\request::gethttpversion' => array ( 0 => 'string', ), - 'http\\Client\\Request::getInfo' => + 'http\\client\\request::getinfo' => array ( 0 => 'null|string', ), - 'http\\Client\\Request::getOptions' => + 'http\\client\\request::getoptions' => array ( 0 => 'array', ), - 'http\\Client\\Request::getParentMessage' => + 'http\\client\\request::getparentmessage' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Request::getQuery' => + 'http\\client\\request::getquery' => array ( 0 => 'null|string', ), - 'http\\Client\\Request::getRequestMethod' => + 'http\\client\\request::getrequestmethod' => array ( 0 => 'false|string', ), - 'http\\Client\\Request::getRequestUrl' => + 'http\\client\\request::getrequesturl' => array ( 0 => 'false|string', ), - 'http\\Client\\Request::getResponseCode' => + 'http\\client\\request::getresponsecode' => array ( 0 => 'false|int', ), - 'http\\Client\\Request::getResponseStatus' => + 'http\\client\\request::getresponsestatus' => array ( 0 => 'false|string', ), - 'http\\Client\\Request::getSslOptions' => + 'http\\client\\request::getssloptions' => array ( 0 => 'array', ), - 'http\\Client\\Request::getType' => + 'http\\client\\request::gettype' => array ( 0 => 'int', ), - 'http\\Client\\Request::isMultipart' => + 'http\\client\\request::ismultipart' => array ( 0 => 'bool', '&boundary=' => 'mixed', ), - 'http\\Client\\Request::key' => + 'http\\client\\request::key' => array ( 0 => 'int|string', ), - 'http\\Client\\Request::next' => + 'http\\client\\request::next' => array ( 0 => 'void', ), - 'http\\Client\\Request::prepend' => + 'http\\client\\request::prepend' => array ( 0 => 'http\\Message', 'message' => 'http\\Message', 'top=' => 'mixed', ), - 'http\\Client\\Request::reverse' => + 'http\\client\\request::reverse' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Request::rewind' => + 'http\\client\\request::rewind' => array ( 0 => 'void', ), - 'http\\Client\\Request::serialize' => + 'http\\client\\request::serialize' => array ( 0 => 'string', ), - 'http\\Client\\Request::setBody' => + 'http\\client\\request::setbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Client\\Request::setContentType' => + 'http\\client\\request::setcontenttype' => array ( 0 => 'http\\Client\\Request', 'content_type' => 'string', ), - 'http\\Client\\Request::setHeader' => + 'http\\client\\request::setheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value=' => 'mixed', ), - 'http\\Client\\Request::setHeaders' => + 'http\\client\\request::setheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', ), - 'http\\Client\\Request::setHttpVersion' => + 'http\\client\\request::sethttpversion' => array ( 0 => 'http\\Message', 'http_version' => 'string', ), - 'http\\Client\\Request::setInfo' => + 'http\\client\\request::setinfo' => array ( 0 => 'http\\Message', 'http_info' => 'string', ), - 'http\\Client\\Request::setOptions' => + 'http\\client\\request::setoptions' => array ( 0 => 'http\\Client\\Request', 'options=' => 'array|null', ), - 'http\\Client\\Request::setQuery' => + 'http\\client\\request::setquery' => array ( 0 => 'http\\Client\\Request', 'query_data=' => 'mixed', ), - 'http\\Client\\Request::setRequestMethod' => + 'http\\client\\request::setrequestmethod' => array ( 0 => 'http\\Message', 'request_method' => 'string', ), - 'http\\Client\\Request::setRequestUrl' => + 'http\\client\\request::setrequesturl' => array ( 0 => 'http\\Message', 'url' => 'string', ), - 'http\\Client\\Request::setResponseCode' => + 'http\\client\\request::setresponsecode' => array ( 0 => 'http\\Message', 'response_code' => 'int', 'strict=' => 'mixed', ), - 'http\\Client\\Request::setResponseStatus' => + 'http\\client\\request::setresponsestatus' => array ( 0 => 'http\\Message', 'response_status' => 'string', ), - 'http\\Client\\Request::setSslOptions' => + 'http\\client\\request::setssloptions' => array ( 0 => 'http\\Client\\Request', 'ssl_options=' => 'array|null', ), - 'http\\Client\\Request::setType' => + 'http\\client\\request::settype' => array ( 0 => 'http\\Message', 'type' => 'int', ), - 'http\\Client\\Request::splitMultipartBody' => + 'http\\client\\request::splitmultipartbody' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Request::toCallback' => + 'http\\client\\request::tocallback' => array ( 0 => 'http\\Message', 'callback' => 'callable', ), - 'http\\Client\\Request::toStream' => + 'http\\client\\request::tostream' => array ( 0 => 'http\\Message', 'stream' => 'resource', ), - 'http\\Client\\Request::toString' => + 'http\\client\\request::tostring' => array ( 0 => 'string', 'include_parent=' => 'mixed', ), - 'http\\Client\\Request::unserialize' => + 'http\\client\\request::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\Client\\Request::valid' => + 'http\\client\\request::valid' => array ( 0 => 'bool', ), - 'http\\Client\\Response::__construct' => + 'http\\client\\response::__construct' => array ( 0 => 'Iterator', ), - 'http\\Client\\Response::__toString' => + 'http\\client\\response::__tostring' => array ( 0 => 'string', ), - 'http\\Client\\Response::addBody' => + 'http\\client\\response::addbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Client\\Response::addHeader' => + 'http\\client\\response::addheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value' => 'mixed', ), - 'http\\Client\\Response::addHeaders' => + 'http\\client\\response::addheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', 'append=' => 'mixed', ), - 'http\\Client\\Response::count' => + 'http\\client\\response::count' => array ( 0 => 'int', ), - 'http\\Client\\Response::current' => + 'http\\client\\response::current' => array ( 0 => 'mixed', ), - 'http\\Client\\Response::detach' => + 'http\\client\\response::detach' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Response::getBody' => + 'http\\client\\response::getbody' => array ( 0 => 'http\\Message\\Body', ), - 'http\\Client\\Response::getCookies' => + 'http\\client\\response::getcookies' => array ( 0 => 'array', 'flags=' => 'mixed', 'allowed_extras=' => 'mixed', ), - 'http\\Client\\Response::getHeader' => + 'http\\client\\response::getheader' => array ( 0 => 'http\\Header|mixed', 'header' => 'string', 'into_class=' => 'mixed', ), - 'http\\Client\\Response::getHeaders' => + 'http\\client\\response::getheaders' => array ( 0 => 'array', ), - 'http\\Client\\Response::getHttpVersion' => + 'http\\client\\response::gethttpversion' => array ( 0 => 'string', ), - 'http\\Client\\Response::getInfo' => + 'http\\client\\response::getinfo' => array ( 0 => 'null|string', ), - 'http\\Client\\Response::getParentMessage' => + 'http\\client\\response::getparentmessage' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Response::getRequestMethod' => + 'http\\client\\response::getrequestmethod' => array ( 0 => 'false|string', ), - 'http\\Client\\Response::getRequestUrl' => + 'http\\client\\response::getrequesturl' => array ( 0 => 'false|string', ), - 'http\\Client\\Response::getResponseCode' => + 'http\\client\\response::getresponsecode' => array ( 0 => 'false|int', ), - 'http\\Client\\Response::getResponseStatus' => + 'http\\client\\response::getresponsestatus' => array ( 0 => 'false|string', ), - 'http\\Client\\Response::getTransferInfo' => + 'http\\client\\response::gettransferinfo' => array ( 0 => 'mixed|object', 'element=' => 'mixed', ), - 'http\\Client\\Response::getType' => + 'http\\client\\response::gettype' => array ( 0 => 'int', ), - 'http\\Client\\Response::isMultipart' => + 'http\\client\\response::ismultipart' => array ( 0 => 'bool', '&boundary=' => 'mixed', ), - 'http\\Client\\Response::key' => + 'http\\client\\response::key' => array ( 0 => 'int|string', ), - 'http\\Client\\Response::next' => + 'http\\client\\response::next' => array ( 0 => 'void', ), - 'http\\Client\\Response::prepend' => + 'http\\client\\response::prepend' => array ( 0 => 'http\\Message', 'message' => 'http\\Message', 'top=' => 'mixed', ), - 'http\\Client\\Response::reverse' => + 'http\\client\\response::reverse' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Response::rewind' => + 'http\\client\\response::rewind' => array ( 0 => 'void', ), - 'http\\Client\\Response::serialize' => + 'http\\client\\response::serialize' => array ( 0 => 'string', ), - 'http\\Client\\Response::setBody' => + 'http\\client\\response::setbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Client\\Response::setHeader' => + 'http\\client\\response::setheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value=' => 'mixed', ), - 'http\\Client\\Response::setHeaders' => + 'http\\client\\response::setheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', ), - 'http\\Client\\Response::setHttpVersion' => + 'http\\client\\response::sethttpversion' => array ( 0 => 'http\\Message', 'http_version' => 'string', ), - 'http\\Client\\Response::setInfo' => + 'http\\client\\response::setinfo' => array ( 0 => 'http\\Message', 'http_info' => 'string', ), - 'http\\Client\\Response::setRequestMethod' => + 'http\\client\\response::setrequestmethod' => array ( 0 => 'http\\Message', 'request_method' => 'string', ), - 'http\\Client\\Response::setRequestUrl' => + 'http\\client\\response::setrequesturl' => array ( 0 => 'http\\Message', 'url' => 'string', ), - 'http\\Client\\Response::setResponseCode' => + 'http\\client\\response::setresponsecode' => array ( 0 => 'http\\Message', 'response_code' => 'int', 'strict=' => 'mixed', ), - 'http\\Client\\Response::setResponseStatus' => + 'http\\client\\response::setresponsestatus' => array ( 0 => 'http\\Message', 'response_status' => 'string', ), - 'http\\Client\\Response::setType' => + 'http\\client\\response::settype' => array ( 0 => 'http\\Message', 'type' => 'int', ), - 'http\\Client\\Response::splitMultipartBody' => + 'http\\client\\response::splitmultipartbody' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Response::toCallback' => + 'http\\client\\response::tocallback' => array ( 0 => 'http\\Message', 'callback' => 'callable', ), - 'http\\Client\\Response::toStream' => + 'http\\client\\response::tostream' => array ( 0 => 'http\\Message', 'stream' => 'resource', ), - 'http\\Client\\Response::toString' => + 'http\\client\\response::tostring' => array ( 0 => 'string', 'include_parent=' => 'mixed', ), - 'http\\Client\\Response::unserialize' => + 'http\\client\\response::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\Client\\Response::valid' => + 'http\\client\\response::valid' => array ( 0 => 'bool', ), - 'http\\Cookie::__construct' => + 'http\\cookie::__construct' => array ( 0 => 'void', 'cookie_string=' => 'mixed', 'parser_flags=' => 'int', 'allowed_extras=' => 'array', ), - 'http\\Cookie::__toString' => + 'http\\cookie::__tostring' => array ( 0 => 'string', ), - 'http\\Cookie::addCookie' => + 'http\\cookie::addcookie' => array ( 0 => 'http\\Cookie', 'cookie_name' => 'string', 'cookie_value' => 'string', ), - 'http\\Cookie::addCookies' => + 'http\\cookie::addcookies' => array ( 0 => 'http\\Cookie', 'cookies' => 'array', ), - 'http\\Cookie::addExtra' => + 'http\\cookie::addextra' => array ( 0 => 'http\\Cookie', 'extra_name' => 'string', 'extra_value' => 'string', ), - 'http\\Cookie::addExtras' => + 'http\\cookie::addextras' => array ( 0 => 'http\\Cookie', 'extras' => 'array', ), - 'http\\Cookie::getCookie' => + 'http\\cookie::getcookie' => array ( 0 => 'null|string', 'name' => 'string', ), - 'http\\Cookie::getCookies' => + 'http\\cookie::getcookies' => array ( 0 => 'array', ), - 'http\\Cookie::getDomain' => + 'http\\cookie::getdomain' => array ( 0 => 'string', ), - 'http\\Cookie::getExpires' => + 'http\\cookie::getexpires' => array ( 0 => 'int', ), - 'http\\Cookie::getExtra' => + 'http\\cookie::getextra' => array ( 0 => 'string', 'name' => 'string', ), - 'http\\Cookie::getExtras' => + 'http\\cookie::getextras' => array ( 0 => 'array', ), - 'http\\Cookie::getFlags' => + 'http\\cookie::getflags' => array ( 0 => 'int', ), - 'http\\Cookie::getMaxAge' => + 'http\\cookie::getmaxage' => array ( 0 => 'int', ), - 'http\\Cookie::getPath' => + 'http\\cookie::getpath' => array ( 0 => 'string', ), - 'http\\Cookie::setCookie' => + 'http\\cookie::setcookie' => array ( 0 => 'http\\Cookie', 'cookie_name' => 'string', 'cookie_value=' => 'mixed', ), - 'http\\Cookie::setCookies' => + 'http\\cookie::setcookies' => array ( 0 => 'http\\Cookie', 'cookies=' => 'mixed', ), - 'http\\Cookie::setDomain' => + 'http\\cookie::setdomain' => array ( 0 => 'http\\Cookie', 'value=' => 'mixed', ), - 'http\\Cookie::setExpires' => + 'http\\cookie::setexpires' => array ( 0 => 'http\\Cookie', 'value=' => 'mixed', ), - 'http\\Cookie::setExtra' => + 'http\\cookie::setextra' => array ( 0 => 'http\\Cookie', 'extra_name' => 'string', 'extra_value=' => 'mixed', ), - 'http\\Cookie::setExtras' => + 'http\\cookie::setextras' => array ( 0 => 'http\\Cookie', 'extras=' => 'mixed', ), - 'http\\Cookie::setFlags' => + 'http\\cookie::setflags' => array ( 0 => 'http\\Cookie', 'value=' => 'mixed', ), - 'http\\Cookie::setMaxAge' => + 'http\\cookie::setmaxage' => array ( 0 => 'http\\Cookie', 'value=' => 'mixed', ), - 'http\\Cookie::setPath' => + 'http\\cookie::setpath' => array ( 0 => 'http\\Cookie', 'value=' => 'mixed', ), - 'http\\Cookie::toArray' => + 'http\\cookie::toarray' => array ( 0 => 'array', ), - 'http\\Cookie::toString' => + 'http\\cookie::tostring' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream::__construct' => + 'http\\encoding\\stream::__construct' => array ( 0 => 'void', 'flags=' => 'mixed', ), - 'http\\Encoding\\Stream::done' => + 'http\\encoding\\stream::done' => array ( 0 => 'bool', ), - 'http\\Encoding\\Stream::finish' => + 'http\\encoding\\stream::finish' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream::flush' => + 'http\\encoding\\stream::flush' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream::update' => + 'http\\encoding\\stream::update' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Encoding\\Stream\\Debrotli::__construct' => + 'http\\encoding\\stream\\debrotli::__construct' => array ( 0 => 'void', 'flags=' => 'int', ), - 'http\\Encoding\\Stream\\Debrotli::decode' => + 'http\\encoding\\stream\\debrotli::decode' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Encoding\\Stream\\Debrotli::done' => + 'http\\encoding\\stream\\debrotli::done' => array ( 0 => 'bool', ), - 'http\\Encoding\\Stream\\Debrotli::finish' => + 'http\\encoding\\stream\\debrotli::finish' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Debrotli::flush' => + 'http\\encoding\\stream\\debrotli::flush' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Debrotli::update' => + 'http\\encoding\\stream\\debrotli::update' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Encoding\\Stream\\Dechunk::__construct' => + 'http\\encoding\\stream\\dechunk::__construct' => array ( 0 => 'void', 'flags=' => 'mixed', ), - 'http\\Encoding\\Stream\\Dechunk::decode' => + 'http\\encoding\\stream\\dechunk::decode' => array ( 0 => 'false|string', 'data' => 'string', '&decoded_len=' => 'mixed', ), - 'http\\Encoding\\Stream\\Dechunk::done' => + 'http\\encoding\\stream\\dechunk::done' => array ( 0 => 'bool', ), - 'http\\Encoding\\Stream\\Dechunk::finish' => + 'http\\encoding\\stream\\dechunk::finish' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Dechunk::flush' => + 'http\\encoding\\stream\\dechunk::flush' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Dechunk::update' => + 'http\\encoding\\stream\\dechunk::update' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Encoding\\Stream\\Deflate::__construct' => + 'http\\encoding\\stream\\deflate::__construct' => array ( 0 => 'void', 'flags=' => 'mixed', ), - 'http\\Encoding\\Stream\\Deflate::done' => + 'http\\encoding\\stream\\deflate::done' => array ( 0 => 'bool', ), - 'http\\Encoding\\Stream\\Deflate::encode' => + 'http\\encoding\\stream\\deflate::encode' => array ( 0 => 'string', 'data' => 'string', 'flags=' => 'mixed', ), - 'http\\Encoding\\Stream\\Deflate::finish' => + 'http\\encoding\\stream\\deflate::finish' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Deflate::flush' => + 'http\\encoding\\stream\\deflate::flush' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Deflate::update' => + 'http\\encoding\\stream\\deflate::update' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Encoding\\Stream\\Enbrotli::__construct' => + 'http\\encoding\\stream\\enbrotli::__construct' => array ( 0 => 'void', 'flags=' => 'int', ), - 'http\\Encoding\\Stream\\Enbrotli::done' => + 'http\\encoding\\stream\\enbrotli::done' => array ( 0 => 'bool', ), - 'http\\Encoding\\Stream\\Enbrotli::encode' => + 'http\\encoding\\stream\\enbrotli::encode' => array ( 0 => 'string', 'data' => 'string', 'flags=' => 'int', ), - 'http\\Encoding\\Stream\\Enbrotli::finish' => + 'http\\encoding\\stream\\enbrotli::finish' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Enbrotli::flush' => + 'http\\encoding\\stream\\enbrotli::flush' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Enbrotli::update' => + 'http\\encoding\\stream\\enbrotli::update' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Encoding\\Stream\\Inflate::__construct' => + 'http\\encoding\\stream\\inflate::__construct' => array ( 0 => 'void', 'flags=' => 'mixed', ), - 'http\\Encoding\\Stream\\Inflate::decode' => + 'http\\encoding\\stream\\inflate::decode' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Encoding\\Stream\\Inflate::done' => + 'http\\encoding\\stream\\inflate::done' => array ( 0 => 'bool', ), - 'http\\Encoding\\Stream\\Inflate::finish' => + 'http\\encoding\\stream\\inflate::finish' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Inflate::flush' => + 'http\\encoding\\stream\\inflate::flush' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Inflate::update' => + 'http\\encoding\\stream\\inflate::update' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Env::getRequestBody' => + 'http\\env::getrequestbody' => array ( 0 => 'http\\Message\\Body', 'body_class_name=' => 'mixed', ), - 'http\\Env::getRequestHeader' => + 'http\\env::getrequestheader' => array ( 0 => 'array|null|string', 'header_name=' => 'mixed', ), - 'http\\Env::getResponseCode' => + 'http\\env::getresponsecode' => array ( 0 => 'int', ), - 'http\\Env::getResponseHeader' => + 'http\\env::getresponseheader' => array ( 0 => 'array|null|string', 'header_name=' => 'mixed', ), - 'http\\Env::getResponseStatusForAllCodes' => + 'http\\env::getresponsestatusforallcodes' => array ( 0 => 'array', ), - 'http\\Env::getResponseStatusForCode' => + 'http\\env::getresponsestatusforcode' => array ( 0 => 'string', 'code' => 'int', ), - 'http\\Env::negotiate' => + 'http\\env::negotiate' => array ( 0 => 'null|string', 'params' => 'string', @@ -21696,36 +21696,36 @@ 'primary_type_separator=' => 'mixed', '&result_array=' => 'mixed', ), - 'http\\Env::negotiateCharset' => + 'http\\env::negotiatecharset' => array ( 0 => 'null|string', 'supported' => 'array', '&result_array=' => 'mixed', ), - 'http\\Env::negotiateContentType' => + 'http\\env::negotiatecontenttype' => array ( 0 => 'null|string', 'supported' => 'array', '&result_array=' => 'mixed', ), - 'http\\Env::negotiateEncoding' => + 'http\\env::negotiateencoding' => array ( 0 => 'null|string', 'supported' => 'array', '&result_array=' => 'mixed', ), - 'http\\Env::negotiateLanguage' => + 'http\\env::negotiatelanguage' => array ( 0 => 'null|string', 'supported' => 'array', '&result_array=' => 'mixed', ), - 'http\\Env::setResponseCode' => + 'http\\env::setresponsecode' => array ( 0 => 'bool', 'code' => 'int', ), - 'http\\Env::setResponseHeader' => + 'http\\env::setresponseheader' => array ( 0 => 'bool', 'header_name' => 'string', @@ -21733,48 +21733,48 @@ 'response_code=' => 'mixed', 'replace_header=' => 'mixed', ), - 'http\\Env\\Request::__construct' => + 'http\\env\\request::__construct' => array ( 0 => 'void', ), - 'http\\Env\\Request::__toString' => + 'http\\env\\request::__tostring' => array ( 0 => 'string', ), - 'http\\Env\\Request::addBody' => + 'http\\env\\request::addbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Env\\Request::addHeader' => + 'http\\env\\request::addheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value' => 'mixed', ), - 'http\\Env\\Request::addHeaders' => + 'http\\env\\request::addheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', 'append=' => 'mixed', ), - 'http\\Env\\Request::count' => + 'http\\env\\request::count' => array ( 0 => 'int', ), - 'http\\Env\\Request::current' => + 'http\\env\\request::current' => array ( 0 => 'mixed', ), - 'http\\Env\\Request::detach' => + 'http\\env\\request::detach' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Request::getBody' => + 'http\\env\\request::getbody' => array ( 0 => 'http\\Message\\Body', ), - 'http\\Env\\Request::getCookie' => + 'http\\env\\request::getcookie' => array ( 0 => 'mixed', 'name=' => 'string', @@ -21782,11 +21782,11 @@ 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\Env\\Request::getFiles' => + 'http\\env\\request::getfiles' => array ( 0 => 'array', ), - 'http\\Env\\Request::getForm' => + 'http\\env\\request::getform' => array ( 0 => 'mixed', 'name=' => 'string', @@ -21794,29 +21794,29 @@ 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\Env\\Request::getHeader' => + 'http\\env\\request::getheader' => array ( 0 => 'http\\Header|mixed', 'header' => 'string', 'into_class=' => 'mixed', ), - 'http\\Env\\Request::getHeaders' => + 'http\\env\\request::getheaders' => array ( 0 => 'array', ), - 'http\\Env\\Request::getHttpVersion' => + 'http\\env\\request::gethttpversion' => array ( 0 => 'string', ), - 'http\\Env\\Request::getInfo' => + 'http\\env\\request::getinfo' => array ( 0 => 'null|string', ), - 'http\\Env\\Request::getParentMessage' => + 'http\\env\\request::getparentmessage' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Request::getQuery' => + 'http\\env\\request::getquery' => array ( 0 => 'mixed', 'name=' => 'string', @@ -21824,409 +21824,409 @@ 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\Env\\Request::getRequestMethod' => + 'http\\env\\request::getrequestmethod' => array ( 0 => 'false|string', ), - 'http\\Env\\Request::getRequestUrl' => + 'http\\env\\request::getrequesturl' => array ( 0 => 'false|string', ), - 'http\\Env\\Request::getResponseCode' => + 'http\\env\\request::getresponsecode' => array ( 0 => 'false|int', ), - 'http\\Env\\Request::getResponseStatus' => + 'http\\env\\request::getresponsestatus' => array ( 0 => 'false|string', ), - 'http\\Env\\Request::getType' => + 'http\\env\\request::gettype' => array ( 0 => 'int', ), - 'http\\Env\\Request::isMultipart' => + 'http\\env\\request::ismultipart' => array ( 0 => 'bool', '&boundary=' => 'mixed', ), - 'http\\Env\\Request::key' => + 'http\\env\\request::key' => array ( 0 => 'int|string', ), - 'http\\Env\\Request::next' => + 'http\\env\\request::next' => array ( 0 => 'void', ), - 'http\\Env\\Request::prepend' => + 'http\\env\\request::prepend' => array ( 0 => 'http\\Message', 'message' => 'http\\Message', 'top=' => 'mixed', ), - 'http\\Env\\Request::reverse' => + 'http\\env\\request::reverse' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Request::rewind' => + 'http\\env\\request::rewind' => array ( 0 => 'void', ), - 'http\\Env\\Request::serialize' => + 'http\\env\\request::serialize' => array ( 0 => 'string', ), - 'http\\Env\\Request::setBody' => + 'http\\env\\request::setbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Env\\Request::setHeader' => + 'http\\env\\request::setheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value=' => 'mixed', ), - 'http\\Env\\Request::setHeaders' => + 'http\\env\\request::setheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', ), - 'http\\Env\\Request::setHttpVersion' => + 'http\\env\\request::sethttpversion' => array ( 0 => 'http\\Message', 'http_version' => 'string', ), - 'http\\Env\\Request::setInfo' => + 'http\\env\\request::setinfo' => array ( 0 => 'http\\Message', 'http_info' => 'string', ), - 'http\\Env\\Request::setRequestMethod' => + 'http\\env\\request::setrequestmethod' => array ( 0 => 'http\\Message', 'request_method' => 'string', ), - 'http\\Env\\Request::setRequestUrl' => + 'http\\env\\request::setrequesturl' => array ( 0 => 'http\\Message', 'url' => 'string', ), - 'http\\Env\\Request::setResponseCode' => + 'http\\env\\request::setresponsecode' => array ( 0 => 'http\\Message', 'response_code' => 'int', 'strict=' => 'mixed', ), - 'http\\Env\\Request::setResponseStatus' => + 'http\\env\\request::setresponsestatus' => array ( 0 => 'http\\Message', 'response_status' => 'string', ), - 'http\\Env\\Request::setType' => + 'http\\env\\request::settype' => array ( 0 => 'http\\Message', 'type' => 'int', ), - 'http\\Env\\Request::splitMultipartBody' => + 'http\\env\\request::splitmultipartbody' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Request::toCallback' => + 'http\\env\\request::tocallback' => array ( 0 => 'http\\Message', 'callback' => 'callable', ), - 'http\\Env\\Request::toStream' => + 'http\\env\\request::tostream' => array ( 0 => 'http\\Message', 'stream' => 'resource', ), - 'http\\Env\\Request::toString' => + 'http\\env\\request::tostring' => array ( 0 => 'string', 'include_parent=' => 'mixed', ), - 'http\\Env\\Request::unserialize' => + 'http\\env\\request::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\Env\\Request::valid' => + 'http\\env\\request::valid' => array ( 0 => 'bool', ), - 'http\\Env\\Response::__construct' => + 'http\\env\\response::__construct' => array ( 0 => 'void', ), - 'http\\Env\\Response::__invoke' => + 'http\\env\\response::__invoke' => array ( 0 => 'bool', 'data' => 'string', 'ob_flags=' => 'int', ), - 'http\\Env\\Response::__toString' => + 'http\\env\\response::__tostring' => array ( 0 => 'string', ), - 'http\\Env\\Response::addBody' => + 'http\\env\\response::addbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Env\\Response::addHeader' => + 'http\\env\\response::addheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value' => 'mixed', ), - 'http\\Env\\Response::addHeaders' => + 'http\\env\\response::addheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', 'append=' => 'mixed', ), - 'http\\Env\\Response::count' => + 'http\\env\\response::count' => array ( 0 => 'int', ), - 'http\\Env\\Response::current' => + 'http\\env\\response::current' => array ( 0 => 'mixed', ), - 'http\\Env\\Response::detach' => + 'http\\env\\response::detach' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Response::getBody' => + 'http\\env\\response::getbody' => array ( 0 => 'http\\Message\\Body', ), - 'http\\Env\\Response::getHeader' => + 'http\\env\\response::getheader' => array ( 0 => 'http\\Header|mixed', 'header' => 'string', 'into_class=' => 'mixed', ), - 'http\\Env\\Response::getHeaders' => + 'http\\env\\response::getheaders' => array ( 0 => 'array', ), - 'http\\Env\\Response::getHttpVersion' => + 'http\\env\\response::gethttpversion' => array ( 0 => 'string', ), - 'http\\Env\\Response::getInfo' => + 'http\\env\\response::getinfo' => array ( 0 => 'null|string', ), - 'http\\Env\\Response::getParentMessage' => + 'http\\env\\response::getparentmessage' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Response::getRequestMethod' => + 'http\\env\\response::getrequestmethod' => array ( 0 => 'false|string', ), - 'http\\Env\\Response::getRequestUrl' => + 'http\\env\\response::getrequesturl' => array ( 0 => 'false|string', ), - 'http\\Env\\Response::getResponseCode' => + 'http\\env\\response::getresponsecode' => array ( 0 => 'false|int', ), - 'http\\Env\\Response::getResponseStatus' => + 'http\\env\\response::getresponsestatus' => array ( 0 => 'false|string', ), - 'http\\Env\\Response::getType' => + 'http\\env\\response::gettype' => array ( 0 => 'int', ), - 'http\\Env\\Response::isCachedByETag' => + 'http\\env\\response::iscachedbyetag' => array ( 0 => 'int', 'header_name=' => 'string', ), - 'http\\Env\\Response::isCachedByLastModified' => + 'http\\env\\response::iscachedbylastmodified' => array ( 0 => 'int', 'header_name=' => 'string', ), - 'http\\Env\\Response::isMultipart' => + 'http\\env\\response::ismultipart' => array ( 0 => 'bool', '&boundary=' => 'mixed', ), - 'http\\Env\\Response::key' => + 'http\\env\\response::key' => array ( 0 => 'int|string', ), - 'http\\Env\\Response::next' => + 'http\\env\\response::next' => array ( 0 => 'void', ), - 'http\\Env\\Response::prepend' => + 'http\\env\\response::prepend' => array ( 0 => 'http\\Message', 'message' => 'http\\Message', 'top=' => 'mixed', ), - 'http\\Env\\Response::reverse' => + 'http\\env\\response::reverse' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Response::rewind' => + 'http\\env\\response::rewind' => array ( 0 => 'void', ), - 'http\\Env\\Response::send' => + 'http\\env\\response::send' => array ( 0 => 'bool', 'stream=' => 'resource', ), - 'http\\Env\\Response::serialize' => + 'http\\env\\response::serialize' => array ( 0 => 'string', ), - 'http\\Env\\Response::setBody' => + 'http\\env\\response::setbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Env\\Response::setCacheControl' => + 'http\\env\\response::setcachecontrol' => array ( 0 => 'http\\Env\\Response', 'cache_control' => 'string', ), - 'http\\Env\\Response::setContentDisposition' => + 'http\\env\\response::setcontentdisposition' => array ( 0 => 'http\\Env\\Response', 'disposition_params' => 'array', ), - 'http\\Env\\Response::setContentEncoding' => + 'http\\env\\response::setcontentencoding' => array ( 0 => 'http\\Env\\Response', 'content_encoding' => 'int', ), - 'http\\Env\\Response::setContentType' => + 'http\\env\\response::setcontenttype' => array ( 0 => 'http\\Env\\Response', 'content_type' => 'string', ), - 'http\\Env\\Response::setCookie' => + 'http\\env\\response::setcookie' => array ( 0 => 'http\\Env\\Response', 'cookie' => 'mixed', ), - 'http\\Env\\Response::setEnvRequest' => + 'http\\env\\response::setenvrequest' => array ( 0 => 'http\\Env\\Response', 'env_request' => 'http\\Message', ), - 'http\\Env\\Response::setEtag' => + 'http\\env\\response::setetag' => array ( 0 => 'http\\Env\\Response', 'etag' => 'string', ), - 'http\\Env\\Response::setHeader' => + 'http\\env\\response::setheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value=' => 'mixed', ), - 'http\\Env\\Response::setHeaders' => + 'http\\env\\response::setheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', ), - 'http\\Env\\Response::setHttpVersion' => + 'http\\env\\response::sethttpversion' => array ( 0 => 'http\\Message', 'http_version' => 'string', ), - 'http\\Env\\Response::setInfo' => + 'http\\env\\response::setinfo' => array ( 0 => 'http\\Message', 'http_info' => 'string', ), - 'http\\Env\\Response::setLastModified' => + 'http\\env\\response::setlastmodified' => array ( 0 => 'http\\Env\\Response', 'last_modified' => 'int', ), - 'http\\Env\\Response::setRequestMethod' => + 'http\\env\\response::setrequestmethod' => array ( 0 => 'http\\Message', 'request_method' => 'string', ), - 'http\\Env\\Response::setRequestUrl' => + 'http\\env\\response::setrequesturl' => array ( 0 => 'http\\Message', 'url' => 'string', ), - 'http\\Env\\Response::setResponseCode' => + 'http\\env\\response::setresponsecode' => array ( 0 => 'http\\Message', 'response_code' => 'int', 'strict=' => 'mixed', ), - 'http\\Env\\Response::setResponseStatus' => + 'http\\env\\response::setresponsestatus' => array ( 0 => 'http\\Message', 'response_status' => 'string', ), - 'http\\Env\\Response::setThrottleRate' => + 'http\\env\\response::setthrottlerate' => array ( 0 => 'http\\Env\\Response', 'chunk_size' => 'int', 'delay=' => 'float|int', ), - 'http\\Env\\Response::setType' => + 'http\\env\\response::settype' => array ( 0 => 'http\\Message', 'type' => 'int', ), - 'http\\Env\\Response::splitMultipartBody' => + 'http\\env\\response::splitmultipartbody' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Response::toCallback' => + 'http\\env\\response::tocallback' => array ( 0 => 'http\\Message', 'callback' => 'callable', ), - 'http\\Env\\Response::toStream' => + 'http\\env\\response::tostream' => array ( 0 => 'http\\Message', 'stream' => 'resource', ), - 'http\\Env\\Response::toString' => + 'http\\env\\response::tostring' => array ( 0 => 'string', 'include_parent=' => 'mixed', ), - 'http\\Env\\Response::unserialize' => + 'http\\env\\response::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\Env\\Response::valid' => + 'http\\env\\response::valid' => array ( 0 => 'bool', ), - 'http\\Header::__construct' => + 'http\\header::__construct' => array ( 0 => 'void', 'name=' => 'mixed', 'value=' => 'mixed', ), - 'http\\Header::__toString' => + 'http\\header::__tostring' => array ( 0 => 'string', ), - 'http\\Header::getParams' => + 'http\\header::getparams' => array ( 0 => 'http\\Params', 'param_sep=' => 'mixed', @@ -22234,339 +22234,339 @@ 'val_sep=' => 'mixed', 'flags=' => 'mixed', ), - 'http\\Header::match' => + 'http\\header::match' => array ( 0 => 'bool', 'value' => 'string', 'flags=' => 'mixed', ), - 'http\\Header::negotiate' => + 'http\\header::negotiate' => array ( 0 => 'null|string', 'supported' => 'array', '&result=' => 'mixed', ), - 'http\\Header::parse' => + 'http\\header::parse' => array ( 0 => 'array|false', 'string' => 'string', 'header_class=' => 'mixed', ), - 'http\\Header::serialize' => + 'http\\header::serialize' => array ( 0 => 'string', ), - 'http\\Header::toString' => + 'http\\header::tostring' => array ( 0 => 'string', ), - 'http\\Header::unserialize' => + 'http\\header::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\Header\\Parser::getState' => + 'http\\header\\parser::getstate' => array ( 0 => 'int', ), - 'http\\Header\\Parser::parse' => + 'http\\header\\parser::parse' => array ( 0 => 'int', 'data' => 'string', 'flags' => 'int', '&headers' => 'array', ), - 'http\\Header\\Parser::stream' => + 'http\\header\\parser::stream' => array ( 0 => 'int', 'stream' => 'resource', 'flags' => 'int', '&headers' => 'array', ), - 'http\\Message::__construct' => + 'http\\message::__construct' => array ( 0 => 'void', 'message=' => 'mixed', 'greedy=' => 'bool', ), - 'http\\Message::__toString' => + 'http\\message::__tostring' => array ( 0 => 'string', ), - 'http\\Message::addBody' => + 'http\\message::addbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Message::addHeader' => + 'http\\message::addheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value' => 'mixed', ), - 'http\\Message::addHeaders' => + 'http\\message::addheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', 'append=' => 'mixed', ), - 'http\\Message::count' => + 'http\\message::count' => array ( 0 => 'int', ), - 'http\\Message::current' => + 'http\\message::current' => array ( 0 => 'mixed', ), - 'http\\Message::detach' => + 'http\\message::detach' => array ( 0 => 'http\\Message', ), - 'http\\Message::getBody' => + 'http\\message::getbody' => array ( 0 => 'http\\Message\\Body', ), - 'http\\Message::getHeader' => + 'http\\message::getheader' => array ( 0 => 'http\\Header|mixed', 'header' => 'string', 'into_class=' => 'mixed', ), - 'http\\Message::getHeaders' => + 'http\\message::getheaders' => array ( 0 => 'array', ), - 'http\\Message::getHttpVersion' => + 'http\\message::gethttpversion' => array ( 0 => 'string', ), - 'http\\Message::getInfo' => + 'http\\message::getinfo' => array ( 0 => 'null|string', ), - 'http\\Message::getParentMessage' => + 'http\\message::getparentmessage' => array ( 0 => 'http\\Message', ), - 'http\\Message::getRequestMethod' => + 'http\\message::getrequestmethod' => array ( 0 => 'false|string', ), - 'http\\Message::getRequestUrl' => + 'http\\message::getrequesturl' => array ( 0 => 'false|string', ), - 'http\\Message::getResponseCode' => + 'http\\message::getresponsecode' => array ( 0 => 'false|int', ), - 'http\\Message::getResponseStatus' => + 'http\\message::getresponsestatus' => array ( 0 => 'false|string', ), - 'http\\Message::getType' => + 'http\\message::gettype' => array ( 0 => 'int', ), - 'http\\Message::isMultipart' => + 'http\\message::ismultipart' => array ( 0 => 'bool', '&boundary=' => 'mixed', ), - 'http\\Message::key' => + 'http\\message::key' => array ( 0 => 'int|string', ), - 'http\\Message::next' => + 'http\\message::next' => array ( 0 => 'void', ), - 'http\\Message::prepend' => + 'http\\message::prepend' => array ( 0 => 'http\\Message', 'message' => 'http\\Message', 'top=' => 'mixed', ), - 'http\\Message::reverse' => + 'http\\message::reverse' => array ( 0 => 'http\\Message', ), - 'http\\Message::rewind' => + 'http\\message::rewind' => array ( 0 => 'void', ), - 'http\\Message::serialize' => + 'http\\message::serialize' => array ( 0 => 'string', ), - 'http\\Message::setBody' => + 'http\\message::setbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Message::setHeader' => + 'http\\message::setheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value=' => 'mixed', ), - 'http\\Message::setHeaders' => + 'http\\message::setheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', ), - 'http\\Message::setHttpVersion' => + 'http\\message::sethttpversion' => array ( 0 => 'http\\Message', 'http_version' => 'string', ), - 'http\\Message::setInfo' => + 'http\\message::setinfo' => array ( 0 => 'http\\Message', 'http_info' => 'string', ), - 'http\\Message::setRequestMethod' => + 'http\\message::setrequestmethod' => array ( 0 => 'http\\Message', 'request_method' => 'string', ), - 'http\\Message::setRequestUrl' => + 'http\\message::setrequesturl' => array ( 0 => 'http\\Message', 'url' => 'string', ), - 'http\\Message::setResponseCode' => + 'http\\message::setresponsecode' => array ( 0 => 'http\\Message', 'response_code' => 'int', 'strict=' => 'mixed', ), - 'http\\Message::setResponseStatus' => + 'http\\message::setresponsestatus' => array ( 0 => 'http\\Message', 'response_status' => 'string', ), - 'http\\Message::setType' => + 'http\\message::settype' => array ( 0 => 'http\\Message', 'type' => 'int', ), - 'http\\Message::splitMultipartBody' => + 'http\\message::splitmultipartbody' => array ( 0 => 'http\\Message', ), - 'http\\Message::toCallback' => + 'http\\message::tocallback' => array ( 0 => 'http\\Message', 'callback' => 'callable', ), - 'http\\Message::toStream' => + 'http\\message::tostream' => array ( 0 => 'http\\Message', 'stream' => 'resource', ), - 'http\\Message::toString' => + 'http\\message::tostring' => array ( 0 => 'string', 'include_parent=' => 'mixed', ), - 'http\\Message::unserialize' => + 'http\\message::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\Message::valid' => + 'http\\message::valid' => array ( 0 => 'bool', ), - 'http\\Message\\Body::__construct' => + 'http\\message\\body::__construct' => array ( 0 => 'void', 'stream=' => 'resource', ), - 'http\\Message\\Body::__toString' => + 'http\\message\\body::__tostring' => array ( 0 => 'string', ), - 'http\\Message\\Body::addForm' => + 'http\\message\\body::addform' => array ( 0 => 'http\\Message\\Body', 'fields=' => 'array|null', 'files=' => 'array|null', ), - 'http\\Message\\Body::addPart' => + 'http\\message\\body::addpart' => array ( 0 => 'http\\Message\\Body', 'message' => 'http\\Message', ), - 'http\\Message\\Body::append' => + 'http\\message\\body::append' => array ( 0 => 'http\\Message\\Body', 'string' => 'string', ), - 'http\\Message\\Body::etag' => + 'http\\message\\body::etag' => array ( 0 => 'false|string', ), - 'http\\Message\\Body::getBoundary' => + 'http\\message\\body::getboundary' => array ( 0 => 'null|string', ), - 'http\\Message\\Body::getResource' => + 'http\\message\\body::getresource' => array ( 0 => 'resource', ), - 'http\\Message\\Body::serialize' => + 'http\\message\\body::serialize' => array ( 0 => 'string', ), - 'http\\Message\\Body::stat' => + 'http\\message\\body::stat' => array ( 0 => 'int|object', 'field=' => 'mixed', ), - 'http\\Message\\Body::toCallback' => + 'http\\message\\body::tocallback' => array ( 0 => 'http\\Message\\Body', 'callback' => 'callable', 'offset=' => 'mixed', 'maxlen=' => 'mixed', ), - 'http\\Message\\Body::toStream' => + 'http\\message\\body::tostream' => array ( 0 => 'http\\Message\\Body', 'stream' => 'resource', 'offset=' => 'mixed', 'maxlen=' => 'mixed', ), - 'http\\Message\\Body::toString' => + 'http\\message\\body::tostring' => array ( 0 => 'string', ), - 'http\\Message\\Body::unserialize' => + 'http\\message\\body::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\Message\\Parser::getState' => + 'http\\message\\parser::getstate' => array ( 0 => 'int', ), - 'http\\Message\\Parser::parse' => + 'http\\message\\parser::parse' => array ( 0 => 'int', 'data' => 'string', 'flags' => 'int', '&message' => 'http\\Message', ), - 'http\\Message\\Parser::stream' => + 'http\\message\\parser::stream' => array ( 0 => 'int', 'stream' => 'resource', 'flags' => 'int', '&message' => 'http\\Message', ), - 'http\\Params::__construct' => + 'http\\params::__construct' => array ( 0 => 'void', 'params=' => 'mixed', @@ -22575,49 +22575,49 @@ 'val_sep=' => 'mixed', 'flags=' => 'mixed', ), - 'http\\Params::__toString' => + 'http\\params::__tostring' => array ( 0 => 'string', ), - 'http\\Params::offsetExists' => + 'http\\params::offsetexists' => array ( 0 => 'bool', 'name' => 'int|string', ), - 'http\\Params::offsetGet' => + 'http\\params::offsetget' => array ( 0 => 'mixed', 'name' => 'int|string', ), - 'http\\Params::offsetSet' => + 'http\\params::offsetset' => array ( 0 => 'void', 'name' => 'int|null|string', 'value' => 'mixed', ), - 'http\\Params::offsetUnset' => + 'http\\params::offsetunset' => array ( 0 => 'void', 'name' => 'int|string', ), - 'http\\Params::toArray' => + 'http\\params::toarray' => array ( 0 => 'array', ), - 'http\\Params::toString' => + 'http\\params::tostring' => array ( 0 => 'string', ), - 'http\\QueryString::__construct' => + 'http\\querystring::__construct' => array ( 0 => 'void', 'querystring' => 'string', ), - 'http\\QueryString::__toString' => + 'http\\querystring::__tostring' => array ( 0 => 'string', ), - 'http\\QueryString::get' => + 'http\\querystring::get' => array ( 0 => 'http\\QueryString|mixed|string', 'name=' => 'string', @@ -22625,130 +22625,130 @@ 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\QueryString::getArray' => + 'http\\querystring::getarray' => array ( 0 => 'array|mixed', 'name' => 'string', 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\QueryString::getBool' => + 'http\\querystring::getbool' => array ( 0 => 'bool|mixed', 'name' => 'string', 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\QueryString::getFloat' => + 'http\\querystring::getfloat' => array ( 0 => 'float|mixed', 'name' => 'string', 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\QueryString::getGlobalInstance' => + 'http\\querystring::getglobalinstance' => array ( 0 => 'http\\QueryString', ), - 'http\\QueryString::getInt' => + 'http\\querystring::getint' => array ( 0 => 'int|mixed', 'name' => 'string', 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\QueryString::getIterator' => + 'http\\querystring::getiterator' => array ( 0 => 'IteratorAggregate', ), - 'http\\QueryString::getObject' => + 'http\\querystring::getobject' => array ( 0 => 'mixed|object', 'name' => 'string', 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\QueryString::getString' => + 'http\\querystring::getstring' => array ( 0 => 'mixed|string', 'name' => 'string', 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\QueryString::mod' => + 'http\\querystring::mod' => array ( 0 => 'http\\QueryString', 'params=' => 'mixed', ), - 'http\\QueryString::offsetExists' => + 'http\\querystring::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'http\\QueryString::offsetGet' => + 'http\\querystring::offsetget' => array ( 0 => 'mixed|null', 'offset' => 'int|string', ), - 'http\\QueryString::offsetSet' => + 'http\\querystring::offsetset' => array ( 0 => 'void', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'http\\QueryString::offsetUnset' => + 'http\\querystring::offsetunset' => array ( 0 => 'void', 'offset' => 'int|string', ), - 'http\\QueryString::serialize' => + 'http\\querystring::serialize' => array ( 0 => 'string', ), - 'http\\QueryString::set' => + 'http\\querystring::set' => array ( 0 => 'http\\QueryString', 'params' => 'mixed', ), - 'http\\QueryString::toArray' => + 'http\\querystring::toarray' => array ( 0 => 'array', ), - 'http\\QueryString::toString' => + 'http\\querystring::tostring' => array ( 0 => 'string', ), - 'http\\QueryString::unserialize' => + 'http\\querystring::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\QueryString::xlate' => + 'http\\querystring::xlate' => array ( 0 => 'http\\QueryString', ), - 'http\\Url::__construct' => + 'http\\url::__construct' => array ( 0 => 'void', 'old_url=' => 'mixed', 'new_url=' => 'mixed', 'flags=' => 'int', ), - 'http\\Url::__toString' => + 'http\\url::__tostring' => array ( 0 => 'string', ), - 'http\\Url::mod' => + 'http\\url::mod' => array ( 0 => 'http\\Url', 'parts' => 'mixed', 'flags=' => 'float|int|mixed', ), - 'http\\Url::toArray' => + 'http\\url::toarray' => array ( 0 => 'array', ), - 'http\\Url::toString' => + 'http\\url::tostring' => array ( 0 => 'string', ), @@ -23047,265 +23047,265 @@ 'sec' => 'float', 'bytes=' => 'int', ), - 'HttpDeflateStream::__construct' => + 'httpdeflatestream::__construct' => array ( 0 => 'void', 'flags=' => 'int', ), - 'HttpDeflateStream::factory' => + 'httpdeflatestream::factory' => array ( 0 => 'HttpDeflateStream', 'flags=' => 'int', 'class_name=' => 'string', ), - 'HttpDeflateStream::finish' => + 'httpdeflatestream::finish' => array ( 0 => 'string', 'data=' => 'string', ), - 'HttpDeflateStream::flush' => + 'httpdeflatestream::flush' => array ( 0 => 'false|string', 'data=' => 'string', ), - 'HttpDeflateStream::update' => + 'httpdeflatestream::update' => array ( 0 => 'false|string', 'data' => 'string', ), - 'HttpInflateStream::__construct' => + 'httpinflatestream::__construct' => array ( 0 => 'void', 'flags=' => 'int', ), - 'HttpInflateStream::factory' => + 'httpinflatestream::factory' => array ( 0 => 'HttpInflateStream', 'flags=' => 'int', 'class_name=' => 'string', ), - 'HttpInflateStream::finish' => + 'httpinflatestream::finish' => array ( 0 => 'string', 'data=' => 'string', ), - 'HttpInflateStream::flush' => + 'httpinflatestream::flush' => array ( 0 => 'false|string', 'data=' => 'string', ), - 'HttpInflateStream::update' => + 'httpinflatestream::update' => array ( 0 => 'false|string', 'data' => 'string', ), - 'HttpMessage::__construct' => + 'httpmessage::__construct' => array ( 0 => 'void', 'message=' => 'string', ), - 'HttpMessage::__toString' => + 'httpmessage::__tostring' => array ( 0 => 'string', ), - 'HttpMessage::addHeaders' => + 'httpmessage::addheaders' => array ( 0 => 'void', 'headers' => 'array', 'append=' => 'bool', ), - 'HttpMessage::count' => + 'httpmessage::count' => array ( 0 => 'int', ), - 'HttpMessage::current' => + 'httpmessage::current' => array ( 0 => 'mixed', ), - 'HttpMessage::detach' => + 'httpmessage::detach' => array ( 0 => 'HttpMessage', ), - 'HttpMessage::factory' => + 'httpmessage::factory' => array ( 0 => 'HttpMessage|null', 'raw_message=' => 'string', 'class_name=' => 'string', ), - 'HttpMessage::fromEnv' => + 'httpmessage::fromenv' => array ( 0 => 'HttpMessage|null', 'message_type' => 'int', 'class_name=' => 'string', ), - 'HttpMessage::fromString' => + 'httpmessage::fromstring' => array ( 0 => 'HttpMessage|null', 'raw_message=' => 'string', 'class_name=' => 'string', ), - 'HttpMessage::getBody' => + 'httpmessage::getbody' => array ( 0 => 'string', ), - 'HttpMessage::getHeader' => + 'httpmessage::getheader' => array ( 0 => 'null|string', 'header' => 'string', ), - 'HttpMessage::getHeaders' => + 'httpmessage::getheaders' => array ( 0 => 'array', ), - 'HttpMessage::getHttpVersion' => + 'httpmessage::gethttpversion' => array ( 0 => 'string', ), - 'HttpMessage::getInfo' => + 'httpmessage::getinfo' => array ( 0 => 'mixed', ), - 'HttpMessage::getParentMessage' => + 'httpmessage::getparentmessage' => array ( 0 => 'HttpMessage', ), - 'HttpMessage::getRequestMethod' => + 'httpmessage::getrequestmethod' => array ( 0 => 'false|string', ), - 'HttpMessage::getRequestUrl' => + 'httpmessage::getrequesturl' => array ( 0 => 'false|string', ), - 'HttpMessage::getResponseCode' => + 'httpmessage::getresponsecode' => array ( 0 => 'int', ), - 'HttpMessage::getResponseStatus' => + 'httpmessage::getresponsestatus' => array ( 0 => 'string', ), - 'HttpMessage::getType' => + 'httpmessage::gettype' => array ( 0 => 'int', ), - 'HttpMessage::guessContentType' => + 'httpmessage::guesscontenttype' => array ( 0 => 'false|string', 'magic_file' => 'string', 'magic_mode=' => 'int', ), - 'HttpMessage::key' => + 'httpmessage::key' => array ( 0 => 'int|string', ), - 'HttpMessage::next' => + 'httpmessage::next' => array ( 0 => 'void', ), - 'HttpMessage::prepend' => + 'httpmessage::prepend' => array ( 0 => 'void', 'message' => 'HttpMessage', 'top=' => 'bool', ), - 'HttpMessage::reverse' => + 'httpmessage::reverse' => array ( 0 => 'HttpMessage', ), - 'HttpMessage::rewind' => + 'httpmessage::rewind' => array ( 0 => 'void', ), - 'HttpMessage::send' => + 'httpmessage::send' => array ( 0 => 'bool', ), - 'HttpMessage::serialize' => + 'httpmessage::serialize' => array ( 0 => 'string', ), - 'HttpMessage::setBody' => + 'httpmessage::setbody' => array ( 0 => 'void', 'body' => 'string', ), - 'HttpMessage::setHeaders' => + 'httpmessage::setheaders' => array ( 0 => 'void', 'headers' => 'array', ), - 'HttpMessage::setHttpVersion' => + 'httpmessage::sethttpversion' => array ( 0 => 'bool', 'version' => 'string', ), - 'HttpMessage::setInfo' => + 'httpmessage::setinfo' => array ( 0 => 'mixed', 'http_info' => 'mixed', ), - 'HttpMessage::setRequestMethod' => + 'httpmessage::setrequestmethod' => array ( 0 => 'bool', 'method' => 'string', ), - 'HttpMessage::setRequestUrl' => + 'httpmessage::setrequesturl' => array ( 0 => 'bool', 'url' => 'string', ), - 'HttpMessage::setResponseCode' => + 'httpmessage::setresponsecode' => array ( 0 => 'bool', 'code' => 'int', ), - 'HttpMessage::setResponseStatus' => + 'httpmessage::setresponsestatus' => array ( 0 => 'bool', 'status' => 'string', ), - 'HttpMessage::setType' => + 'httpmessage::settype' => array ( 0 => 'void', 'type' => 'int', ), - 'HttpMessage::toMessageTypeObject' => + 'httpmessage::tomessagetypeobject' => array ( 0 => 'HttpRequest|HttpResponse|null', ), - 'HttpMessage::toString' => + 'httpmessage::tostring' => array ( 0 => 'string', 'include_parent=' => 'bool', ), - 'HttpMessage::unserialize' => + 'httpmessage::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'HttpMessage::valid' => + 'httpmessage::valid' => array ( 0 => 'bool', ), - 'HttpQueryString::__construct' => + 'httpquerystring::__construct' => array ( 0 => 'void', 'global=' => 'bool', 'add=' => 'mixed', ), - 'HttpQueryString::__toString' => + 'httpquerystring::__tostring' => array ( 0 => 'string', ), - 'HttpQueryString::factory' => + 'httpquerystring::factory' => array ( 0 => 'mixed', 'global' => 'mixed', 'params' => 'mixed', 'class_name' => 'mixed', ), - 'HttpQueryString::get' => + 'httpquerystring::get' => array ( 0 => 'mixed', 'key=' => 'string', @@ -23313,176 +23313,176 @@ 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'HttpQueryString::getArray' => + 'httpquerystring::getarray' => array ( 0 => 'mixed', 'name' => 'mixed', 'defval' => 'mixed', 'delete' => 'mixed', ), - 'HttpQueryString::getBool' => + 'httpquerystring::getbool' => array ( 0 => 'mixed', 'name' => 'mixed', 'defval' => 'mixed', 'delete' => 'mixed', ), - 'HttpQueryString::getFloat' => + 'httpquerystring::getfloat' => array ( 0 => 'mixed', 'name' => 'mixed', 'defval' => 'mixed', 'delete' => 'mixed', ), - 'HttpQueryString::getInt' => + 'httpquerystring::getint' => array ( 0 => 'mixed', 'name' => 'mixed', 'defval' => 'mixed', 'delete' => 'mixed', ), - 'HttpQueryString::getObject' => + 'httpquerystring::getobject' => array ( 0 => 'mixed', 'name' => 'mixed', 'defval' => 'mixed', 'delete' => 'mixed', ), - 'HttpQueryString::getString' => + 'httpquerystring::getstring' => array ( 0 => 'mixed', 'name' => 'mixed', 'defval' => 'mixed', 'delete' => 'mixed', ), - 'HttpQueryString::mod' => + 'httpquerystring::mod' => array ( 0 => 'HttpQueryString', 'params' => 'mixed', ), - 'HttpQueryString::offsetExists' => + 'httpquerystring::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'HttpQueryString::offsetGet' => + 'httpquerystring::offsetget' => array ( 0 => 'mixed', 'offset' => 'int|string', ), - 'HttpQueryString::offsetSet' => + 'httpquerystring::offsetset' => array ( 0 => 'void', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'HttpQueryString::offsetUnset' => + 'httpquerystring::offsetunset' => array ( 0 => 'void', 'offset' => 'int|string', ), - 'HttpQueryString::serialize' => + 'httpquerystring::serialize' => array ( 0 => 'string', ), - 'HttpQueryString::set' => + 'httpquerystring::set' => array ( 0 => 'string', 'params' => 'mixed', ), - 'HttpQueryString::singleton' => + 'httpquerystring::singleton' => array ( 0 => 'HttpQueryString', 'global=' => 'bool', ), - 'HttpQueryString::toArray' => + 'httpquerystring::toarray' => array ( 0 => 'array', ), - 'HttpQueryString::toString' => + 'httpquerystring::tostring' => array ( 0 => 'string', ), - 'HttpQueryString::unserialize' => + 'httpquerystring::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'HttpQueryString::xlate' => + 'httpquerystring::xlate' => array ( 0 => 'bool', 'ie' => 'string', 'oe' => 'string', ), - 'HttpRequest::__construct' => + 'httprequest::__construct' => array ( 0 => 'void', 'url=' => 'string', 'request_method=' => 'int', 'options=' => 'array', ), - 'HttpRequest::addBody' => + 'httprequest::addbody' => array ( 0 => 'mixed', 'request_body_data' => 'mixed', ), - 'HttpRequest::addCookies' => + 'httprequest::addcookies' => array ( 0 => 'bool', 'cookies' => 'array', ), - 'HttpRequest::addHeaders' => + 'httprequest::addheaders' => array ( 0 => 'bool', 'headers' => 'array', ), - 'HttpRequest::addPostFields' => + 'httprequest::addpostfields' => array ( 0 => 'bool', 'post_data' => 'array', ), - 'HttpRequest::addPostFile' => + 'httprequest::addpostfile' => array ( 0 => 'bool', 'name' => 'string', 'file' => 'string', 'content_type=' => 'string', ), - 'HttpRequest::addPutData' => + 'httprequest::addputdata' => array ( 0 => 'bool', 'put_data' => 'string', ), - 'HttpRequest::addQueryData' => + 'httprequest::addquerydata' => array ( 0 => 'bool', 'query_params' => 'array', ), - 'HttpRequest::addRawPostData' => + 'httprequest::addrawpostdata' => array ( 0 => 'bool', 'raw_post_data' => 'string', ), - 'HttpRequest::addSslOptions' => + 'httprequest::addssloptions' => array ( 0 => 'bool', 'options' => 'array', ), - 'HttpRequest::clearHistory' => + 'httprequest::clearhistory' => array ( 0 => 'void', ), - 'HttpRequest::enableCookies' => + 'httprequest::enablecookies' => array ( 0 => 'bool', ), - 'HttpRequest::encodeBody' => + 'httprequest::encodebody' => array ( 0 => 'mixed', 'fields' => 'mixed', 'files' => 'mixed', ), - 'HttpRequest::factory' => + 'httprequest::factory' => array ( 0 => 'mixed', 'url' => 'mixed', @@ -23490,153 +23490,153 @@ 'options' => 'mixed', 'class_name' => 'mixed', ), - 'HttpRequest::flushCookies' => + 'httprequest::flushcookies' => array ( 0 => 'mixed', ), - 'HttpRequest::get' => + 'httprequest::get' => array ( 0 => 'mixed', 'url' => 'mixed', 'options' => 'mixed', '&info' => 'mixed', ), - 'HttpRequest::getBody' => + 'httprequest::getbody' => array ( 0 => 'mixed', ), - 'HttpRequest::getContentType' => + 'httprequest::getcontenttype' => array ( 0 => 'string', ), - 'HttpRequest::getCookies' => + 'httprequest::getcookies' => array ( 0 => 'array', ), - 'HttpRequest::getHeaders' => + 'httprequest::getheaders' => array ( 0 => 'array', ), - 'HttpRequest::getHistory' => + 'httprequest::gethistory' => array ( 0 => 'HttpMessage', ), - 'HttpRequest::getMethod' => + 'httprequest::getmethod' => array ( 0 => 'int', ), - 'HttpRequest::getOptions' => + 'httprequest::getoptions' => array ( 0 => 'array', ), - 'HttpRequest::getPostFields' => + 'httprequest::getpostfields' => array ( 0 => 'array', ), - 'HttpRequest::getPostFiles' => + 'httprequest::getpostfiles' => array ( 0 => 'array', ), - 'HttpRequest::getPutData' => + 'httprequest::getputdata' => array ( 0 => 'string', ), - 'HttpRequest::getPutFile' => + 'httprequest::getputfile' => array ( 0 => 'string', ), - 'HttpRequest::getQueryData' => + 'httprequest::getquerydata' => array ( 0 => 'string', ), - 'HttpRequest::getRawPostData' => + 'httprequest::getrawpostdata' => array ( 0 => 'string', ), - 'HttpRequest::getRawRequestMessage' => + 'httprequest::getrawrequestmessage' => array ( 0 => 'string', ), - 'HttpRequest::getRawResponseMessage' => + 'httprequest::getrawresponsemessage' => array ( 0 => 'string', ), - 'HttpRequest::getRequestMessage' => + 'httprequest::getrequestmessage' => array ( 0 => 'HttpMessage', ), - 'HttpRequest::getResponseBody' => + 'httprequest::getresponsebody' => array ( 0 => 'string', ), - 'HttpRequest::getResponseCode' => + 'httprequest::getresponsecode' => array ( 0 => 'int', ), - 'HttpRequest::getResponseCookies' => + 'httprequest::getresponsecookies' => array ( 0 => 'array', 'flags=' => 'int', 'allowed_extras=' => 'array', ), - 'HttpRequest::getResponseData' => + 'httprequest::getresponsedata' => array ( 0 => 'array', ), - 'HttpRequest::getResponseHeader' => + 'httprequest::getresponseheader' => array ( 0 => 'mixed', 'name=' => 'string', ), - 'HttpRequest::getResponseInfo' => + 'httprequest::getresponseinfo' => array ( 0 => 'mixed', 'name=' => 'string', ), - 'HttpRequest::getResponseMessage' => + 'httprequest::getresponsemessage' => array ( 0 => 'HttpMessage', ), - 'HttpRequest::getResponseStatus' => + 'httprequest::getresponsestatus' => array ( 0 => 'string', ), - 'HttpRequest::getSslOptions' => + 'httprequest::getssloptions' => array ( 0 => 'array', ), - 'HttpRequest::getUrl' => + 'httprequest::geturl' => array ( 0 => 'string', ), - 'HttpRequest::head' => + 'httprequest::head' => array ( 0 => 'mixed', 'url' => 'mixed', 'options' => 'mixed', '&info' => 'mixed', ), - 'HttpRequest::methodExists' => + 'httprequest::methodexists' => array ( 0 => 'mixed', 'method' => 'mixed', ), - 'HttpRequest::methodName' => + 'httprequest::methodname' => array ( 0 => 'mixed', 'method_id' => 'mixed', ), - 'HttpRequest::methodRegister' => + 'httprequest::methodregister' => array ( 0 => 'mixed', 'method_name' => 'mixed', ), - 'HttpRequest::methodUnregister' => + 'httprequest::methodunregister' => array ( 0 => 'mixed', 'method' => 'mixed', ), - 'HttpRequest::postData' => + 'httprequest::postdata' => array ( 0 => 'mixed', 'url' => 'mixed', @@ -23644,7 +23644,7 @@ 'options' => 'mixed', '&info' => 'mixed', ), - 'HttpRequest::postFields' => + 'httprequest::postfields' => array ( 0 => 'mixed', 'url' => 'mixed', @@ -23652,7 +23652,7 @@ 'options' => 'mixed', '&info' => 'mixed', ), - 'HttpRequest::putData' => + 'httprequest::putdata' => array ( 0 => 'mixed', 'url' => 'mixed', @@ -23660,7 +23660,7 @@ 'options' => 'mixed', '&info' => 'mixed', ), - 'HttpRequest::putFile' => + 'httprequest::putfile' => array ( 0 => 'mixed', 'url' => 'mixed', @@ -23668,7 +23668,7 @@ 'options' => 'mixed', '&info' => 'mixed', ), - 'HttpRequest::putStream' => + 'httprequest::putstream' => array ( 0 => 'mixed', 'url' => 'mixed', @@ -23676,276 +23676,276 @@ 'options' => 'mixed', '&info' => 'mixed', ), - 'HttpRequest::resetCookies' => + 'httprequest::resetcookies' => array ( 0 => 'bool', 'session_only=' => 'bool', ), - 'HttpRequest::send' => + 'httprequest::send' => array ( 0 => 'HttpMessage', ), - 'HttpRequest::setBody' => + 'httprequest::setbody' => array ( 0 => 'bool', 'request_body_data=' => 'string', ), - 'HttpRequest::setContentType' => + 'httprequest::setcontenttype' => array ( 0 => 'bool', 'content_type' => 'string', ), - 'HttpRequest::setCookies' => + 'httprequest::setcookies' => array ( 0 => 'bool', 'cookies=' => 'array', ), - 'HttpRequest::setHeaders' => + 'httprequest::setheaders' => array ( 0 => 'bool', 'headers=' => 'array', ), - 'HttpRequest::setMethod' => + 'httprequest::setmethod' => array ( 0 => 'bool', 'request_method' => 'int', ), - 'HttpRequest::setOptions' => + 'httprequest::setoptions' => array ( 0 => 'bool', 'options=' => 'array', ), - 'HttpRequest::setPostFields' => + 'httprequest::setpostfields' => array ( 0 => 'bool', 'post_data' => 'array', ), - 'HttpRequest::setPostFiles' => + 'httprequest::setpostfiles' => array ( 0 => 'bool', 'post_files' => 'array', ), - 'HttpRequest::setPutData' => + 'httprequest::setputdata' => array ( 0 => 'bool', 'put_data=' => 'string', ), - 'HttpRequest::setPutFile' => + 'httprequest::setputfile' => array ( 0 => 'bool', 'file=' => 'string', ), - 'HttpRequest::setQueryData' => + 'httprequest::setquerydata' => array ( 0 => 'bool', 'query_data' => 'mixed', ), - 'HttpRequest::setRawPostData' => + 'httprequest::setrawpostdata' => array ( 0 => 'bool', 'raw_post_data=' => 'string', ), - 'HttpRequest::setSslOptions' => + 'httprequest::setssloptions' => array ( 0 => 'bool', 'options=' => 'array', ), - 'HttpRequest::setUrl' => + 'httprequest::seturl' => array ( 0 => 'bool', 'url' => 'string', ), - 'HttpRequestDataShare::__construct' => + 'httprequestdatashare::__construct' => array ( 0 => 'void', ), - 'HttpRequestDataShare::__destruct' => + 'httprequestdatashare::__destruct' => array ( 0 => 'void', ), - 'HttpRequestDataShare::attach' => + 'httprequestdatashare::attach' => array ( 0 => 'mixed', 'request' => 'HttpRequest', ), - 'HttpRequestDataShare::count' => + 'httprequestdatashare::count' => array ( 0 => 'int', ), - 'HttpRequestDataShare::detach' => + 'httprequestdatashare::detach' => array ( 0 => 'mixed', 'request' => 'HttpRequest', ), - 'HttpRequestDataShare::factory' => + 'httprequestdatashare::factory' => array ( 0 => 'mixed', 'global' => 'mixed', 'class_name' => 'mixed', ), - 'HttpRequestDataShare::reset' => + 'httprequestdatashare::reset' => array ( 0 => 'mixed', ), - 'HttpRequestDataShare::singleton' => + 'httprequestdatashare::singleton' => array ( 0 => 'mixed', 'global' => 'mixed', ), - 'HttpRequestPool::__construct' => + 'httprequestpool::__construct' => array ( 0 => 'void', 'request=' => 'HttpRequest', ), - 'HttpRequestPool::__destruct' => + 'httprequestpool::__destruct' => array ( 0 => 'void', ), - 'HttpRequestPool::attach' => + 'httprequestpool::attach' => array ( 0 => 'bool', 'request' => 'HttpRequest', ), - 'HttpRequestPool::count' => + 'httprequestpool::count' => array ( 0 => 'int', ), - 'HttpRequestPool::current' => + 'httprequestpool::current' => array ( 0 => 'mixed', ), - 'HttpRequestPool::detach' => + 'httprequestpool::detach' => array ( 0 => 'bool', 'request' => 'HttpRequest', ), - 'HttpRequestPool::enableEvents' => + 'httprequestpool::enableevents' => array ( 0 => 'mixed', 'enable' => 'mixed', ), - 'HttpRequestPool::enablePipelining' => + 'httprequestpool::enablepipelining' => array ( 0 => 'mixed', 'enable' => 'mixed', ), - 'HttpRequestPool::getAttachedRequests' => + 'httprequestpool::getattachedrequests' => array ( 0 => 'array', ), - 'HttpRequestPool::getFinishedRequests' => + 'httprequestpool::getfinishedrequests' => array ( 0 => 'array', ), - 'HttpRequestPool::key' => + 'httprequestpool::key' => array ( 0 => 'int|string', ), - 'HttpRequestPool::next' => + 'httprequestpool::next' => array ( 0 => 'void', ), - 'HttpRequestPool::reset' => + 'httprequestpool::reset' => array ( 0 => 'void', ), - 'HttpRequestPool::rewind' => + 'httprequestpool::rewind' => array ( 0 => 'void', ), - 'HttpRequestPool::send' => + 'httprequestpool::send' => array ( 0 => 'bool', ), - 'HttpRequestPool::socketPerform' => + 'httprequestpool::socketperform' => array ( 0 => 'bool', ), - 'HttpRequestPool::socketSelect' => + 'httprequestpool::socketselect' => array ( 0 => 'bool', 'timeout=' => 'float', ), - 'HttpRequestPool::valid' => + 'httprequestpool::valid' => array ( 0 => 'bool', ), - 'HttpResponse::capture' => + 'httpresponse::capture' => array ( 0 => 'void', ), - 'HttpResponse::getBufferSize' => + 'httpresponse::getbuffersize' => array ( 0 => 'int', ), - 'HttpResponse::getCache' => + 'httpresponse::getcache' => array ( 0 => 'bool', ), - 'HttpResponse::getCacheControl' => + 'httpresponse::getcachecontrol' => array ( 0 => 'string', ), - 'HttpResponse::getContentDisposition' => + 'httpresponse::getcontentdisposition' => array ( 0 => 'string', ), - 'HttpResponse::getContentType' => + 'httpresponse::getcontenttype' => array ( 0 => 'string', ), - 'HttpResponse::getData' => + 'httpresponse::getdata' => array ( 0 => 'string', ), - 'HttpResponse::getETag' => + 'httpresponse::getetag' => array ( 0 => 'string', ), - 'HttpResponse::getFile' => + 'httpresponse::getfile' => array ( 0 => 'string', ), - 'HttpResponse::getGzip' => + 'httpresponse::getgzip' => array ( 0 => 'bool', ), - 'HttpResponse::getHeader' => + 'httpresponse::getheader' => array ( 0 => 'mixed', 'name=' => 'string', ), - 'HttpResponse::getLastModified' => + 'httpresponse::getlastmodified' => array ( 0 => 'int', ), - 'HttpResponse::getRequestBody' => + 'httpresponse::getrequestbody' => array ( 0 => 'string', ), - 'HttpResponse::getRequestBodyStream' => + 'httpresponse::getrequestbodystream' => array ( 0 => 'resource', ), - 'HttpResponse::getRequestHeaders' => + 'httpresponse::getrequestheaders' => array ( 0 => 'array', ), - 'HttpResponse::getStream' => + 'httpresponse::getstream' => array ( 0 => 'resource', ), - 'HttpResponse::getThrottleDelay' => + 'httpresponse::getthrottledelay' => array ( 0 => 'float', ), - 'HttpResponse::guessContentType' => + 'httpresponse::guesscontenttype' => array ( 0 => 'false|string', 'magic_file' => 'string', 'magic_mode=' => 'int', ), - 'HttpResponse::redirect' => + 'httpresponse::redirect' => array ( 0 => 'void', 'url=' => 'string', @@ -23953,99 +23953,99 @@ 'session=' => 'bool', 'status=' => 'int', ), - 'HttpResponse::send' => + 'httpresponse::send' => array ( 0 => 'bool', 'clean_ob=' => 'bool', ), - 'HttpResponse::setBufferSize' => + 'httpresponse::setbuffersize' => array ( 0 => 'bool', 'bytes' => 'int', ), - 'HttpResponse::setCache' => + 'httpresponse::setcache' => array ( 0 => 'bool', 'cache' => 'bool', ), - 'HttpResponse::setCacheControl' => + 'httpresponse::setcachecontrol' => array ( 0 => 'bool', 'control' => 'string', 'max_age=' => 'int', 'must_revalidate=' => 'bool', ), - 'HttpResponse::setContentDisposition' => + 'httpresponse::setcontentdisposition' => array ( 0 => 'bool', 'filename' => 'string', 'inline=' => 'bool', ), - 'HttpResponse::setContentType' => + 'httpresponse::setcontenttype' => array ( 0 => 'bool', 'content_type' => 'string', ), - 'HttpResponse::setData' => + 'httpresponse::setdata' => array ( 0 => 'bool', 'data' => 'mixed', ), - 'HttpResponse::setETag' => + 'httpresponse::setetag' => array ( 0 => 'bool', 'etag' => 'string', ), - 'HttpResponse::setFile' => + 'httpresponse::setfile' => array ( 0 => 'bool', 'file' => 'string', ), - 'HttpResponse::setGzip' => + 'httpresponse::setgzip' => array ( 0 => 'bool', 'gzip' => 'bool', ), - 'HttpResponse::setHeader' => + 'httpresponse::setheader' => array ( 0 => 'bool', 'name' => 'string', 'value=' => 'mixed', 'replace=' => 'bool', ), - 'HttpResponse::setLastModified' => + 'httpresponse::setlastmodified' => array ( 0 => 'bool', 'timestamp' => 'int', ), - 'HttpResponse::setStream' => + 'httpresponse::setstream' => array ( 0 => 'bool', 'stream' => 'resource', ), - 'HttpResponse::setThrottleDelay' => + 'httpresponse::setthrottledelay' => array ( 0 => 'bool', 'seconds' => 'float', ), - 'HttpResponse::status' => + 'httpresponse::status' => array ( 0 => 'bool', 'status' => 'int', ), - 'HttpUtil::buildCookie' => + 'httputil::buildcookie' => array ( 0 => 'mixed', 'cookie_array' => 'mixed', ), - 'HttpUtil::buildStr' => + 'httputil::buildstr' => array ( 0 => 'mixed', 'query' => 'mixed', 'prefix' => 'mixed', 'arg_sep' => 'mixed', ), - 'HttpUtil::buildUrl' => + 'httputil::buildurl' => array ( 0 => 'mixed', 'url' => 'mixed', @@ -24053,86 +24053,86 @@ 'flags' => 'mixed', '&composed' => 'mixed', ), - 'HttpUtil::chunkedDecode' => + 'httputil::chunkeddecode' => array ( 0 => 'mixed', 'encoded_string' => 'mixed', ), - 'HttpUtil::date' => + 'httputil::date' => array ( 0 => 'mixed', 'timestamp' => 'mixed', ), - 'HttpUtil::deflate' => + 'httputil::deflate' => array ( 0 => 'mixed', 'plain' => 'mixed', 'flags' => 'mixed', ), - 'HttpUtil::inflate' => + 'httputil::inflate' => array ( 0 => 'mixed', 'encoded' => 'mixed', ), - 'HttpUtil::matchEtag' => + 'httputil::matchetag' => array ( 0 => 'mixed', 'plain_etag' => 'mixed', 'for_range' => 'mixed', ), - 'HttpUtil::matchModified' => + 'httputil::matchmodified' => array ( 0 => 'mixed', 'last_modified' => 'mixed', 'for_range' => 'mixed', ), - 'HttpUtil::matchRequestHeader' => + 'httputil::matchrequestheader' => array ( 0 => 'mixed', 'header_name' => 'mixed', 'header_value' => 'mixed', 'case_sensitive' => 'mixed', ), - 'HttpUtil::negotiateCharset' => + 'httputil::negotiatecharset' => array ( 0 => 'mixed', 'supported' => 'mixed', '&result' => 'mixed', ), - 'HttpUtil::negotiateContentType' => + 'httputil::negotiatecontenttype' => array ( 0 => 'mixed', 'supported' => 'mixed', '&result' => 'mixed', ), - 'HttpUtil::negotiateLanguage' => + 'httputil::negotiatelanguage' => array ( 0 => 'mixed', 'supported' => 'mixed', '&result' => 'mixed', ), - 'HttpUtil::parseCookie' => + 'httputil::parsecookie' => array ( 0 => 'mixed', 'cookie_string' => 'mixed', ), - 'HttpUtil::parseHeaders' => + 'httputil::parseheaders' => array ( 0 => 'mixed', 'headers_string' => 'mixed', ), - 'HttpUtil::parseMessage' => + 'httputil::parsemessage' => array ( 0 => 'mixed', 'message_string' => 'mixed', ), - 'HttpUtil::parseParams' => + 'httputil::parseparams' => array ( 0 => 'mixed', 'param_string' => 'mixed', 'flags' => 'mixed', ), - 'HttpUtil::support' => + 'httputil::support' => array ( 0 => 'mixed', 'feature' => 'mixed', @@ -24392,7 +24392,7 @@ array ( 0 => 'HW_API_Reason', ), - 'hw_Array2Objrec' => + 'hw_array2objrec' => array ( 0 => 'string', 'object_array' => 'array', @@ -24404,24 +24404,24 @@ 'objid' => 'int', 'attributes' => 'array', ), - 'hw_Children' => + 'hw_children' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_ChildrenObj' => + 'hw_childrenobj' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_Close' => + 'hw_close' => array ( 0 => 'bool', 'connection' => 'int', ), - 'hw_Connect' => + 'hw_connect' => array ( 0 => 'int', 'host' => 'string', @@ -24441,47 +24441,47 @@ 'object_id_array' => 'array', 'destination_id' => 'int', ), - 'hw_Deleteobject' => + 'hw_deleteobject' => array ( 0 => 'bool', 'connection' => 'int', 'object_to_delete' => 'int', ), - 'hw_DocByAnchor' => + 'hw_docbyanchor' => array ( 0 => 'int', 'connection' => 'int', 'anchorid' => 'int', ), - 'hw_DocByAnchorObj' => + 'hw_docbyanchorobj' => array ( 0 => 'string', 'connection' => 'int', 'anchorid' => 'int', ), - 'hw_Document_Attributes' => + 'hw_document_attributes' => array ( 0 => 'string', 'hw_document' => 'int', ), - 'hw_Document_BodyTag' => + 'hw_document_bodytag' => array ( 0 => 'string', 'hw_document' => 'int', 'prefix=' => 'string', ), - 'hw_Document_Content' => + 'hw_document_content' => array ( 0 => 'string', 'hw_document' => 'int', ), - 'hw_Document_SetContent' => + 'hw_document_setcontent' => array ( 0 => 'bool', 'hw_document' => 'int', 'content' => 'string', ), - 'hw_Document_Size' => + 'hw_document_size' => array ( 0 => 'int', 'hw_document' => 'int', @@ -24493,84 +24493,84 @@ 'id' => 'int', 'msgid' => 'int', ), - 'hw_EditText' => + 'hw_edittext' => array ( 0 => 'bool', 'connection' => 'int', 'hw_document' => 'int', ), - 'hw_Error' => + 'hw_error' => array ( 0 => 'int', 'connection' => 'int', ), - 'hw_ErrorMsg' => + 'hw_errormsg' => array ( 0 => 'string', 'connection' => 'int', ), - 'hw_Free_Document' => + 'hw_free_document' => array ( 0 => 'bool', 'hw_document' => 'int', ), - 'hw_GetAnchors' => + 'hw_getanchors' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetAnchorsObj' => + 'hw_getanchorsobj' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetAndLock' => + 'hw_getandlock' => array ( 0 => 'string', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetChildColl' => + 'hw_getchildcoll' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetChildCollObj' => + 'hw_getchildcollobj' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetChildDocColl' => + 'hw_getchilddoccoll' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetChildDocCollObj' => + 'hw_getchilddoccollobj' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetObject' => + 'hw_getobject' => array ( 0 => 'mixed', 'connection' => 'int', 'objectid' => 'mixed', 'query=' => 'string', ), - 'hw_GetObjectByQuery' => + 'hw_getobjectbyquery' => array ( 0 => 'array', 'connection' => 'int', 'query' => 'string', 'max_hits' => 'int', ), - 'hw_GetObjectByQueryColl' => + 'hw_getobjectbyquerycoll' => array ( 0 => 'array', 'connection' => 'int', @@ -24578,7 +24578,7 @@ 'query' => 'string', 'max_hits' => 'int', ), - 'hw_GetObjectByQueryCollObj' => + 'hw_getobjectbyquerycollobj' => array ( 0 => 'array', 'connection' => 'int', @@ -24586,20 +24586,20 @@ 'query' => 'string', 'max_hits' => 'int', ), - 'hw_GetObjectByQueryObj' => + 'hw_getobjectbyqueryobj' => array ( 0 => 'array', 'connection' => 'int', 'query' => 'string', 'max_hits' => 'int', ), - 'hw_GetParents' => + 'hw_getparents' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetParentsObj' => + 'hw_getparentsobj' => array ( 0 => 'array', 'connection' => 'int', @@ -24613,7 +24613,7 @@ 'sourceid' => 'int', 'destid' => 'int', ), - 'hw_GetRemote' => + 'hw_getremote' => array ( 0 => 'int', 'connection' => 'int', @@ -24625,13 +24625,13 @@ 'connection' => 'int', 'object_record' => 'string', ), - 'hw_GetSrcByDestObj' => + 'hw_getsrcbydestobj' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetText' => + 'hw_gettext' => array ( 0 => 'int', 'connection' => 'int', @@ -24643,14 +24643,14 @@ 0 => 'string', 'connection' => 'int', ), - 'hw_Identify' => + 'hw_identify' => array ( 0 => 'string', 'link' => 'int', 'username' => 'string', 'password' => 'string', ), - 'hw_InCollections' => + 'hw_incollections' => array ( 0 => 'array', 'connection' => 'int', @@ -24658,19 +24658,19 @@ 'collection_id_array' => 'array', 'return_collections' => 'int', ), - 'hw_Info' => + 'hw_info' => array ( 0 => 'string', 'connection' => 'int', ), - 'hw_InsColl' => + 'hw_inscoll' => array ( 0 => 'int', 'connection' => 'int', 'objectid' => 'int', 'object_array' => 'array', ), - 'hw_InsDoc' => + 'hw_insdoc' => array ( 0 => 'int', 'connection' => 'mixed', @@ -24686,14 +24686,14 @@ 'dest' => 'array', 'urlprefixes=' => 'array', ), - 'hw_InsertDocument' => + 'hw_insertdocument' => array ( 0 => 'int', 'connection' => 'int', 'parent_id' => 'int', 'hw_document' => 'int', ), - 'hw_InsertObject' => + 'hw_insertobject' => array ( 0 => 'int', 'connection' => 'int', @@ -24707,7 +24707,7 @@ 'server_id' => 'int', 'object_id' => 'int', ), - 'hw_Modifyobject' => + 'hw_modifyobject' => array ( 0 => 'bool', 'connection' => 'int', @@ -24724,7 +24724,7 @@ 'source_id' => 'int', 'destination_id' => 'int', ), - 'hw_New_Document' => + 'hw_new_document' => array ( 0 => 'int', 'object_record' => 'string', @@ -24737,12 +24737,12 @@ 'object_record' => 'string', 'format=' => 'array', ), - 'hw_Output_Document' => + 'hw_output_document' => array ( 0 => 'bool', 'hw_document' => 'int', ), - 'hw_pConnect' => + 'hw_pconnect' => array ( 0 => 'int', 'host' => 'string', @@ -24750,14 +24750,14 @@ 'username=' => 'string', 'password=' => 'string', ), - 'hw_PipeDocument' => + 'hw_pipedocument' => array ( 0 => 'int', 'connection' => 'int', 'objectid' => 'int', 'url_prefixes=' => 'array', ), - 'hw_Root' => + 'hw_root' => array ( 0 => 'int', ), @@ -24772,13 +24772,13 @@ 0 => 'string', 'link' => 'int', ), - 'hw_Unlock' => + 'hw_unlock' => array ( 0 => 'bool', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_Who' => + 'hw_who' => array ( 0 => 'array', 'connection' => 'int', @@ -26224,7 +26224,7 @@ 0 => 'GdFont|false', 'filename' => 'string', ), - 'imageObj::pasteImage' => + 'imageobj::pasteimage' => array ( 0 => 'void', 'srcImg' => 'imageObj', @@ -26233,13 +26233,13 @@ 'dstY' => 'int', 'angle' => 'int', ), - 'imageObj::saveImage' => + 'imageobj::saveimage' => array ( 0 => 'int', 'filename' => 'string', 'oMap' => 'mapObj', ), - 'imageObj::saveWebImage' => + 'imageobj::savewebimage' => array ( 0 => 'string', ), @@ -26448,65 +26448,65 @@ 'filename' => 'null|string', 'foreground_color=' => 'int|null', ), - 'Imagick::__construct' => + 'imagick::__construct' => array ( 0 => 'void', 'files=' => 'array|string', ), - 'Imagick::__toString' => + 'imagick::__tostring' => array ( 0 => 'string', ), - 'Imagick::adaptiveBlurImage' => + 'imagick::adaptiveblurimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', 'channel=' => 'int', ), - 'Imagick::adaptiveResizeImage' => + 'imagick::adaptiveresizeimage' => array ( 0 => 'bool', 'columns' => 'int', 'rows' => 'int', 'bestfit=' => 'bool', ), - 'Imagick::adaptiveSharpenImage' => + 'imagick::adaptivesharpenimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', 'channel=' => 'int', ), - 'Imagick::adaptiveThresholdImage' => + 'imagick::adaptivethresholdimage' => array ( 0 => 'bool', 'width' => 'int', 'height' => 'int', 'offset' => 'int', ), - 'Imagick::addImage' => + 'imagick::addimage' => array ( 0 => 'bool', 'source' => 'Imagick', ), - 'Imagick::addNoiseImage' => + 'imagick::addnoiseimage' => array ( 0 => 'bool', 'noise_type' => 'int', 'channel=' => 'int', ), - 'Imagick::affineTransformImage' => + 'imagick::affinetransformimage' => array ( 0 => 'bool', 'matrix' => 'ImagickDraw', ), - 'Imagick::animateImages' => + 'imagick::animateimages' => array ( 0 => 'bool', 'x_server' => 'string', ), - 'Imagick::annotateImage' => + 'imagick::annotateimage' => array ( 0 => 'bool', 'draw_settings' => 'ImagickDraw', @@ -26515,67 +26515,67 @@ 'angle' => 'float', 'text' => 'string', ), - 'Imagick::appendImages' => + 'imagick::appendimages' => array ( 0 => 'Imagick', 'stack' => 'bool', ), - 'Imagick::autoGammaImage' => + 'imagick::autogammaimage' => array ( 0 => 'void', 'channel=' => 'int', ), - 'Imagick::autoLevelImage' => + 'imagick::autolevelimage' => array ( 0 => 'bool', 'CHANNEL=' => 'string', ), - 'Imagick::autoOrient' => + 'imagick::autoorient' => array ( 0 => 'void', ), - 'Imagick::averageImages' => + 'imagick::averageimages' => array ( 0 => 'Imagick', ), - 'Imagick::blackThresholdImage' => + 'imagick::blackthresholdimage' => array ( 0 => 'bool', 'threshold' => 'mixed', ), - 'Imagick::blueShiftImage' => + 'imagick::blueshiftimage' => array ( 0 => 'bool', 'factor=' => 'float', ), - 'Imagick::blurImage' => + 'imagick::blurimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', 'channel=' => 'int', ), - 'Imagick::borderImage' => + 'imagick::borderimage' => array ( 0 => 'bool', 'bordercolor' => 'mixed', 'width' => 'int', 'height' => 'int', ), - 'Imagick::brightnessContrastImage' => + 'imagick::brightnesscontrastimage' => array ( 0 => 'bool', 'brightness' => 'string', 'contrast' => 'string', 'CHANNEL=' => 'string', ), - 'Imagick::charcoalImage' => + 'imagick::charcoalimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', ), - 'Imagick::chopImage' => + 'imagick::chopimage' => array ( 0 => 'bool', 'width' => 'int', @@ -26583,46 +26583,46 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::clampImage' => + 'imagick::clampimage' => array ( 0 => 'bool', 'CHANNEL=' => 'string', ), - 'Imagick::clear' => + 'imagick::clear' => array ( 0 => 'bool', ), - 'Imagick::clipImage' => + 'imagick::clipimage' => array ( 0 => 'bool', ), - 'Imagick::clipImagePath' => + 'imagick::clipimagepath' => array ( 0 => 'void', 'pathname' => 'string', 'inside' => 'string', ), - 'Imagick::clipPathImage' => + 'imagick::clippathimage' => array ( 0 => 'bool', 'pathname' => 'string', 'inside' => 'bool', ), - 'Imagick::clone' => + 'imagick::clone' => array ( 0 => 'Imagick', ), - 'Imagick::clutImage' => + 'imagick::clutimage' => array ( 0 => 'bool', 'lookup_table' => 'Imagick', 'channel=' => 'float', ), - 'Imagick::coalesceImages' => + 'imagick::coalesceimages' => array ( 0 => 'Imagick', ), - 'Imagick::colorFloodfillImage' => + 'imagick::colorfloodfillimage' => array ( 0 => 'bool', 'fill' => 'mixed', @@ -26631,46 +26631,46 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::colorizeImage' => + 'imagick::colorizeimage' => array ( 0 => 'bool', 'colorize' => 'mixed', 'opacity' => 'mixed', ), - 'Imagick::colorMatrixImage' => + 'imagick::colormatriximage' => array ( 0 => 'bool', 'color_matrix' => 'string', ), - 'Imagick::combineImages' => + 'imagick::combineimages' => array ( 0 => 'Imagick', 'channeltype' => 'int', ), - 'Imagick::commentImage' => + 'imagick::commentimage' => array ( 0 => 'bool', 'comment' => 'string', ), - 'Imagick::compareImageChannels' => + 'imagick::compareimagechannels' => array ( 0 => 'list{Imagick, float}', 'image' => 'Imagick', 'channeltype' => 'int', 'metrictype' => 'int', ), - 'Imagick::compareImageLayers' => + 'imagick::compareimagelayers' => array ( 0 => 'Imagick', 'method' => 'int', ), - 'Imagick::compareImages' => + 'imagick::compareimages' => array ( 0 => 'list{Imagick, float}', 'compare' => 'Imagick', 'metric' => 'int', ), - 'Imagick::compositeImage' => + 'imagick::compositeimage' => array ( 0 => 'bool', 'composite_object' => 'Imagick', @@ -26679,37 +26679,37 @@ 'y' => 'int', 'channel=' => 'int', ), - 'Imagick::compositeImageGravity' => + 'imagick::compositeimagegravity' => array ( 0 => 'bool', 'Imagick' => 'Imagick', 'COMPOSITE_CONSTANT' => 'int', 'GRAVITY_CONSTANT' => 'int', ), - 'Imagick::contrastImage' => + 'imagick::contrastimage' => array ( 0 => 'bool', 'sharpen' => 'bool', ), - 'Imagick::contrastStretchImage' => + 'imagick::contraststretchimage' => array ( 0 => 'bool', 'black_point' => 'float', 'white_point' => 'float', 'channel=' => 'int', ), - 'Imagick::convolveImage' => + 'imagick::convolveimage' => array ( 0 => 'bool', 'kernel' => 'array', 'channel=' => 'int', ), - 'Imagick::count' => + 'imagick::count' => array ( 0 => 'int', 'mode=' => 'string', ), - 'Imagick::cropImage' => + 'imagick::cropimage' => array ( 0 => 'bool', 'width' => 'int', @@ -26717,113 +26717,113 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::cropThumbnailImage' => + 'imagick::cropthumbnailimage' => array ( 0 => 'bool', 'width' => 'int', 'height' => 'int', 'legacy=' => 'bool', ), - 'Imagick::current' => + 'imagick::current' => array ( 0 => 'Imagick', ), - 'Imagick::cycleColormapImage' => + 'imagick::cyclecolormapimage' => array ( 0 => 'bool', 'displace' => 'int', ), - 'Imagick::decipherImage' => + 'imagick::decipherimage' => array ( 0 => 'bool', 'passphrase' => 'string', ), - 'Imagick::deconstructImages' => + 'imagick::deconstructimages' => array ( 0 => 'Imagick', ), - 'Imagick::deleteImageArtifact' => + 'imagick::deleteimageartifact' => array ( 0 => 'bool', 'artifact' => 'string', ), - 'Imagick::deleteImageProperty' => + 'imagick::deleteimageproperty' => array ( 0 => 'bool', 'name' => 'string', ), - 'Imagick::deskewImage' => + 'imagick::deskewimage' => array ( 0 => 'bool', 'threshold' => 'float', ), - 'Imagick::despeckleImage' => + 'imagick::despeckleimage' => array ( 0 => 'bool', ), - 'Imagick::destroy' => + 'imagick::destroy' => array ( 0 => 'bool', ), - 'Imagick::displayImage' => + 'imagick::displayimage' => array ( 0 => 'bool', 'servername' => 'string', ), - 'Imagick::displayImages' => + 'imagick::displayimages' => array ( 0 => 'bool', 'servername' => 'string', ), - 'Imagick::distortImage' => + 'imagick::distortimage' => array ( 0 => 'bool', 'method' => 'int', 'arguments' => 'array', 'bestfit' => 'bool', ), - 'Imagick::drawImage' => + 'imagick::drawimage' => array ( 0 => 'bool', 'draw' => 'ImagickDraw', ), - 'Imagick::edgeImage' => + 'imagick::edgeimage' => array ( 0 => 'bool', 'radius' => 'float', ), - 'Imagick::embossImage' => + 'imagick::embossimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', ), - 'Imagick::encipherImage' => + 'imagick::encipherimage' => array ( 0 => 'bool', 'passphrase' => 'string', ), - 'Imagick::enhanceImage' => + 'imagick::enhanceimage' => array ( 0 => 'bool', ), - 'Imagick::equalizeImage' => + 'imagick::equalizeimage' => array ( 0 => 'bool', ), - 'Imagick::evaluateImage' => + 'imagick::evaluateimage' => array ( 0 => 'bool', 'op' => 'int', 'constant' => 'float', 'channel=' => 'int', ), - 'Imagick::evaluateImages' => + 'imagick::evaluateimages' => array ( 0 => 'bool', 'EVALUATE_CONSTANT' => 'int', ), - 'Imagick::exportImagePixels' => + 'imagick::exportimagepixels' => array ( 0 => 'list', 'x' => 'int', @@ -26833,7 +26833,7 @@ 'map' => 'string', 'storage' => 'int', ), - 'Imagick::extentImage' => + 'imagick::extentimage' => array ( 0 => 'bool', 'width' => 'int', @@ -26841,21 +26841,21 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::filter' => + 'imagick::filter' => array ( 0 => 'void', 'ImagickKernel' => 'ImagickKernel', 'CHANNEL=' => 'int', ), - 'Imagick::flattenImages' => + 'imagick::flattenimages' => array ( 0 => 'Imagick', ), - 'Imagick::flipImage' => + 'imagick::flipimage' => array ( 0 => 'bool', ), - 'Imagick::floodFillPaintImage' => + 'imagick::floodfillpaintimage' => array ( 0 => 'bool', 'fill' => 'mixed', @@ -26866,16 +26866,16 @@ 'invert' => 'bool', 'channel=' => 'int', ), - 'Imagick::flopImage' => + 'imagick::flopimage' => array ( 0 => 'bool', ), - 'Imagick::forwardFourierTransformimage' => + 'imagick::forwardfouriertransformimage' => array ( 0 => 'bool', 'magnitude' => 'bool', ), - 'Imagick::frameImage' => + 'imagick::frameimage' => array ( 0 => 'bool', 'matte_color' => 'mixed', @@ -26884,317 +26884,317 @@ 'inner_bevel' => 'int', 'outer_bevel' => 'int', ), - 'Imagick::functionImage' => + 'imagick::functionimage' => array ( 0 => 'bool', 'function' => 'int', 'arguments' => 'array', 'channel=' => 'int', ), - 'Imagick::fxImage' => + 'imagick::fximage' => array ( 0 => 'Imagick', 'expression' => 'string', 'channel=' => 'int', ), - 'Imagick::gammaImage' => + 'imagick::gammaimage' => array ( 0 => 'bool', 'gamma' => 'float', 'channel=' => 'int', ), - 'Imagick::gaussianBlurImage' => + 'imagick::gaussianblurimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', 'channel=' => 'int', ), - 'Imagick::getColorspace' => + 'imagick::getcolorspace' => array ( 0 => 'int', ), - 'Imagick::getCompression' => + 'imagick::getcompression' => array ( 0 => 'int', ), - 'Imagick::getCompressionQuality' => + 'imagick::getcompressionquality' => array ( 0 => 'int', ), - 'Imagick::getConfigureOptions' => + 'imagick::getconfigureoptions' => array ( 0 => 'array', ), - 'Imagick::getCopyright' => + 'imagick::getcopyright' => array ( 0 => 'string', ), - 'Imagick::getFeatures' => + 'imagick::getfeatures' => array ( 0 => 'string', ), - 'Imagick::getFilename' => + 'imagick::getfilename' => array ( 0 => 'string', ), - 'Imagick::getFont' => + 'imagick::getfont' => array ( 0 => 'string', ), - 'Imagick::getFormat' => + 'imagick::getformat' => array ( 0 => 'string', ), - 'Imagick::getGravity' => + 'imagick::getgravity' => array ( 0 => 'int', ), - 'Imagick::getHDRIEnabled' => + 'imagick::gethdrienabled' => array ( 0 => 'bool', ), - 'Imagick::getHomeURL' => + 'imagick::gethomeurl' => array ( 0 => 'string', ), - 'Imagick::getImage' => + 'imagick::getimage' => array ( 0 => 'Imagick', ), - 'Imagick::getImageAlphaChannel' => + 'imagick::getimagealphachannel' => array ( 0 => 'bool', ), - 'Imagick::getImageArtifact' => + 'imagick::getimageartifact' => array ( 0 => 'string', 'artifact' => 'string', ), - 'Imagick::getImageAttribute' => + 'imagick::getimageattribute' => array ( 0 => 'string', 'key' => 'string', ), - 'Imagick::getImageBackgroundColor' => + 'imagick::getimagebackgroundcolor' => array ( 0 => 'ImagickPixel', ), - 'Imagick::getImageBlob' => + 'imagick::getimageblob' => array ( 0 => 'string', ), - 'Imagick::getImageBluePrimary' => + 'imagick::getimageblueprimary' => array ( 0 => 'array{x: float, y: float}', ), - 'Imagick::getImageBorderColor' => + 'imagick::getimagebordercolor' => array ( 0 => 'ImagickPixel', ), - 'Imagick::getImageChannelDepth' => + 'imagick::getimagechanneldepth' => array ( 0 => 'int', 'channel' => 'int', ), - 'Imagick::getImageChannelDistortion' => + 'imagick::getimagechanneldistortion' => array ( 0 => 'float', 'reference' => 'Imagick', 'channel' => 'int', 'metric' => 'int', ), - 'Imagick::getImageChannelDistortions' => + 'imagick::getimagechanneldistortions' => array ( 0 => 'float', 'reference' => 'Imagick', 'metric' => 'int', 'channel=' => 'int', ), - 'Imagick::getImageChannelExtrema' => + 'imagick::getimagechannelextrema' => array ( 0 => 'array{maxima: int, minima: int}', 'channel' => 'int', ), - 'Imagick::getImageChannelKurtosis' => + 'imagick::getimagechannelkurtosis' => array ( 0 => 'array{kurtosis: float, skewness: float}', 'channel=' => 'int', ), - 'Imagick::getImageChannelMean' => + 'imagick::getimagechannelmean' => array ( 0 => 'array{mean: float, standardDeviation: float}', 'channel' => 'int', ), - 'Imagick::getImageChannelRange' => + 'imagick::getimagechannelrange' => array ( 0 => 'array{maxima: float, minima: float}', 'channel' => 'int', ), - 'Imagick::getImageChannelStatistics' => + 'imagick::getimagechannelstatistics' => array ( 0 => 'array', ), - 'Imagick::getImageClipMask' => + 'imagick::getimageclipmask' => array ( 0 => 'Imagick', ), - 'Imagick::getImageColormapColor' => + 'imagick::getimagecolormapcolor' => array ( 0 => 'ImagickPixel', 'index' => 'int', ), - 'Imagick::getImageColors' => + 'imagick::getimagecolors' => array ( 0 => 'int', ), - 'Imagick::getImageColorspace' => + 'imagick::getimagecolorspace' => array ( 0 => 'int', ), - 'Imagick::getImageCompose' => + 'imagick::getimagecompose' => array ( 0 => 'int', ), - 'Imagick::getImageCompression' => + 'imagick::getimagecompression' => array ( 0 => 'int', ), - 'Imagick::getImageCompressionQuality' => + 'imagick::getimagecompressionquality' => array ( 0 => 'int', ), - 'Imagick::getImageDelay' => + 'imagick::getimagedelay' => array ( 0 => 'int', ), - 'Imagick::getImageDepth' => + 'imagick::getimagedepth' => array ( 0 => 'int', ), - 'Imagick::getImageDispose' => + 'imagick::getimagedispose' => array ( 0 => 'int', ), - 'Imagick::getImageDistortion' => + 'imagick::getimagedistortion' => array ( 0 => 'float', 'reference' => 'magickwand', 'metric' => 'int', ), - 'Imagick::getImageExtrema' => + 'imagick::getimageextrema' => array ( 0 => 'array{max: int, min: int}', ), - 'Imagick::getImageFilename' => + 'imagick::getimagefilename' => array ( 0 => 'string', ), - 'Imagick::getImageFormat' => + 'imagick::getimageformat' => array ( 0 => 'string', ), - 'Imagick::getImageGamma' => + 'imagick::getimagegamma' => array ( 0 => 'float', ), - 'Imagick::getImageGeometry' => + 'imagick::getimagegeometry' => array ( 0 => 'array{height: int, width: int}', ), - 'Imagick::getImageGravity' => + 'imagick::getimagegravity' => array ( 0 => 'int', ), - 'Imagick::getImageGreenPrimary' => + 'imagick::getimagegreenprimary' => array ( 0 => 'array{x: float, y: float}', ), - 'Imagick::getImageHeight' => + 'imagick::getimageheight' => array ( 0 => 'int', ), - 'Imagick::getImageHistogram' => + 'imagick::getimagehistogram' => array ( 0 => 'list', ), - 'Imagick::getImageIndex' => + 'imagick::getimageindex' => array ( 0 => 'int', ), - 'Imagick::getImageInterlaceScheme' => + 'imagick::getimageinterlacescheme' => array ( 0 => 'int', ), - 'Imagick::getImageInterpolateMethod' => + 'imagick::getimageinterpolatemethod' => array ( 0 => 'int', ), - 'Imagick::getImageIterations' => + 'imagick::getimageiterations' => array ( 0 => 'int', ), - 'Imagick::getImageLength' => + 'imagick::getimagelength' => array ( 0 => 'int', ), - 'Imagick::getImageMagickLicense' => + 'imagick::getimagemagicklicense' => array ( 0 => 'string', ), - 'Imagick::getImageMatte' => + 'imagick::getimagematte' => array ( 0 => 'bool', ), - 'Imagick::getImageMatteColor' => + 'imagick::getimagemattecolor' => array ( 0 => 'ImagickPixel', ), - 'Imagick::getImageMimeType' => + 'imagick::getimagemimetype' => array ( 0 => 'string', ), - 'Imagick::getImageOrientation' => + 'imagick::getimageorientation' => array ( 0 => 'int', ), - 'Imagick::getImagePage' => + 'imagick::getimagepage' => array ( 0 => 'array{height: int, width: int, x: int, y: int}', ), - 'Imagick::getImagePixelColor' => + 'imagick::getimagepixelcolor' => array ( 0 => 'ImagickPixel', 'x' => 'int', 'y' => 'int', ), - 'Imagick::getImageProfile' => + 'imagick::getimageprofile' => array ( 0 => 'string', 'name' => 'string', ), - 'Imagick::getImageProfiles' => + 'imagick::getimageprofiles' => array ( 0 => 'array', 'pattern=' => 'string', 'only_names=' => 'bool', ), - 'Imagick::getImageProperties' => + 'imagick::getimageproperties' => array ( 0 => 'array', 'pattern=' => 'string', 'only_names=' => 'bool', ), - 'Imagick::getImageProperty' => + 'imagick::getimageproperty' => array ( 0 => 'string', 'name' => 'string', ), - 'Imagick::getImageRedPrimary' => + 'imagick::getimageredprimary' => array ( 0 => 'array{x: float, y: float}', ), - 'Imagick::getImageRegion' => + 'imagick::getimageregion' => array ( 0 => 'Imagick', 'width' => 'int', @@ -27202,88 +27202,88 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::getImageRenderingIntent' => + 'imagick::getimagerenderingintent' => array ( 0 => 'int', ), - 'Imagick::getImageResolution' => + 'imagick::getimageresolution' => array ( 0 => 'array{x: float, y: float}', ), - 'Imagick::getImagesBlob' => + 'imagick::getimagesblob' => array ( 0 => 'string', ), - 'Imagick::getImageScene' => + 'imagick::getimagescene' => array ( 0 => 'int', ), - 'Imagick::getImageSignature' => + 'imagick::getimagesignature' => array ( 0 => 'string', ), - 'Imagick::getImageSize' => + 'imagick::getimagesize' => array ( 0 => 'int', ), - 'Imagick::getImageTicksPerSecond' => + 'imagick::getimagetickspersecond' => array ( 0 => 'int', ), - 'Imagick::getImageTotalInkDensity' => + 'imagick::getimagetotalinkdensity' => array ( 0 => 'float', ), - 'Imagick::getImageType' => + 'imagick::getimagetype' => array ( 0 => 'int', ), - 'Imagick::getImageUnits' => + 'imagick::getimageunits' => array ( 0 => 'int', ), - 'Imagick::getImageVirtualPixelMethod' => + 'imagick::getimagevirtualpixelmethod' => array ( 0 => 'int', ), - 'Imagick::getImageWhitePoint' => + 'imagick::getimagewhitepoint' => array ( 0 => 'array{x: float, y: float}', ), - 'Imagick::getImageWidth' => + 'imagick::getimagewidth' => array ( 0 => 'int', ), - 'Imagick::getInterlaceScheme' => + 'imagick::getinterlacescheme' => array ( 0 => 'int', ), - 'Imagick::getIteratorIndex' => + 'imagick::getiteratorindex' => array ( 0 => 'int', ), - 'Imagick::getNumberImages' => + 'imagick::getnumberimages' => array ( 0 => 'int', ), - 'Imagick::getOption' => + 'imagick::getoption' => array ( 0 => 'string', 'key' => 'string', ), - 'Imagick::getPackageName' => + 'imagick::getpackagename' => array ( 0 => 'string', ), - 'Imagick::getPage' => + 'imagick::getpage' => array ( 0 => 'array{height: int, width: int, x: int, y: int}', ), - 'Imagick::getPixelIterator' => + 'imagick::getpixeliterator' => array ( 0 => 'ImagickPixelIterator', ), - 'Imagick::getPixelRegionIterator' => + 'imagick::getpixelregioniterator' => array ( 0 => 'ImagickPixelIterator', 'x' => 'int', @@ -27291,91 +27291,91 @@ 'columns' => 'int', 'rows' => 'int', ), - 'Imagick::getPointSize' => + 'imagick::getpointsize' => array ( 0 => 'float', ), - 'Imagick::getQuantum' => + 'imagick::getquantum' => array ( 0 => 'int', ), - 'Imagick::getQuantumDepth' => + 'imagick::getquantumdepth' => array ( 0 => 'array{quantumDepthLong: int, quantumDepthString: string}', ), - 'Imagick::getQuantumRange' => + 'imagick::getquantumrange' => array ( 0 => 'array{quantumRangeLong: int, quantumRangeString: string}', ), - 'Imagick::getRegistry' => + 'imagick::getregistry' => array ( 0 => 'string', 'key' => 'string', ), - 'Imagick::getReleaseDate' => + 'imagick::getreleasedate' => array ( 0 => 'string', ), - 'Imagick::getResource' => + 'imagick::getresource' => array ( 0 => 'int', 'type' => 'int', ), - 'Imagick::getResourceLimit' => + 'imagick::getresourcelimit' => array ( 0 => 'int', 'type' => 'int', ), - 'Imagick::getSamplingFactors' => + 'imagick::getsamplingfactors' => array ( 0 => 'array', ), - 'Imagick::getSize' => + 'imagick::getsize' => array ( 0 => 'array{columns: int, rows: int}', ), - 'Imagick::getSizeOffset' => + 'imagick::getsizeoffset' => array ( 0 => 'int', ), - 'Imagick::getVersion' => + 'imagick::getversion' => array ( 0 => 'array{versionNumber: int, versionString: string}', ), - 'Imagick::haldClutImage' => + 'imagick::haldclutimage' => array ( 0 => 'bool', 'clut' => 'Imagick', 'channel=' => 'int', ), - 'Imagick::hasNextImage' => + 'imagick::hasnextimage' => array ( 0 => 'bool', ), - 'Imagick::hasPreviousImage' => + 'imagick::haspreviousimage' => array ( 0 => 'bool', ), - 'Imagick::identifyFormat' => + 'imagick::identifyformat' => array ( 0 => 'string', 'embedText' => 'string', ), - 'Imagick::identifyImage' => + 'imagick::identifyimage' => array ( 0 => 'array', 'appendrawoutput=' => 'bool', ), - 'Imagick::identifyImageType' => + 'imagick::identifyimagetype' => array ( 0 => 'int', ), - 'Imagick::implodeImage' => + 'imagick::implodeimage' => array ( 0 => 'bool', 'radius' => 'float', ), - 'Imagick::importImagePixels' => + 'imagick::importimagepixels' => array ( 0 => 'bool', 'x' => 'int', @@ -27386,22 +27386,22 @@ 'storage' => 'int', 'pixels' => 'list', ), - 'Imagick::inverseFourierTransformImage' => + 'imagick::inversefouriertransformimage' => array ( 0 => 'bool', 'complement' => 'string', 'magnitude' => 'string', ), - 'Imagick::key' => + 'imagick::key' => array ( 0 => 'int', ), - 'Imagick::labelImage' => + 'imagick::labelimage' => array ( 0 => 'bool', 'label' => 'string', ), - 'Imagick::levelImage' => + 'imagick::levelimage' => array ( 0 => 'bool', 'blackpoint' => 'float', @@ -27409,13 +27409,13 @@ 'whitepoint' => 'float', 'channel=' => 'int', ), - 'Imagick::linearStretchImage' => + 'imagick::linearstretchimage' => array ( 0 => 'bool', 'blackpoint' => 'float', 'whitepoint' => 'float', ), - 'Imagick::liquidRescaleImage' => + 'imagick::liquidrescaleimage' => array ( 0 => 'bool', 'width' => 'int', @@ -27423,27 +27423,27 @@ 'delta_x' => 'float', 'rigidity' => 'float', ), - 'Imagick::listRegistry' => + 'imagick::listregistry' => array ( 0 => 'array', ), - 'Imagick::localContrastImage' => + 'imagick::localcontrastimage' => array ( 0 => 'void', 'radius' => 'float', 'strength' => 'float', ), - 'Imagick::magnifyImage' => + 'imagick::magnifyimage' => array ( 0 => 'bool', ), - 'Imagick::mapImage' => + 'imagick::mapimage' => array ( 0 => 'bool', 'map' => 'Imagick', 'dither' => 'bool', ), - 'Imagick::matteFloodfillImage' => + 'imagick::mattefloodfillimage' => array ( 0 => 'bool', 'alpha' => 'float', @@ -27452,28 +27452,28 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::medianFilterImage' => + 'imagick::medianfilterimage' => array ( 0 => 'bool', 'radius' => 'float', ), - 'Imagick::mergeImageLayers' => + 'imagick::mergeimagelayers' => array ( 0 => 'Imagick', 'layer_method' => 'int', ), - 'Imagick::minifyImage' => + 'imagick::minifyimage' => array ( 0 => 'bool', ), - 'Imagick::modulateImage' => + 'imagick::modulateimage' => array ( 0 => 'bool', 'brightness' => 'float', 'saturation' => 'float', 'hue' => 'float', ), - 'Imagick::montageImage' => + 'imagick::montageimage' => array ( 0 => 'Imagick', 'draw' => 'ImagickDraw', @@ -27482,12 +27482,12 @@ 'mode' => 'int', 'frame' => 'string', ), - 'Imagick::morphImages' => + 'imagick::morphimages' => array ( 0 => 'Imagick', 'number_frames' => 'int', ), - 'Imagick::morphology' => + 'imagick::morphology' => array ( 0 => 'bool', 'morphologyMethod' => 'int', @@ -27495,11 +27495,11 @@ 'ImagickKernel' => 'ImagickKernel', 'CHANNEL=' => 'string', ), - 'Imagick::mosaicImages' => + 'imagick::mosaicimages' => array ( 0 => 'Imagick', ), - 'Imagick::motionBlurImage' => + 'imagick::motionblurimage' => array ( 0 => 'bool', 'radius' => 'float', @@ -27507,13 +27507,13 @@ 'angle' => 'float', 'channel=' => 'int', ), - 'Imagick::negateImage' => + 'imagick::negateimage' => array ( 0 => 'bool', 'gray' => 'bool', 'channel=' => 'int', ), - 'Imagick::newImage' => + 'imagick::newimage' => array ( 0 => 'bool', 'cols' => 'int', @@ -27521,32 +27521,32 @@ 'background' => 'mixed', 'format=' => 'string', ), - 'Imagick::newPseudoImage' => + 'imagick::newpseudoimage' => array ( 0 => 'bool', 'columns' => 'int', 'rows' => 'int', 'pseudostring' => 'string', ), - 'Imagick::next' => + 'imagick::next' => array ( 0 => 'void', ), - 'Imagick::nextImage' => + 'imagick::nextimage' => array ( 0 => 'bool', ), - 'Imagick::normalizeImage' => + 'imagick::normalizeimage' => array ( 0 => 'bool', 'channel=' => 'int', ), - 'Imagick::oilPaintImage' => + 'imagick::oilpaintimage' => array ( 0 => 'bool', 'radius' => 'float', ), - 'Imagick::opaquePaintImage' => + 'imagick::opaquepaintimage' => array ( 0 => 'bool', 'target' => 'mixed', @@ -27555,17 +27555,17 @@ 'invert' => 'bool', 'channel=' => 'int', ), - 'Imagick::optimizeImageLayers' => + 'imagick::optimizeimagelayers' => array ( 0 => 'bool', ), - 'Imagick::orderedPosterizeImage' => + 'imagick::orderedposterizeimage' => array ( 0 => 'bool', 'threshold_map' => 'string', 'channel=' => 'int', ), - 'Imagick::paintFloodfillImage' => + 'imagick::paintfloodfillimage' => array ( 0 => 'bool', 'fill' => 'mixed', @@ -27575,7 +27575,7 @@ 'y' => 'int', 'channel=' => 'int', ), - 'Imagick::paintOpaqueImage' => + 'imagick::paintopaqueimage' => array ( 0 => 'bool', 'target' => 'mixed', @@ -27583,57 +27583,57 @@ 'fuzz' => 'float', 'channel=' => 'int', ), - 'Imagick::paintTransparentImage' => + 'imagick::painttransparentimage' => array ( 0 => 'bool', 'target' => 'mixed', 'alpha' => 'float', 'fuzz' => 'float', ), - 'Imagick::pingImage' => + 'imagick::pingimage' => array ( 0 => 'bool', 'filename' => 'string', ), - 'Imagick::pingImageBlob' => + 'imagick::pingimageblob' => array ( 0 => 'bool', 'image' => 'string', ), - 'Imagick::pingImageFile' => + 'imagick::pingimagefile' => array ( 0 => 'bool', 'filehandle' => 'resource', 'filename=' => 'string', ), - 'Imagick::polaroidImage' => + 'imagick::polaroidimage' => array ( 0 => 'bool', 'properties' => 'ImagickDraw', 'angle' => 'float', ), - 'Imagick::posterizeImage' => + 'imagick::posterizeimage' => array ( 0 => 'bool', 'levels' => 'int', 'dither' => 'bool', ), - 'Imagick::previewImages' => + 'imagick::previewimages' => array ( 0 => 'bool', 'preview' => 'int', ), - 'Imagick::previousImage' => + 'imagick::previousimage' => array ( 0 => 'bool', ), - 'Imagick::profileImage' => + 'imagick::profileimage' => array ( 0 => 'bool', 'name' => 'string', 'profile' => 'string', ), - 'Imagick::quantizeImage' => + 'imagick::quantizeimage' => array ( 0 => 'bool', 'numbercolors' => 'int', @@ -27642,7 +27642,7 @@ 'dither' => 'bool', 'measureerror' => 'bool', ), - 'Imagick::quantizeImages' => + 'imagick::quantizeimages' => array ( 0 => 'bool', 'numbercolors' => 'int', @@ -27651,30 +27651,30 @@ 'dither' => 'bool', 'measureerror' => 'bool', ), - 'Imagick::queryFontMetrics' => + 'imagick::queryfontmetrics' => array ( 0 => 'array', 'properties' => 'ImagickDraw', 'text' => 'string', 'multiline=' => 'bool', ), - 'Imagick::queryFonts' => + 'imagick::queryfonts' => array ( 0 => 'array', 'pattern=' => 'string', ), - 'Imagick::queryFormats' => + 'imagick::queryformats' => array ( 0 => 'list', 'pattern=' => 'string', ), - 'Imagick::radialBlurImage' => + 'imagick::radialblurimage' => array ( 0 => 'bool', 'angle' => 'float', 'channel=' => 'int', ), - 'Imagick::raiseImage' => + 'imagick::raiseimage' => array ( 0 => 'bool', 'width' => 'int', @@ -27683,65 +27683,65 @@ 'y' => 'int', 'raise' => 'bool', ), - 'Imagick::randomThresholdImage' => + 'imagick::randomthresholdimage' => array ( 0 => 'bool', 'low' => 'float', 'high' => 'float', 'channel=' => 'int', ), - 'Imagick::readImage' => + 'imagick::readimage' => array ( 0 => 'bool', 'filename' => 'string', ), - 'Imagick::readImageBlob' => + 'imagick::readimageblob' => array ( 0 => 'bool', 'image' => 'string', 'filename=' => 'string', ), - 'Imagick::readImageFile' => + 'imagick::readimagefile' => array ( 0 => 'bool', 'filehandle' => 'resource', 'filename=' => 'string', ), - 'Imagick::readImages' => + 'imagick::readimages' => array ( 0 => 'bool', 'filenames' => 'string', ), - 'Imagick::recolorImage' => + 'imagick::recolorimage' => array ( 0 => 'bool', 'matrix' => 'list', ), - 'Imagick::reduceNoiseImage' => + 'imagick::reducenoiseimage' => array ( 0 => 'bool', 'radius' => 'float', ), - 'Imagick::remapImage' => + 'imagick::remapimage' => array ( 0 => 'bool', 'replacement' => 'Imagick', 'dither' => 'int', ), - 'Imagick::removeImage' => + 'imagick::removeimage' => array ( 0 => 'bool', ), - 'Imagick::removeImageProfile' => + 'imagick::removeimageprofile' => array ( 0 => 'string', 'name' => 'string', ), - 'Imagick::render' => + 'imagick::render' => array ( 0 => 'bool', ), - 'Imagick::resampleImage' => + 'imagick::resampleimage' => array ( 0 => 'bool', 'x_resolution' => 'float', @@ -27749,16 +27749,16 @@ 'filter' => 'int', 'blur' => 'float', ), - 'Imagick::resetImagePage' => + 'imagick::resetimagepage' => array ( 0 => 'bool', 'page' => 'string', ), - 'Imagick::resetIterator' => + 'imagick::resetiterator' => array ( 0 => 'void', ), - 'Imagick::resizeImage' => + 'imagick::resizeimage' => array ( 0 => 'bool', 'columns' => 'int', @@ -27767,29 +27767,29 @@ 'blur' => 'float', 'bestfit=' => 'bool', ), - 'Imagick::rewind' => + 'imagick::rewind' => array ( 0 => 'void', ), - 'Imagick::rollImage' => + 'imagick::rollimage' => array ( 0 => 'bool', 'x' => 'int', 'y' => 'int', ), - 'Imagick::rotateImage' => + 'imagick::rotateimage' => array ( 0 => 'bool', 'background' => 'mixed', 'degrees' => 'float', ), - 'Imagick::rotationalBlurImage' => + 'imagick::rotationalblurimage' => array ( 0 => 'bool', 'angle' => 'string', 'CHANNEL=' => 'string', ), - 'Imagick::roundCorners' => + 'imagick::roundcorners' => array ( 0 => 'bool', 'x_rounding' => 'float', @@ -27798,7 +27798,7 @@ 'displace=' => 'float', 'size_correction=' => 'float', ), - 'Imagick::roundCornersImage' => + 'imagick::roundcornersimage' => array ( 0 => 'bool', 'xRounding' => 'mixed', @@ -27807,20 +27807,20 @@ 'displace' => 'mixed', 'sizeCorrection' => 'mixed', ), - 'Imagick::sampleImage' => + 'imagick::sampleimage' => array ( 0 => 'bool', 'columns' => 'int', 'rows' => 'int', ), - 'Imagick::scaleImage' => + 'imagick::scaleimage' => array ( 0 => 'bool', 'cols' => 'int', 'rows' => 'int', 'bestfit=' => 'bool', ), - 'Imagick::segmentImage' => + 'imagick::segmentimage' => array ( 0 => 'bool', 'colorspace' => 'int', @@ -27828,7 +27828,7 @@ 'smooth_threshold' => 'float', 'verbose=' => 'bool', ), - 'Imagick::selectiveBlurImage' => + 'imagick::selectiveblurimage' => array ( 0 => 'bool', 'radius' => 'float', @@ -27836,248 +27836,248 @@ 'threshold' => 'float', 'CHANNEL' => 'int', ), - 'Imagick::separateImageChannel' => + 'imagick::separateimagechannel' => array ( 0 => 'bool', 'channel' => 'int', ), - 'Imagick::sepiaToneImage' => + 'imagick::sepiatoneimage' => array ( 0 => 'bool', 'threshold' => 'float', ), - 'Imagick::setAntiAlias' => + 'imagick::setantialias' => array ( 0 => 'void', 'antialias' => 'bool', ), - 'Imagick::setBackgroundColor' => + 'imagick::setbackgroundcolor' => array ( 0 => 'bool', 'background' => 'mixed', ), - 'Imagick::setColorspace' => + 'imagick::setcolorspace' => array ( 0 => 'bool', 'colorspace' => 'int', ), - 'Imagick::setCompression' => + 'imagick::setcompression' => array ( 0 => 'bool', 'compression' => 'int', ), - 'Imagick::setCompressionQuality' => + 'imagick::setcompressionquality' => array ( 0 => 'bool', 'quality' => 'int', ), - 'Imagick::setFilename' => + 'imagick::setfilename' => array ( 0 => 'bool', 'filename' => 'string', ), - 'Imagick::setFirstIterator' => + 'imagick::setfirstiterator' => array ( 0 => 'bool', ), - 'Imagick::setFont' => + 'imagick::setfont' => array ( 0 => 'bool', 'font' => 'string', ), - 'Imagick::setFormat' => + 'imagick::setformat' => array ( 0 => 'bool', 'format' => 'string', ), - 'Imagick::setGravity' => + 'imagick::setgravity' => array ( 0 => 'bool', 'gravity' => 'int', ), - 'Imagick::setImage' => + 'imagick::setimage' => array ( 0 => 'bool', 'replace' => 'Imagick', ), - 'Imagick::setImageAlpha' => + 'imagick::setimagealpha' => array ( 0 => 'bool', 'alpha' => 'float', ), - 'Imagick::setImageAlphaChannel' => + 'imagick::setimagealphachannel' => array ( 0 => 'bool', 'mode' => 'int', ), - 'Imagick::setImageArtifact' => + 'imagick::setimageartifact' => array ( 0 => 'bool', 'artifact' => 'string', 'value' => 'string', ), - 'Imagick::setImageAttribute' => + 'imagick::setimageattribute' => array ( 0 => 'void', 'key' => 'string', 'value' => 'string', ), - 'Imagick::setImageBackgroundColor' => + 'imagick::setimagebackgroundcolor' => array ( 0 => 'bool', 'background' => 'mixed', ), - 'Imagick::setImageBias' => + 'imagick::setimagebias' => array ( 0 => 'bool', 'bias' => 'float', ), - 'Imagick::setImageBiasQuantum' => + 'imagick::setimagebiasquantum' => array ( 0 => 'void', 'bias' => 'string', ), - 'Imagick::setImageBluePrimary' => + 'imagick::setimageblueprimary' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'Imagick::setImageBorderColor' => + 'imagick::setimagebordercolor' => array ( 0 => 'bool', 'border' => 'mixed', ), - 'Imagick::setImageChannelDepth' => + 'imagick::setimagechanneldepth' => array ( 0 => 'bool', 'channel' => 'int', 'depth' => 'int', ), - 'Imagick::setImageChannelMask' => + 'imagick::setimagechannelmask' => array ( 0 => 'int', 'channel' => 'int', ), - 'Imagick::setImageClipMask' => + 'imagick::setimageclipmask' => array ( 0 => 'bool', 'clip_mask' => 'Imagick', ), - 'Imagick::setImageColormapColor' => + 'imagick::setimagecolormapcolor' => array ( 0 => 'bool', 'index' => 'int', 'color' => 'ImagickPixel', ), - 'Imagick::setImageColorspace' => + 'imagick::setimagecolorspace' => array ( 0 => 'bool', 'colorspace' => 'int', ), - 'Imagick::setImageCompose' => + 'imagick::setimagecompose' => array ( 0 => 'bool', 'compose' => 'int', ), - 'Imagick::setImageCompression' => + 'imagick::setimagecompression' => array ( 0 => 'bool', 'compression' => 'int', ), - 'Imagick::setImageCompressionQuality' => + 'imagick::setimagecompressionquality' => array ( 0 => 'bool', 'quality' => 'int', ), - 'Imagick::setImageDelay' => + 'imagick::setimagedelay' => array ( 0 => 'bool', 'delay' => 'int', ), - 'Imagick::setImageDepth' => + 'imagick::setimagedepth' => array ( 0 => 'bool', 'depth' => 'int', ), - 'Imagick::setImageDispose' => + 'imagick::setimagedispose' => array ( 0 => 'bool', 'dispose' => 'int', ), - 'Imagick::setImageExtent' => + 'imagick::setimageextent' => array ( 0 => 'bool', 'columns' => 'int', 'rows' => 'int', ), - 'Imagick::setImageFilename' => + 'imagick::setimagefilename' => array ( 0 => 'bool', 'filename' => 'string', ), - 'Imagick::setImageFormat' => + 'imagick::setimageformat' => array ( 0 => 'bool', 'format' => 'string', ), - 'Imagick::setImageGamma' => + 'imagick::setimagegamma' => array ( 0 => 'bool', 'gamma' => 'float', ), - 'Imagick::setImageGravity' => + 'imagick::setimagegravity' => array ( 0 => 'bool', 'gravity' => 'int', ), - 'Imagick::setImageGreenPrimary' => + 'imagick::setimagegreenprimary' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'Imagick::setImageIndex' => + 'imagick::setimageindex' => array ( 0 => 'bool', 'index' => 'int', ), - 'Imagick::setImageInterlaceScheme' => + 'imagick::setimageinterlacescheme' => array ( 0 => 'bool', 'interlace_scheme' => 'int', ), - 'Imagick::setImageInterpolateMethod' => + 'imagick::setimageinterpolatemethod' => array ( 0 => 'bool', 'method' => 'int', ), - 'Imagick::setImageIterations' => + 'imagick::setimageiterations' => array ( 0 => 'bool', 'iterations' => 'int', ), - 'Imagick::setImageMatte' => + 'imagick::setimagematte' => array ( 0 => 'bool', 'matte' => 'bool', ), - 'Imagick::setImageMatteColor' => + 'imagick::setimagemattecolor' => array ( 0 => 'bool', 'matte' => 'mixed', ), - 'Imagick::setImageOpacity' => + 'imagick::setimageopacity' => array ( 0 => 'bool', 'opacity' => 'float', ), - 'Imagick::setImageOrientation' => + 'imagick::setimageorientation' => array ( 0 => 'bool', 'orientation' => 'int', ), - 'Imagick::setImagePage' => + 'imagick::setimagepage' => array ( 0 => 'bool', 'width' => 'int', @@ -28085,92 +28085,92 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::setImageProfile' => + 'imagick::setimageprofile' => array ( 0 => 'bool', 'name' => 'string', 'profile' => 'string', ), - 'Imagick::setImageProgressMonitor' => + 'imagick::setimageprogressmonitor' => array ( 0 => 'bool', 'filename' => 'mixed', ), - 'Imagick::setImageProperty' => + 'imagick::setimageproperty' => array ( 0 => 'bool', 'name' => 'string', 'value' => 'string', ), - 'Imagick::setImageRedPrimary' => + 'imagick::setimageredprimary' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'Imagick::setImageRenderingIntent' => + 'imagick::setimagerenderingintent' => array ( 0 => 'bool', 'rendering_intent' => 'int', ), - 'Imagick::setImageResolution' => + 'imagick::setimageresolution' => array ( 0 => 'bool', 'x_resolution' => 'float', 'y_resolution' => 'float', ), - 'Imagick::setImageScene' => + 'imagick::setimagescene' => array ( 0 => 'bool', 'scene' => 'int', ), - 'Imagick::setImageTicksPerSecond' => + 'imagick::setimagetickspersecond' => array ( 0 => 'bool', 'ticks_per_second' => 'int', ), - 'Imagick::setImageType' => + 'imagick::setimagetype' => array ( 0 => 'bool', 'image_type' => 'int', ), - 'Imagick::setImageUnits' => + 'imagick::setimageunits' => array ( 0 => 'bool', 'units' => 'int', ), - 'Imagick::setImageVirtualPixelMethod' => + 'imagick::setimagevirtualpixelmethod' => array ( 0 => 'bool', 'method' => 'int', ), - 'Imagick::setImageWhitePoint' => + 'imagick::setimagewhitepoint' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'Imagick::setInterlaceScheme' => + 'imagick::setinterlacescheme' => array ( 0 => 'bool', 'interlace_scheme' => 'int', ), - 'Imagick::setIteratorIndex' => + 'imagick::setiteratorindex' => array ( 0 => 'bool', 'index' => 'int', ), - 'Imagick::setLastIterator' => + 'imagick::setlastiterator' => array ( 0 => 'bool', ), - 'Imagick::setOption' => + 'imagick::setoption' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'Imagick::setPage' => + 'imagick::setpage' => array ( 0 => 'bool', 'width' => 'int', @@ -28178,65 +28178,65 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::setPointSize' => + 'imagick::setpointsize' => array ( 0 => 'bool', 'point_size' => 'float', ), - 'Imagick::setProgressMonitor' => + 'imagick::setprogressmonitor' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'Imagick::setRegistry' => + 'imagick::setregistry' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'Imagick::setResolution' => + 'imagick::setresolution' => array ( 0 => 'bool', 'x_resolution' => 'float', 'y_resolution' => 'float', ), - 'Imagick::setResourceLimit' => + 'imagick::setresourcelimit' => array ( 0 => 'bool', 'type' => 'int', 'limit' => 'int', ), - 'Imagick::setSamplingFactors' => + 'imagick::setsamplingfactors' => array ( 0 => 'bool', 'factors' => 'list', ), - 'Imagick::setSize' => + 'imagick::setsize' => array ( 0 => 'bool', 'columns' => 'int', 'rows' => 'int', ), - 'Imagick::setSizeOffset' => + 'imagick::setsizeoffset' => array ( 0 => 'bool', 'columns' => 'int', 'rows' => 'int', 'offset' => 'int', ), - 'Imagick::setType' => + 'imagick::settype' => array ( 0 => 'bool', 'image_type' => 'int', ), - 'Imagick::shadeImage' => + 'imagick::shadeimage' => array ( 0 => 'bool', 'gray' => 'bool', 'azimuth' => 'float', 'elevation' => 'float', ), - 'Imagick::shadowImage' => + 'imagick::shadowimage' => array ( 0 => 'bool', 'opacity' => 'float', @@ -28244,27 +28244,27 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::sharpenImage' => + 'imagick::sharpenimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', 'channel=' => 'int', ), - 'Imagick::shaveImage' => + 'imagick::shaveimage' => array ( 0 => 'bool', 'columns' => 'int', 'rows' => 'int', ), - 'Imagick::shearImage' => + 'imagick::shearimage' => array ( 0 => 'bool', 'background' => 'mixed', 'x_shear' => 'float', 'y_shear' => 'float', ), - 'Imagick::sigmoidalContrastImage' => + 'imagick::sigmoidalcontrastimage' => array ( 0 => 'bool', 'sharpen' => 'bool', @@ -28272,7 +28272,7 @@ 'beta' => 'float', 'channel=' => 'int', ), - 'Imagick::similarityImage' => + 'imagick::similarityimage' => array ( 0 => 'Imagick', 'Imagick' => 'Imagick', @@ -28281,32 +28281,32 @@ 'similarity_threshold' => 'float', 'metric' => 'int', ), - 'Imagick::sketchImage' => + 'imagick::sketchimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', 'angle' => 'float', ), - 'Imagick::smushImages' => + 'imagick::smushimages' => array ( 0 => 'Imagick', 'stack' => 'string', 'offset' => 'string', ), - 'Imagick::solarizeImage' => + 'imagick::solarizeimage' => array ( 0 => 'bool', 'threshold' => 'int', ), - 'Imagick::sparseColorImage' => + 'imagick::sparsecolorimage' => array ( 0 => 'bool', 'sparse_method' => 'int', 'arguments' => 'array', 'channel=' => 'int', ), - 'Imagick::spliceImage' => + 'imagick::spliceimage' => array ( 0 => 'bool', 'width' => 'int', @@ -28314,12 +28314,12 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::spreadImage' => + 'imagick::spreadimage' => array ( 0 => 'bool', 'radius' => 'float', ), - 'Imagick::statisticImage' => + 'imagick::statisticimage' => array ( 0 => 'bool', 'type' => 'int', @@ -28327,45 +28327,45 @@ 'height' => 'int', 'CHANNEL=' => 'string', ), - 'Imagick::steganoImage' => + 'imagick::steganoimage' => array ( 0 => 'Imagick', 'watermark_wand' => 'Imagick', 'offset' => 'int', ), - 'Imagick::stereoImage' => + 'imagick::stereoimage' => array ( 0 => 'bool', 'offset_wand' => 'Imagick', ), - 'Imagick::stripImage' => + 'imagick::stripimage' => array ( 0 => 'bool', ), - 'Imagick::subImageMatch' => + 'imagick::subimagematch' => array ( 0 => 'Imagick', 'Imagick' => 'Imagick', '&w_offset=' => 'array', '&w_similarity=' => 'float', ), - 'Imagick::swirlImage' => + 'imagick::swirlimage' => array ( 0 => 'bool', 'degrees' => 'float', ), - 'Imagick::textureImage' => + 'imagick::textureimage' => array ( 0 => 'Imagick', 'texture_wand' => 'Imagick', ), - 'Imagick::thresholdImage' => + 'imagick::thresholdimage' => array ( 0 => 'bool', 'threshold' => 'float', 'channel=' => 'int', ), - 'Imagick::thumbnailImage' => + 'imagick::thumbnailimage' => array ( 0 => 'bool', 'columns' => 'int', @@ -28374,24 +28374,24 @@ 'fill=' => 'bool', 'legacy=' => 'bool', ), - 'Imagick::tintImage' => + 'imagick::tintimage' => array ( 0 => 'bool', 'tint' => 'mixed', 'opacity' => 'mixed', ), - 'Imagick::transformImage' => + 'imagick::transformimage' => array ( 0 => 'Imagick', 'crop' => 'string', 'geometry' => 'string', ), - 'Imagick::transformImageColorspace' => + 'imagick::transformimagecolorspace' => array ( 0 => 'bool', 'colorspace' => 'int', ), - 'Imagick::transparentPaintImage' => + 'imagick::transparentpaintimage' => array ( 0 => 'bool', 'target' => 'mixed', @@ -28399,24 +28399,24 @@ 'fuzz' => 'float', 'invert' => 'bool', ), - 'Imagick::transposeImage' => + 'imagick::transposeimage' => array ( 0 => 'bool', ), - 'Imagick::transverseImage' => + 'imagick::transverseimage' => array ( 0 => 'bool', ), - 'Imagick::trimImage' => + 'imagick::trimimage' => array ( 0 => 'bool', 'fuzz' => 'float', ), - 'Imagick::uniqueImageColors' => + 'imagick::uniqueimagecolors' => array ( 0 => 'bool', ), - 'Imagick::unsharpMaskImage' => + 'imagick::unsharpmaskimage' => array ( 0 => 'bool', 'radius' => 'float', @@ -28425,11 +28425,11 @@ 'threshold' => 'float', 'channel=' => 'int', ), - 'Imagick::valid' => + 'imagick::valid' => array ( 0 => 'bool', ), - 'Imagick::vignetteImage' => + 'imagick::vignetteimage' => array ( 0 => 'bool', 'blackpoint' => 'float', @@ -28437,55 +28437,55 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::waveImage' => + 'imagick::waveimage' => array ( 0 => 'bool', 'amplitude' => 'float', 'length' => 'float', ), - 'Imagick::whiteThresholdImage' => + 'imagick::whitethresholdimage' => array ( 0 => 'bool', 'threshold' => 'mixed', ), - 'Imagick::writeImage' => + 'imagick::writeimage' => array ( 0 => 'bool', 'filename=' => 'string', ), - 'Imagick::writeImageFile' => + 'imagick::writeimagefile' => array ( 0 => 'bool', 'filehandle' => 'resource', ), - 'Imagick::writeImages' => + 'imagick::writeimages' => array ( 0 => 'bool', 'filename' => 'string', 'adjoin' => 'bool', ), - 'Imagick::writeImagesFile' => + 'imagick::writeimagesfile' => array ( 0 => 'bool', 'filehandle' => 'resource', ), - 'ImagickDraw::__construct' => + 'imagickdraw::__construct' => array ( 0 => 'void', ), - 'ImagickDraw::affine' => + 'imagickdraw::affine' => array ( 0 => 'bool', 'affine' => 'array', ), - 'ImagickDraw::annotation' => + 'imagickdraw::annotation' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', 'text' => 'string', ), - 'ImagickDraw::arc' => + 'imagickdraw::arc' => array ( 0 => 'bool', 'sx' => 'float', @@ -28495,12 +28495,12 @@ 'sd' => 'float', 'ed' => 'float', ), - 'ImagickDraw::bezier' => + 'imagickdraw::bezier' => array ( 0 => 'bool', 'coordinates' => 'list', ), - 'ImagickDraw::circle' => + 'imagickdraw::circle' => array ( 0 => 'bool', 'ox' => 'float', @@ -28508,27 +28508,27 @@ 'px' => 'float', 'py' => 'float', ), - 'ImagickDraw::clear' => + 'imagickdraw::clear' => array ( 0 => 'bool', ), - 'ImagickDraw::clone' => + 'imagickdraw::clone' => array ( 0 => 'ImagickDraw', ), - 'ImagickDraw::color' => + 'imagickdraw::color' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', 'paintmethod' => 'int', ), - 'ImagickDraw::comment' => + 'imagickdraw::comment' => array ( 0 => 'bool', 'comment' => 'string', ), - 'ImagickDraw::composite' => + 'imagickdraw::composite' => array ( 0 => 'bool', 'compose' => 'int', @@ -28538,11 +28538,11 @@ 'height' => 'float', 'compositewand' => 'Imagick', ), - 'ImagickDraw::destroy' => + 'imagickdraw::destroy' => array ( 0 => 'bool', ), - 'ImagickDraw::ellipse' => + 'imagickdraw::ellipse' => array ( 0 => 'bool', 'ox' => 'float', @@ -28552,151 +28552,151 @@ 'start' => 'float', 'end' => 'float', ), - 'ImagickDraw::getBorderColor' => + 'imagickdraw::getbordercolor' => array ( 0 => 'ImagickPixel', ), - 'ImagickDraw::getClipPath' => + 'imagickdraw::getclippath' => array ( 0 => 'string', ), - 'ImagickDraw::getClipRule' => + 'imagickdraw::getcliprule' => array ( 0 => 'int', ), - 'ImagickDraw::getClipUnits' => + 'imagickdraw::getclipunits' => array ( 0 => 'int', ), - 'ImagickDraw::getDensity' => + 'imagickdraw::getdensity' => array ( 0 => 'null|string', ), - 'ImagickDraw::getFillColor' => + 'imagickdraw::getfillcolor' => array ( 0 => 'ImagickPixel', ), - 'ImagickDraw::getFillOpacity' => + 'imagickdraw::getfillopacity' => array ( 0 => 'float', ), - 'ImagickDraw::getFillRule' => + 'imagickdraw::getfillrule' => array ( 0 => 'int', ), - 'ImagickDraw::getFont' => + 'imagickdraw::getfont' => array ( 0 => 'string', ), - 'ImagickDraw::getFontFamily' => + 'imagickdraw::getfontfamily' => array ( 0 => 'string', ), - 'ImagickDraw::getFontResolution' => + 'imagickdraw::getfontresolution' => array ( 0 => 'array', ), - 'ImagickDraw::getFontSize' => + 'imagickdraw::getfontsize' => array ( 0 => 'float', ), - 'ImagickDraw::getFontStretch' => + 'imagickdraw::getfontstretch' => array ( 0 => 'int', ), - 'ImagickDraw::getFontStyle' => + 'imagickdraw::getfontstyle' => array ( 0 => 'int', ), - 'ImagickDraw::getFontWeight' => + 'imagickdraw::getfontweight' => array ( 0 => 'int', ), - 'ImagickDraw::getGravity' => + 'imagickdraw::getgravity' => array ( 0 => 'int', ), - 'ImagickDraw::getOpacity' => + 'imagickdraw::getopacity' => array ( 0 => 'float', ), - 'ImagickDraw::getStrokeAntialias' => + 'imagickdraw::getstrokeantialias' => array ( 0 => 'bool', ), - 'ImagickDraw::getStrokeColor' => + 'imagickdraw::getstrokecolor' => array ( 0 => 'ImagickPixel', ), - 'ImagickDraw::getStrokeDashArray' => + 'imagickdraw::getstrokedasharray' => array ( 0 => 'array', ), - 'ImagickDraw::getStrokeDashOffset' => + 'imagickdraw::getstrokedashoffset' => array ( 0 => 'float', ), - 'ImagickDraw::getStrokeLineCap' => + 'imagickdraw::getstrokelinecap' => array ( 0 => 'int', ), - 'ImagickDraw::getStrokeLineJoin' => + 'imagickdraw::getstrokelinejoin' => array ( 0 => 'int', ), - 'ImagickDraw::getStrokeMiterLimit' => + 'imagickdraw::getstrokemiterlimit' => array ( 0 => 'int', ), - 'ImagickDraw::getStrokeOpacity' => + 'imagickdraw::getstrokeopacity' => array ( 0 => 'float', ), - 'ImagickDraw::getStrokeWidth' => + 'imagickdraw::getstrokewidth' => array ( 0 => 'float', ), - 'ImagickDraw::getTextAlignment' => + 'imagickdraw::gettextalignment' => array ( 0 => 'int', ), - 'ImagickDraw::getTextAntialias' => + 'imagickdraw::gettextantialias' => array ( 0 => 'bool', ), - 'ImagickDraw::getTextDecoration' => + 'imagickdraw::gettextdecoration' => array ( 0 => 'int', ), - 'ImagickDraw::getTextDirection' => + 'imagickdraw::gettextdirection' => array ( 0 => 'int', ), - 'ImagickDraw::getTextEncoding' => + 'imagickdraw::gettextencoding' => array ( 0 => 'string', ), - 'ImagickDraw::getTextInterlineSpacing' => + 'imagickdraw::gettextinterlinespacing' => array ( 0 => 'float', ), - 'ImagickDraw::getTextInterwordSpacing' => + 'imagickdraw::gettextinterwordspacing' => array ( 0 => 'float', ), - 'ImagickDraw::getTextKerning' => + 'imagickdraw::gettextkerning' => array ( 0 => 'float', ), - 'ImagickDraw::getTextUnderColor' => + 'imagickdraw::gettextundercolor' => array ( 0 => 'ImagickPixel', ), - 'ImagickDraw::getVectorGraphics' => + 'imagickdraw::getvectorgraphics' => array ( 0 => 'string', ), - 'ImagickDraw::line' => + 'imagickdraw::line' => array ( 0 => 'bool', 'sx' => 'float', @@ -28704,18 +28704,18 @@ 'ex' => 'float', 'ey' => 'float', ), - 'ImagickDraw::matte' => + 'imagickdraw::matte' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', 'paintmethod' => 'int', ), - 'ImagickDraw::pathClose' => + 'imagickdraw::pathclose' => array ( 0 => 'bool', ), - 'ImagickDraw::pathCurveToAbsolute' => + 'imagickdraw::pathcurvetoabsolute' => array ( 0 => 'bool', 'x1' => 'float', @@ -28725,7 +28725,7 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathCurveToQuadraticBezierAbsolute' => + 'imagickdraw::pathcurvetoquadraticbezierabsolute' => array ( 0 => 'bool', 'x1' => 'float', @@ -28733,7 +28733,7 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathCurveToQuadraticBezierRelative' => + 'imagickdraw::pathcurvetoquadraticbezierrelative' => array ( 0 => 'bool', 'x1' => 'float', @@ -28741,19 +28741,19 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathCurveToQuadraticBezierSmoothAbsolute' => + 'imagickdraw::pathcurvetoquadraticbeziersmoothabsolute' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathCurveToQuadraticBezierSmoothRelative' => + 'imagickdraw::pathcurvetoquadraticbeziersmoothrelative' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathCurveToRelative' => + 'imagickdraw::pathcurvetorelative' => array ( 0 => 'bool', 'x1' => 'float', @@ -28763,7 +28763,7 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathCurveToSmoothAbsolute' => + 'imagickdraw::pathcurvetosmoothabsolute' => array ( 0 => 'bool', 'x2' => 'float', @@ -28771,7 +28771,7 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathCurveToSmoothRelative' => + 'imagickdraw::pathcurvetosmoothrelative' => array ( 0 => 'bool', 'x2' => 'float', @@ -28779,7 +28779,7 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathEllipticArcAbsolute' => + 'imagickdraw::pathellipticarcabsolute' => array ( 0 => 'bool', 'rx' => 'float', @@ -28790,7 +28790,7 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathEllipticArcRelative' => + 'imagickdraw::pathellipticarcrelative' => array ( 0 => 'bool', 'rx' => 'float', @@ -28801,104 +28801,104 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathFinish' => + 'imagickdraw::pathfinish' => array ( 0 => 'bool', ), - 'ImagickDraw::pathLineToAbsolute' => + 'imagickdraw::pathlinetoabsolute' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathLineToHorizontalAbsolute' => + 'imagickdraw::pathlinetohorizontalabsolute' => array ( 0 => 'bool', 'x' => 'float', ), - 'ImagickDraw::pathLineToHorizontalRelative' => + 'imagickdraw::pathlinetohorizontalrelative' => array ( 0 => 'bool', 'x' => 'float', ), - 'ImagickDraw::pathLineToRelative' => + 'imagickdraw::pathlinetorelative' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathLineToVerticalAbsolute' => + 'imagickdraw::pathlinetoverticalabsolute' => array ( 0 => 'bool', 'y' => 'float', ), - 'ImagickDraw::pathLineToVerticalRelative' => + 'imagickdraw::pathlinetoverticalrelative' => array ( 0 => 'bool', 'y' => 'float', ), - 'ImagickDraw::pathMoveToAbsolute' => + 'imagickdraw::pathmovetoabsolute' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathMoveToRelative' => + 'imagickdraw::pathmovetorelative' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathStart' => + 'imagickdraw::pathstart' => array ( 0 => 'bool', ), - 'ImagickDraw::point' => + 'imagickdraw::point' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::polygon' => + 'imagickdraw::polygon' => array ( 0 => 'bool', 'coordinates' => 'list', ), - 'ImagickDraw::polyline' => + 'imagickdraw::polyline' => array ( 0 => 'bool', 'coordinates' => 'list', ), - 'ImagickDraw::pop' => + 'imagickdraw::pop' => array ( 0 => 'bool', ), - 'ImagickDraw::popClipPath' => + 'imagickdraw::popclippath' => array ( 0 => 'bool', ), - 'ImagickDraw::popDefs' => + 'imagickdraw::popdefs' => array ( 0 => 'bool', ), - 'ImagickDraw::popPattern' => + 'imagickdraw::poppattern' => array ( 0 => 'bool', ), - 'ImagickDraw::push' => + 'imagickdraw::push' => array ( 0 => 'bool', ), - 'ImagickDraw::pushClipPath' => + 'imagickdraw::pushclippath' => array ( 0 => 'bool', 'clip_mask_id' => 'string', ), - 'ImagickDraw::pushDefs' => + 'imagickdraw::pushdefs' => array ( 0 => 'bool', ), - 'ImagickDraw::pushPattern' => + 'imagickdraw::pushpattern' => array ( 0 => 'bool', 'pattern_id' => 'string', @@ -28907,7 +28907,7 @@ 'width' => 'float', 'height' => 'float', ), - 'ImagickDraw::rectangle' => + 'imagickdraw::rectangle' => array ( 0 => 'bool', 'x1' => 'float', @@ -28915,20 +28915,20 @@ 'x2' => 'float', 'y2' => 'float', ), - 'ImagickDraw::render' => + 'imagickdraw::render' => array ( 0 => 'bool', ), - 'ImagickDraw::resetVectorGraphics' => + 'imagickdraw::resetvectorgraphics' => array ( 0 => 'bool', ), - 'ImagickDraw::rotate' => + 'imagickdraw::rotate' => array ( 0 => 'bool', 'degrees' => 'float', ), - 'ImagickDraw::roundRectangle' => + 'imagickdraw::roundrectangle' => array ( 0 => 'bool', 'x1' => 'float', @@ -28938,220 +28938,220 @@ 'rx' => 'float', 'ry' => 'float', ), - 'ImagickDraw::scale' => + 'imagickdraw::scale' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::setBorderColor' => + 'imagickdraw::setbordercolor' => array ( 0 => 'bool', 'color' => 'ImagickPixel|string', ), - 'ImagickDraw::setClipPath' => + 'imagickdraw::setclippath' => array ( 0 => 'bool', 'clip_mask' => 'string', ), - 'ImagickDraw::setClipRule' => + 'imagickdraw::setcliprule' => array ( 0 => 'bool', 'fill_rule' => 'int', ), - 'ImagickDraw::setClipUnits' => + 'imagickdraw::setclipunits' => array ( 0 => 'bool', 'clip_units' => 'int', ), - 'ImagickDraw::setDensity' => + 'imagickdraw::setdensity' => array ( 0 => 'bool', 'density_string' => 'string', ), - 'ImagickDraw::setFillAlpha' => + 'imagickdraw::setfillalpha' => array ( 0 => 'bool', 'opacity' => 'float', ), - 'ImagickDraw::setFillColor' => + 'imagickdraw::setfillcolor' => array ( 0 => 'bool', 'fill_pixel' => 'ImagickPixel|string', ), - 'ImagickDraw::setFillOpacity' => + 'imagickdraw::setfillopacity' => array ( 0 => 'bool', 'fillopacity' => 'float', ), - 'ImagickDraw::setFillPatternURL' => + 'imagickdraw::setfillpatternurl' => array ( 0 => 'bool', 'fill_url' => 'string', ), - 'ImagickDraw::setFillRule' => + 'imagickdraw::setfillrule' => array ( 0 => 'bool', 'fill_rule' => 'int', ), - 'ImagickDraw::setFont' => + 'imagickdraw::setfont' => array ( 0 => 'bool', 'font_name' => 'string', ), - 'ImagickDraw::setFontFamily' => + 'imagickdraw::setfontfamily' => array ( 0 => 'bool', 'font_family' => 'string', ), - 'ImagickDraw::setFontResolution' => + 'imagickdraw::setfontresolution' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::setFontSize' => + 'imagickdraw::setfontsize' => array ( 0 => 'bool', 'pointsize' => 'float', ), - 'ImagickDraw::setFontStretch' => + 'imagickdraw::setfontstretch' => array ( 0 => 'bool', 'fontstretch' => 'int', ), - 'ImagickDraw::setFontStyle' => + 'imagickdraw::setfontstyle' => array ( 0 => 'bool', 'style' => 'int', ), - 'ImagickDraw::setFontWeight' => + 'imagickdraw::setfontweight' => array ( 0 => 'bool', 'font_weight' => 'int', ), - 'ImagickDraw::setGravity' => + 'imagickdraw::setgravity' => array ( 0 => 'bool', 'gravity' => 'int', ), - 'ImagickDraw::setOpacity' => + 'imagickdraw::setopacity' => array ( 0 => 'bool', 'opacity' => 'float', ), - 'ImagickDraw::setResolution' => + 'imagickdraw::setresolution' => array ( 0 => 'bool', 'x_resolution' => 'float', 'y_resolution' => 'float', ), - 'ImagickDraw::setStrokeAlpha' => + 'imagickdraw::setstrokealpha' => array ( 0 => 'bool', 'opacity' => 'float', ), - 'ImagickDraw::setStrokeAntialias' => + 'imagickdraw::setstrokeantialias' => array ( 0 => 'bool', 'stroke_antialias' => 'bool', ), - 'ImagickDraw::setStrokeColor' => + 'imagickdraw::setstrokecolor' => array ( 0 => 'bool', 'stroke_pixel' => 'ImagickPixel|string', ), - 'ImagickDraw::setStrokeDashArray' => + 'imagickdraw::setstrokedasharray' => array ( 0 => 'bool', 'dasharray' => 'list', ), - 'ImagickDraw::setStrokeDashOffset' => + 'imagickdraw::setstrokedashoffset' => array ( 0 => 'bool', 'dash_offset' => 'float', ), - 'ImagickDraw::setStrokeLineCap' => + 'imagickdraw::setstrokelinecap' => array ( 0 => 'bool', 'linecap' => 'int', ), - 'ImagickDraw::setStrokeLineJoin' => + 'imagickdraw::setstrokelinejoin' => array ( 0 => 'bool', 'linejoin' => 'int', ), - 'ImagickDraw::setStrokeMiterLimit' => + 'imagickdraw::setstrokemiterlimit' => array ( 0 => 'bool', 'miterlimit' => 'int', ), - 'ImagickDraw::setStrokeOpacity' => + 'imagickdraw::setstrokeopacity' => array ( 0 => 'bool', 'stroke_opacity' => 'float', ), - 'ImagickDraw::setStrokePatternURL' => + 'imagickdraw::setstrokepatternurl' => array ( 0 => 'bool', 'stroke_url' => 'string', ), - 'ImagickDraw::setStrokeWidth' => + 'imagickdraw::setstrokewidth' => array ( 0 => 'bool', 'stroke_width' => 'float', ), - 'ImagickDraw::setTextAlignment' => + 'imagickdraw::settextalignment' => array ( 0 => 'bool', 'alignment' => 'int', ), - 'ImagickDraw::setTextAntialias' => + 'imagickdraw::settextantialias' => array ( 0 => 'bool', 'antialias' => 'bool', ), - 'ImagickDraw::setTextDecoration' => + 'imagickdraw::settextdecoration' => array ( 0 => 'bool', 'decoration' => 'int', ), - 'ImagickDraw::setTextDirection' => + 'imagickdraw::settextdirection' => array ( 0 => 'bool', 'direction' => 'int', ), - 'ImagickDraw::setTextEncoding' => + 'imagickdraw::settextencoding' => array ( 0 => 'bool', 'encoding' => 'string', ), - 'ImagickDraw::setTextInterlineSpacing' => + 'imagickdraw::settextinterlinespacing' => array ( 0 => 'bool', 'spacing' => 'float', ), - 'ImagickDraw::setTextInterwordSpacing' => + 'imagickdraw::settextinterwordspacing' => array ( 0 => 'bool', 'spacing' => 'float', ), - 'ImagickDraw::setTextKerning' => + 'imagickdraw::settextkerning' => array ( 0 => 'bool', 'kerning' => 'float', ), - 'ImagickDraw::setTextUnderColor' => + 'imagickdraw::settextundercolor' => array ( 0 => 'bool', 'under_color' => 'ImagickPixel|string', ), - 'ImagickDraw::setVectorGraphics' => + 'imagickdraw::setvectorgraphics' => array ( 0 => 'bool', 'xml' => 'string', ), - 'ImagickDraw::setViewbox' => + 'imagickdraw::setviewbox' => array ( 0 => 'bool', 'x1' => 'int', @@ -29159,202 +29159,202 @@ 'x2' => 'int', 'y2' => 'int', ), - 'ImagickDraw::skewX' => + 'imagickdraw::skewx' => array ( 0 => 'bool', 'degrees' => 'float', ), - 'ImagickDraw::skewY' => + 'imagickdraw::skewy' => array ( 0 => 'bool', 'degrees' => 'float', ), - 'ImagickDraw::translate' => + 'imagickdraw::translate' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickKernel::addKernel' => + 'imagickkernel::addkernel' => array ( 0 => 'void', 'ImagickKernel' => 'ImagickKernel', ), - 'ImagickKernel::addUnityKernel' => + 'imagickkernel::addunitykernel' => array ( 0 => 'void', ), - 'ImagickKernel::fromBuiltin' => + 'imagickkernel::frombuiltin' => array ( 0 => 'ImagickKernel', 'kernelType' => 'string', 'kernelString' => 'string', ), - 'ImagickKernel::fromMatrix' => + 'imagickkernel::frommatrix' => array ( 0 => 'ImagickKernel', 'matrix' => 'list>', 'origin=' => 'array', ), - 'ImagickKernel::getMatrix' => + 'imagickkernel::getmatrix' => array ( 0 => 'list>', ), - 'ImagickKernel::scale' => + 'imagickkernel::scale' => array ( 0 => 'void', ), - 'ImagickKernel::separate' => + 'imagickkernel::separate' => array ( 0 => 'array', ), - 'ImagickKernel::seperate' => + 'imagickkernel::seperate' => array ( 0 => 'void', ), - 'ImagickPixel::__construct' => + 'imagickpixel::__construct' => array ( 0 => 'void', 'color=' => 'string', ), - 'ImagickPixel::clear' => + 'imagickpixel::clear' => array ( 0 => 'bool', ), - 'ImagickPixel::clone' => + 'imagickpixel::clone' => array ( 0 => 'void', ), - 'ImagickPixel::destroy' => + 'imagickpixel::destroy' => array ( 0 => 'bool', ), - 'ImagickPixel::getColor' => + 'imagickpixel::getcolor' => array ( 0 => 'array{a: float|int, b: float|int, g: float|int, r: float|int}', 'normalized=' => '0|1|2', ), - 'ImagickPixel::getColorAsString' => + 'imagickpixel::getcolorasstring' => array ( 0 => 'string', ), - 'ImagickPixel::getColorCount' => + 'imagickpixel::getcolorcount' => array ( 0 => 'int', ), - 'ImagickPixel::getColorQuantum' => + 'imagickpixel::getcolorquantum' => array ( 0 => 'array', ), - 'ImagickPixel::getColorValue' => + 'imagickpixel::getcolorvalue' => array ( 0 => 'float', 'color' => 'int', ), - 'ImagickPixel::getColorValueQuantum' => + 'imagickpixel::getcolorvaluequantum' => array ( 0 => 'float', ), - 'ImagickPixel::getHSL' => + 'imagickpixel::gethsl' => array ( 0 => 'array{hue: float, luminosity: float, saturation: float}', ), - 'ImagickPixel::getIndex' => + 'imagickpixel::getindex' => array ( 0 => 'int', ), - 'ImagickPixel::isPixelSimilar' => + 'imagickpixel::ispixelsimilar' => array ( 0 => 'bool', 'color' => 'ImagickPixel', 'fuzz' => 'float', ), - 'ImagickPixel::isPixelSimilarQuantum' => + 'imagickpixel::ispixelsimilarquantum' => array ( 0 => 'bool', 'color' => 'string', 'fuzz=' => 'string', ), - 'ImagickPixel::isSimilar' => + 'imagickpixel::issimilar' => array ( 0 => 'bool', 'color' => 'ImagickPixel', 'fuzz' => 'float', ), - 'ImagickPixel::setColor' => + 'imagickpixel::setcolor' => array ( 0 => 'bool', 'color' => 'string', ), - 'ImagickPixel::setcolorcount' => + 'imagickpixel::setcolorcount' => array ( 0 => 'bool', 'colorCount' => 'string', ), - 'ImagickPixel::setColorFromPixel' => + 'imagickpixel::setcolorfrompixel' => array ( 0 => 'bool', 'srcPixel' => 'ImagickPixel', ), - 'ImagickPixel::setColorValue' => + 'imagickpixel::setcolorvalue' => array ( 0 => 'bool', 'color' => 'int', 'value' => 'float', ), - 'ImagickPixel::setColorValueQuantum' => + 'imagickpixel::setcolorvaluequantum' => array ( 0 => 'bool', 'color' => 'int', 'value' => 'mixed', ), - 'ImagickPixel::setHSL' => + 'imagickpixel::sethsl' => array ( 0 => 'bool', 'hue' => 'float', 'saturation' => 'float', 'luminosity' => 'float', ), - 'ImagickPixel::setIndex' => + 'imagickpixel::setindex' => array ( 0 => 'bool', 'index' => 'int', ), - 'ImagickPixelIterator::__construct' => + 'imagickpixeliterator::__construct' => array ( 0 => 'void', 'wand' => 'Imagick', ), - 'ImagickPixelIterator::clear' => + 'imagickpixeliterator::clear' => array ( 0 => 'bool', ), - 'ImagickPixelIterator::current' => + 'imagickpixeliterator::current' => array ( 0 => 'array', ), - 'ImagickPixelIterator::destroy' => + 'imagickpixeliterator::destroy' => array ( 0 => 'bool', ), - 'ImagickPixelIterator::getCurrentIteratorRow' => + 'imagickpixeliterator::getcurrentiteratorrow' => array ( 0 => 'array', ), - 'ImagickPixelIterator::getIteratorRow' => + 'imagickpixeliterator::getiteratorrow' => array ( 0 => 'int', ), - 'ImagickPixelIterator::getNextIteratorRow' => + 'imagickpixeliterator::getnextiteratorrow' => array ( 0 => 'array', ), - 'ImagickPixelIterator::getpixeliterator' => + 'imagickpixeliterator::getpixeliterator' => array ( 0 => 'ImagickPixelIterator', 'Imagick' => 'Imagick', ), - 'ImagickPixelIterator::getpixelregioniterator' => + 'imagickpixeliterator::getpixelregioniterator' => array ( 0 => 'ImagickPixelIterator', 'Imagick' => 'Imagick', @@ -29363,20 +29363,20 @@ 'columns' => 'mixed', 'rows' => 'mixed', ), - 'ImagickPixelIterator::getPreviousIteratorRow' => + 'imagickpixeliterator::getpreviousiteratorrow' => array ( 0 => 'array', ), - 'ImagickPixelIterator::key' => + 'imagickpixeliterator::key' => array ( 0 => 'int', ), - 'ImagickPixelIterator::newPixelIterator' => + 'imagickpixeliterator::newpixeliterator' => array ( 0 => 'bool', 'wand' => 'Imagick', ), - 'ImagickPixelIterator::newPixelRegionIterator' => + 'imagickpixeliterator::newpixelregioniterator' => array ( 0 => 'bool', 'wand' => 'Imagick', @@ -29385,36 +29385,36 @@ 'columns' => 'int', 'rows' => 'int', ), - 'ImagickPixelIterator::next' => + 'imagickpixeliterator::next' => array ( 0 => 'void', ), - 'ImagickPixelIterator::resetIterator' => + 'imagickpixeliterator::resetiterator' => array ( 0 => 'bool', ), - 'ImagickPixelIterator::rewind' => + 'imagickpixeliterator::rewind' => array ( 0 => 'void', ), - 'ImagickPixelIterator::setIteratorFirstRow' => + 'imagickpixeliterator::setiteratorfirstrow' => array ( 0 => 'bool', ), - 'ImagickPixelIterator::setIteratorLastRow' => + 'imagickpixeliterator::setiteratorlastrow' => array ( 0 => 'bool', ), - 'ImagickPixelIterator::setIteratorRow' => + 'imagickpixeliterator::setiteratorrow' => array ( 0 => 'bool', 'row' => 'int', ), - 'ImagickPixelIterator::syncIterator' => + 'imagickpixeliterator::synciterator' => array ( 0 => 'bool', ), - 'ImagickPixelIterator::valid' => + 'imagickpixeliterator::valid' => array ( 0 => 'bool', ), @@ -29955,32 +29955,32 @@ 0 => 'false|string', 'ip' => 'string', ), - 'InfiniteIterator::__construct' => + 'infiniteiterator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', ), - 'InfiniteIterator::current' => + 'infiniteiterator::current' => array ( 0 => 'mixed', ), - 'InfiniteIterator::getInnerIterator' => + 'infiniteiterator::getinneriterator' => array ( 0 => 'Iterator|null', ), - 'InfiniteIterator::key' => + 'infiniteiterator::key' => array ( 0 => 'scalar', ), - 'InfiniteIterator::next' => + 'infiniteiterator::next' => array ( 0 => 'void', ), - 'InfiniteIterator::rewind' => + 'infiniteiterator::rewind' => array ( 0 => 'void', ), - 'InfiniteIterator::valid' => + 'infiniteiterator::valid' => array ( 0 => 'bool', ), @@ -30293,98 +30293,98 @@ 0 => 'bool', 'errorCode' => 'int', ), - 'IntlBreakIterator::__construct' => + 'intlbreakiterator::__construct' => array ( 0 => 'void', ), - 'IntlBreakIterator::createCharacterInstance' => + 'intlbreakiterator::createcharacterinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlBreakIterator::createCodePointInstance' => + 'intlbreakiterator::createcodepointinstance' => array ( 0 => 'IntlCodePointBreakIterator', ), - 'IntlBreakIterator::createLineInstance' => + 'intlbreakiterator::createlineinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlBreakIterator::createSentenceInstance' => + 'intlbreakiterator::createsentenceinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlBreakIterator::createTitleInstance' => + 'intlbreakiterator::createtitleinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlBreakIterator::createWordInstance' => + 'intlbreakiterator::createwordinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlBreakIterator::current' => + 'intlbreakiterator::current' => array ( 0 => 'int', ), - 'IntlBreakIterator::first' => + 'intlbreakiterator::first' => array ( 0 => 'int', ), - 'IntlBreakIterator::following' => + 'intlbreakiterator::following' => array ( 0 => 'int', 'offset' => 'int', ), - 'IntlBreakIterator::getErrorCode' => + 'intlbreakiterator::geterrorcode' => array ( 0 => 'int', ), - 'IntlBreakIterator::getErrorMessage' => + 'intlbreakiterator::geterrormessage' => array ( 0 => 'string', ), - 'IntlBreakIterator::getLocale' => + 'intlbreakiterator::getlocale' => array ( 0 => 'false|string', 'type' => 'int', ), - 'IntlBreakIterator::getPartsIterator' => + 'intlbreakiterator::getpartsiterator' => array ( 0 => 'IntlPartsIterator', 'type=' => 'string', ), - 'IntlBreakIterator::getText' => + 'intlbreakiterator::gettext' => array ( 0 => 'null|string', ), - 'IntlBreakIterator::isBoundary' => + 'intlbreakiterator::isboundary' => array ( 0 => 'bool', 'offset' => 'int', ), - 'IntlBreakIterator::last' => + 'intlbreakiterator::last' => array ( 0 => 'int', ), - 'IntlBreakIterator::next' => + 'intlbreakiterator::next' => array ( 0 => 'int', 'offset=' => 'int|null', ), - 'IntlBreakIterator::preceding' => + 'intlbreakiterator::preceding' => array ( 0 => 'int', 'offset' => 'int', ), - 'IntlBreakIterator::previous' => + 'intlbreakiterator::previous' => array ( 0 => 'int', ), - 'IntlBreakIterator::setText' => + 'intlbreakiterator::settext' => array ( 0 => 'bool', 'text' => 'string', @@ -30643,191 +30643,191 @@ 0 => 'DateTime|false', 'calendar' => 'IntlCalendar', ), - 'IntlCalendar::__construct' => + 'intlcalendar::__construct' => array ( 0 => 'void', ), - 'IntlCalendar::add' => + 'intlcalendar::add' => array ( 0 => 'bool', 'field' => 'int', 'value' => 'int', ), - 'IntlCalendar::after' => + 'intlcalendar::after' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlCalendar::before' => + 'intlcalendar::before' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlCalendar::clear' => + 'intlcalendar::clear' => array ( 0 => 'true', 'field=' => 'int|null', ), - 'IntlCalendar::createInstance' => + 'intlcalendar::createinstance' => array ( 0 => 'IntlCalendar|null', 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', 'locale=' => 'null|string', ), - 'IntlCalendar::equals' => + 'intlcalendar::equals' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlCalendar::fieldDifference' => + 'intlcalendar::fielddifference' => array ( 0 => 'false|int', 'timestamp' => 'float', 'field' => 'int', ), - 'IntlCalendar::fromDateTime' => + 'intlcalendar::fromdatetime' => array ( 0 => 'IntlCalendar|null', 'datetime' => 'DateTime|string', 'locale=' => 'null|string', ), - 'IntlCalendar::get' => + 'intlcalendar::get' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlCalendar::getActualMaximum' => + 'intlcalendar::getactualmaximum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlCalendar::getActualMinimum' => + 'intlcalendar::getactualminimum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlCalendar::getAvailableLocales' => + 'intlcalendar::getavailablelocales' => array ( 0 => 'array', ), - 'IntlCalendar::getDayOfWeekType' => + 'intlcalendar::getdayofweektype' => array ( 0 => 'int', 'dayOfWeek' => 'int', ), - 'IntlCalendar::getErrorCode' => + 'intlcalendar::geterrorcode' => array ( 0 => 'int', ), - 'IntlCalendar::getErrorMessage' => + 'intlcalendar::geterrormessage' => array ( 0 => 'string', ), - 'IntlCalendar::getFirstDayOfWeek' => + 'intlcalendar::getfirstdayofweek' => array ( 0 => 'int', ), - 'IntlCalendar::getGreatestMinimum' => + 'intlcalendar::getgreatestminimum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlCalendar::getKeywordValuesForLocale' => + 'intlcalendar::getkeywordvaluesforlocale' => array ( 0 => 'IntlIterator|false', 'keyword' => 'string', 'locale' => 'string', 'onlyCommon' => 'bool', ), - 'IntlCalendar::getLeastMaximum' => + 'intlcalendar::getleastmaximum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlCalendar::getLocale' => + 'intlcalendar::getlocale' => array ( 0 => 'false|string', 'type' => 'int', ), - 'IntlCalendar::getMaximum' => + 'intlcalendar::getmaximum' => array ( 0 => 'false|int', 'field' => 'int', ), - 'IntlCalendar::getMinimalDaysInFirstWeek' => + 'intlcalendar::getminimaldaysinfirstweek' => array ( 0 => 'int', ), - 'IntlCalendar::getMinimum' => + 'intlcalendar::getminimum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlCalendar::getNow' => + 'intlcalendar::getnow' => array ( 0 => 'float', ), - 'IntlCalendar::getRepeatedWallTimeOption' => + 'intlcalendar::getrepeatedwalltimeoption' => array ( 0 => 'int', ), - 'IntlCalendar::getSkippedWallTimeOption' => + 'intlcalendar::getskippedwalltimeoption' => array ( 0 => 'int', ), - 'IntlCalendar::getTime' => + 'intlcalendar::gettime' => array ( 0 => 'float', ), - 'IntlCalendar::getTimeZone' => + 'intlcalendar::gettimezone' => array ( 0 => 'IntlTimeZone', ), - 'IntlCalendar::getType' => + 'intlcalendar::gettype' => array ( 0 => 'string', ), - 'IntlCalendar::getWeekendTransition' => + 'intlcalendar::getweekendtransition' => array ( 0 => 'false|int', 'dayOfWeek' => 'int', ), - 'IntlCalendar::inDaylightTime' => + 'intlcalendar::indaylighttime' => array ( 0 => 'bool', ), - 'IntlCalendar::isEquivalentTo' => + 'intlcalendar::isequivalentto' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlCalendar::isLenient' => + 'intlcalendar::islenient' => array ( 0 => 'bool', ), - 'IntlCalendar::isSet' => + 'intlcalendar::isset' => array ( 0 => 'bool', 'field' => 'int', ), - 'IntlCalendar::isWeekend' => + 'intlcalendar::isweekend' => array ( 0 => 'bool', 'timestamp=' => 'float|null', ), - 'IntlCalendar::roll' => + 'intlcalendar::roll' => array ( 0 => 'bool', 'field' => 'int', 'value' => 'bool|int', ), - 'IntlCalendar::set' => + 'intlcalendar::set' => array ( 0 => 'true', 'field' => 'int', 'value' => 'int', ), - 'IntlCalendar::set\'1' => + 'intlcalendar::set\'1' => array ( 0 => 'bool', 'year' => 'int', @@ -30837,94 +30837,94 @@ 'minute=' => 'int', 'second=' => 'int', ), - 'IntlCalendar::setFirstDayOfWeek' => + 'intlcalendar::setfirstdayofweek' => array ( 0 => 'true', 'dayOfWeek' => 'int', ), - 'IntlCalendar::setLenient' => + 'intlcalendar::setlenient' => array ( 0 => 'true', 'lenient' => 'bool', ), - 'IntlCalendar::setMinimalDaysInFirstWeek' => + 'intlcalendar::setminimaldaysinfirstweek' => array ( 0 => 'true', 'days' => 'int', ), - 'IntlCalendar::setRepeatedWallTimeOption' => + 'intlcalendar::setrepeatedwalltimeoption' => array ( 0 => 'true', 'option' => 'int', ), - 'IntlCalendar::setSkippedWallTimeOption' => + 'intlcalendar::setskippedwalltimeoption' => array ( 0 => 'true', 'option' => 'int', ), - 'IntlCalendar::setTime' => + 'intlcalendar::settime' => array ( 0 => 'bool', 'timestamp' => 'float', ), - 'IntlCalendar::setTimeZone' => + 'intlcalendar::settimezone' => array ( 0 => 'bool', 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', ), - 'IntlCalendar::toDateTime' => + 'intlcalendar::todatetime' => array ( 0 => 'DateTime|false', ), - 'IntlChar::charAge' => + 'intlchar::charage' => array ( 0 => 'array|null', 'codepoint' => 'int|string', ), - 'IntlChar::charDigitValue' => + 'intlchar::chardigitvalue' => array ( 0 => 'int|null', 'codepoint' => 'int|string', ), - 'IntlChar::charDirection' => + 'intlchar::chardirection' => array ( 0 => 'int|null', 'codepoint' => 'int|string', ), - 'IntlChar::charFromName' => + 'intlchar::charfromname' => array ( 0 => 'int|null', 'name' => 'string', 'type=' => 'int', ), - 'IntlChar::charMirror' => + 'intlchar::charmirror' => array ( 0 => 'int|null|string', 'codepoint' => 'int|string', ), - 'IntlChar::charName' => + 'intlchar::charname' => array ( 0 => 'null|string', 'codepoint' => 'int|string', 'type=' => 'int', ), - 'IntlChar::charType' => + 'intlchar::chartype' => array ( 0 => 'int|null', 'codepoint' => 'int|string', ), - 'IntlChar::chr' => + 'intlchar::chr' => array ( 0 => 'null|string', 'codepoint' => 'int|string', ), - 'IntlChar::digit' => + 'intlchar::digit' => array ( 0 => 'false|int|null', 'codepoint' => 'int|string', 'base=' => 'int', ), - 'IntlChar::enumCharNames' => + 'intlchar::enumcharnames' => array ( 0 => 'bool', 'start' => 'int|string', @@ -30932,355 +30932,355 @@ 'callback' => 'callable(int, int, int):void', 'type=' => 'int', ), - 'IntlChar::enumCharTypes' => + 'intlchar::enumchartypes' => array ( 0 => 'void', 'callback' => 'callable(int, int, int):void', ), - 'IntlChar::foldCase' => + 'intlchar::foldcase' => array ( 0 => 'int|null|string', 'codepoint' => 'int|string', 'options=' => 'int', ), - 'IntlChar::forDigit' => + 'intlchar::fordigit' => array ( 0 => 'int', 'digit' => 'int', 'base=' => 'int', ), - 'IntlChar::getBidiPairedBracket' => + 'intlchar::getbidipairedbracket' => array ( 0 => 'int|null|string', 'codepoint' => 'int|string', ), - 'IntlChar::getBlockCode' => + 'intlchar::getblockcode' => array ( 0 => 'int|null', 'codepoint' => 'int|string', ), - 'IntlChar::getCombiningClass' => + 'intlchar::getcombiningclass' => array ( 0 => 'int|null', 'codepoint' => 'int|string', ), - 'IntlChar::getFC_NFKC_Closure' => + 'intlchar::getfc_nfkc_closure' => array ( 0 => 'null|string', 'codepoint' => 'int|string', ), - 'IntlChar::getIntPropertyMaxValue' => + 'intlchar::getintpropertymaxvalue' => array ( 0 => 'int', 'property' => 'int', ), - 'IntlChar::getIntPropertyMinValue' => + 'intlchar::getintpropertyminvalue' => array ( 0 => 'int', 'property' => 'int', ), - 'IntlChar::getIntPropertyValue' => + 'intlchar::getintpropertyvalue' => array ( 0 => 'int|null', 'codepoint' => 'int|string', 'property' => 'int', ), - 'IntlChar::getNumericValue' => + 'intlchar::getnumericvalue' => array ( 0 => 'float|null', 'codepoint' => 'int|string', ), - 'IntlChar::getPropertyEnum' => + 'intlchar::getpropertyenum' => array ( 0 => 'int', 'alias' => 'string', ), - 'IntlChar::getPropertyName' => + 'intlchar::getpropertyname' => array ( 0 => 'false|string', 'property' => 'int', 'type=' => 'int', ), - 'IntlChar::getPropertyValueEnum' => + 'intlchar::getpropertyvalueenum' => array ( 0 => 'int', 'property' => 'int', 'name' => 'string', ), - 'IntlChar::getPropertyValueName' => + 'intlchar::getpropertyvaluename' => array ( 0 => 'false|string', 'property' => 'int', 'value' => 'int', 'type=' => 'int', ), - 'IntlChar::getUnicodeVersion' => + 'intlchar::getunicodeversion' => array ( 0 => 'array', ), - 'IntlChar::hasBinaryProperty' => + 'intlchar::hasbinaryproperty' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', 'property' => 'int', ), - 'IntlChar::isalnum' => + 'intlchar::isalnum' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isalpha' => + 'intlchar::isalpha' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isbase' => + 'intlchar::isbase' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isblank' => + 'intlchar::isblank' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::iscntrl' => + 'intlchar::iscntrl' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isdefined' => + 'intlchar::isdefined' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isdigit' => + 'intlchar::isdigit' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isgraph' => + 'intlchar::isgraph' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isIDIgnorable' => + 'intlchar::isidignorable' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isIDPart' => + 'intlchar::isidpart' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isIDStart' => + 'intlchar::isidstart' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isISOControl' => + 'intlchar::isisocontrol' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isJavaIDPart' => + 'intlchar::isjavaidpart' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isJavaIDStart' => + 'intlchar::isjavaidstart' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isJavaSpaceChar' => + 'intlchar::isjavaspacechar' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::islower' => + 'intlchar::islower' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isMirrored' => + 'intlchar::ismirrored' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isprint' => + 'intlchar::isprint' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::ispunct' => + 'intlchar::ispunct' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isspace' => + 'intlchar::isspace' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::istitle' => + 'intlchar::istitle' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isUAlphabetic' => + 'intlchar::isualphabetic' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isULowercase' => + 'intlchar::isulowercase' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isupper' => + 'intlchar::isupper' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isUUppercase' => + 'intlchar::isuuppercase' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isUWhiteSpace' => + 'intlchar::isuwhitespace' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isWhitespace' => + 'intlchar::iswhitespace' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isxdigit' => + 'intlchar::isxdigit' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::ord' => + 'intlchar::ord' => array ( 0 => 'int|null', 'character' => 'int|string', ), - 'IntlChar::tolower' => + 'intlchar::tolower' => array ( 0 => 'int|null|string', 'codepoint' => 'int|string', ), - 'IntlChar::totitle' => + 'intlchar::totitle' => array ( 0 => 'int|null|string', 'codepoint' => 'int|string', ), - 'IntlChar::toupper' => + 'intlchar::toupper' => array ( 0 => 'int|null|string', 'codepoint' => 'int|string', ), - 'IntlCodePointBreakIterator::createCharacterInstance' => + 'intlcodepointbreakiterator::createcharacterinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlCodePointBreakIterator::createCodePointInstance' => + 'intlcodepointbreakiterator::createcodepointinstance' => array ( 0 => 'IntlCodePointBreakIterator', ), - 'IntlCodePointBreakIterator::createLineInstance' => + 'intlcodepointbreakiterator::createlineinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlCodePointBreakIterator::createSentenceInstance' => + 'intlcodepointbreakiterator::createsentenceinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlCodePointBreakIterator::createTitleInstance' => + 'intlcodepointbreakiterator::createtitleinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlCodePointBreakIterator::createWordInstance' => + 'intlcodepointbreakiterator::createwordinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlCodePointBreakIterator::current' => + 'intlcodepointbreakiterator::current' => array ( 0 => 'int', ), - 'IntlCodePointBreakIterator::first' => + 'intlcodepointbreakiterator::first' => array ( 0 => 'int', ), - 'IntlCodePointBreakIterator::following' => + 'intlcodepointbreakiterator::following' => array ( 0 => 'int', 'offset' => 'int', ), - 'IntlCodePointBreakIterator::getErrorCode' => + 'intlcodepointbreakiterator::geterrorcode' => array ( 0 => 'int', ), - 'IntlCodePointBreakIterator::getErrorMessage' => + 'intlcodepointbreakiterator::geterrormessage' => array ( 0 => 'string', ), - 'IntlCodePointBreakIterator::getLastCodePoint' => + 'intlcodepointbreakiterator::getlastcodepoint' => array ( 0 => 'int', ), - 'IntlCodePointBreakIterator::getLocale' => + 'intlcodepointbreakiterator::getlocale' => array ( 0 => 'false|string', 'type' => 'int', ), - 'IntlCodePointBreakIterator::getPartsIterator' => + 'intlcodepointbreakiterator::getpartsiterator' => array ( 0 => 'IntlPartsIterator', 'type=' => 'string', ), - 'IntlCodePointBreakIterator::getText' => + 'intlcodepointbreakiterator::gettext' => array ( 0 => 'null|string', ), - 'IntlCodePointBreakIterator::isBoundary' => + 'intlcodepointbreakiterator::isboundary' => array ( 0 => 'bool', 'offset' => 'int', ), - 'IntlCodePointBreakIterator::last' => + 'intlcodepointbreakiterator::last' => array ( 0 => 'int', ), - 'IntlCodePointBreakIterator::next' => + 'intlcodepointbreakiterator::next' => array ( 0 => 'int', 'offset=' => 'int|null', ), - 'IntlCodePointBreakIterator::preceding' => + 'intlcodepointbreakiterator::preceding' => array ( 0 => 'int', 'offset' => 'int', ), - 'IntlCodePointBreakIterator::previous' => + 'intlcodepointbreakiterator::previous' => array ( 0 => 'int', ), - 'IntlCodePointBreakIterator::setText' => + 'intlcodepointbreakiterator::settext' => array ( 0 => 'bool', 'text' => 'string', ), - 'IntlDateFormatter::__construct' => + 'intldateformatter::__construct' => array ( 0 => 'void', 'locale' => 'null|string', @@ -31290,7 +31290,7 @@ 'calendar=' => 'IntlCalendar|int|null', 'pattern=' => 'null|string', ), - 'IntlDateFormatter::create' => + 'intldateformatter::create' => array ( 0 => 'IntlDateFormatter|null', 'locale' => 'null|string', @@ -31300,135 +31300,135 @@ 'calendar=' => 'IntlCalendar|int|null', 'pattern=' => 'null|string', ), - 'IntlDateFormatter::format' => + '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' => + 'intldateformatter::formatobject' => array ( 0 => 'false|string', 'datetime' => 'DateTimeInterface|IntlCalendar', 'format=' => 'array{0: int, 1: int}|int|null|string', 'locale=' => 'null|string', ), - 'IntlDateFormatter::getCalendar' => + 'intldateformatter::getcalendar' => array ( 0 => 'false|int', ), - 'IntlDateFormatter::getCalendarObject' => + 'intldateformatter::getcalendarobject' => array ( 0 => 'IntlCalendar|false|null', ), - 'IntlDateFormatter::getDateType' => + 'intldateformatter::getdatetype' => array ( 0 => 'false|int', ), - 'IntlDateFormatter::getErrorCode' => + 'intldateformatter::geterrorcode' => array ( 0 => 'int', ), - 'IntlDateFormatter::getErrorMessage' => + 'intldateformatter::geterrormessage' => array ( 0 => 'string', ), - 'IntlDateFormatter::getLocale' => + 'intldateformatter::getlocale' => array ( 0 => 'false|string', 'type=' => 'int', ), - 'IntlDateFormatter::getPattern' => + 'intldateformatter::getpattern' => array ( 0 => 'false|string', ), - 'IntlDateFormatter::getTimeType' => + 'intldateformatter::gettimetype' => array ( 0 => 'false|int', ), - 'IntlDateFormatter::getTimeZone' => + 'intldateformatter::gettimezone' => array ( 0 => 'IntlTimeZone|false', ), - 'IntlDateFormatter::getTimeZoneId' => + 'intldateformatter::gettimezoneid' => array ( 0 => 'false|string', ), - 'IntlDateFormatter::isLenient' => + 'intldateformatter::islenient' => array ( 0 => 'bool', ), - 'IntlDateFormatter::localtime' => + 'intldateformatter::localtime' => array ( 0 => 'array|false', 'string' => 'string', '&rw_offset=' => 'int', ), - 'IntlDateFormatter::parse' => + 'intldateformatter::parse' => array ( 0 => 'false|float|int', 'string' => 'string', '&rw_offset=' => 'int', ), - 'IntlDateFormatter::setCalendar' => + 'intldateformatter::setcalendar' => array ( 0 => 'bool', 'calendar' => 'IntlCalendar|int|null', ), - 'IntlDateFormatter::setLenient' => + 'intldateformatter::setlenient' => array ( 0 => 'void', 'lenient' => 'bool', ), - 'IntlDateFormatter::setPattern' => + 'intldateformatter::setpattern' => array ( 0 => 'bool', 'pattern' => 'string', ), - 'IntlDateFormatter::setTimeZone' => + 'intldateformatter::settimezone' => array ( 0 => 'bool', 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', ), - 'IntlException::__construct' => + 'intlexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'IntlException::__toString' => + 'intlexception::__tostring' => array ( 0 => 'string', ), - 'IntlException::__wakeup' => + 'intlexception::__wakeup' => array ( 0 => 'void', ), - 'IntlException::getCode' => + 'intlexception::getcode' => array ( 0 => 'int', ), - 'IntlException::getFile' => + 'intlexception::getfile' => array ( 0 => 'string', ), - 'IntlException::getLine' => + 'intlexception::getline' => array ( 0 => 'int', ), - 'IntlException::getMessage' => + 'intlexception::getmessage' => array ( 0 => 'string', ), - 'IntlException::getPrevious' => + 'intlexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'IntlException::getTrace' => + 'intlexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'IntlException::getTraceAsString' => + 'intlexception::gettraceasstring' => array ( 0 => 'string', ), @@ -31459,200 +31459,200 @@ 'calendar' => 'IntlGregorianCalendar', 'timestamp' => 'float', ), - 'IntlGregorianCalendar::__construct' => + 'intlgregoriancalendar::__construct' => array ( 0 => 'void', ), - 'IntlGregorianCalendar::add' => + 'intlgregoriancalendar::add' => array ( 0 => 'bool', 'field' => 'int', 'value' => 'int', ), - 'IntlGregorianCalendar::after' => + 'intlgregoriancalendar::after' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlGregorianCalendar::before' => + 'intlgregoriancalendar::before' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlGregorianCalendar::clear' => + 'intlgregoriancalendar::clear' => array ( 0 => 'true', 'field=' => 'int|null', ), - 'IntlGregorianCalendar::createInstance' => + 'intlgregoriancalendar::createinstance' => array ( 0 => 'IntlGregorianCalendar|null', 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', 'locale=' => 'null|string', ), - 'IntlGregorianCalendar::equals' => + 'intlgregoriancalendar::equals' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlGregorianCalendar::fieldDifference' => + 'intlgregoriancalendar::fielddifference' => array ( 0 => 'false|int', 'timestamp' => 'float', 'field' => 'int', ), - 'IntlGregorianCalendar::fromDateTime' => + 'intlgregoriancalendar::fromdatetime' => array ( 0 => 'IntlCalendar|null', 'datetime' => 'DateTime|string', 'locale=' => 'null|string', ), - 'IntlGregorianCalendar::get' => + 'intlgregoriancalendar::get' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlGregorianCalendar::getActualMaximum' => + 'intlgregoriancalendar::getactualmaximum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlGregorianCalendar::getActualMinimum' => + 'intlgregoriancalendar::getactualminimum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlGregorianCalendar::getAvailableLocales' => + 'intlgregoriancalendar::getavailablelocales' => array ( 0 => 'array', ), - 'IntlGregorianCalendar::getDayOfWeekType' => + 'intlgregoriancalendar::getdayofweektype' => array ( 0 => 'int', 'dayOfWeek' => 'int', ), - 'IntlGregorianCalendar::getErrorCode' => + 'intlgregoriancalendar::geterrorcode' => array ( 0 => 'int', ), - 'IntlGregorianCalendar::getErrorMessage' => + 'intlgregoriancalendar::geterrormessage' => array ( 0 => 'string', ), - 'IntlGregorianCalendar::getFirstDayOfWeek' => + 'intlgregoriancalendar::getfirstdayofweek' => array ( 0 => 'int', ), - 'IntlGregorianCalendar::getGreatestMinimum' => + 'intlgregoriancalendar::getgreatestminimum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlGregorianCalendar::getGregorianChange' => + 'intlgregoriancalendar::getgregorianchange' => array ( 0 => 'float', ), - 'IntlGregorianCalendar::getKeywordValuesForLocale' => + 'intlgregoriancalendar::getkeywordvaluesforlocale' => array ( 0 => 'IntlIterator|false', 'keyword' => 'string', 'locale' => 'string', 'onlyCommon' => 'bool', ), - 'IntlGregorianCalendar::getLeastMaximum' => + 'intlgregoriancalendar::getleastmaximum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlGregorianCalendar::getLocale' => + 'intlgregoriancalendar::getlocale' => array ( 0 => 'false|string', 'type' => 'int', ), - 'IntlGregorianCalendar::getMaximum' => + 'intlgregoriancalendar::getmaximum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlGregorianCalendar::getMinimalDaysInFirstWeek' => + 'intlgregoriancalendar::getminimaldaysinfirstweek' => array ( 0 => 'int', ), - 'IntlGregorianCalendar::getMinimum' => + 'intlgregoriancalendar::getminimum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlGregorianCalendar::getNow' => + 'intlgregoriancalendar::getnow' => array ( 0 => 'float', ), - 'IntlGregorianCalendar::getRepeatedWallTimeOption' => + 'intlgregoriancalendar::getrepeatedwalltimeoption' => array ( 0 => 'int', ), - 'IntlGregorianCalendar::getSkippedWallTimeOption' => + 'intlgregoriancalendar::getskippedwalltimeoption' => array ( 0 => 'int', ), - 'IntlGregorianCalendar::getTime' => + 'intlgregoriancalendar::gettime' => array ( 0 => 'float', ), - 'IntlGregorianCalendar::getTimeZone' => + 'intlgregoriancalendar::gettimezone' => array ( 0 => 'IntlTimeZone', ), - 'IntlGregorianCalendar::getType' => + 'intlgregoriancalendar::gettype' => array ( 0 => 'string', ), - 'IntlGregorianCalendar::getWeekendTransition' => + 'intlgregoriancalendar::getweekendtransition' => array ( 0 => 'false|int', 'dayOfWeek' => 'int', ), - 'IntlGregorianCalendar::inDaylightTime' => + 'intlgregoriancalendar::indaylighttime' => array ( 0 => 'bool', ), - 'IntlGregorianCalendar::isEquivalentTo' => + 'intlgregoriancalendar::isequivalentto' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlGregorianCalendar::isLeapYear' => + 'intlgregoriancalendar::isleapyear' => array ( 0 => 'bool', 'year' => 'int', ), - 'IntlGregorianCalendar::isLenient' => + 'intlgregoriancalendar::islenient' => array ( 0 => 'bool', ), - 'IntlGregorianCalendar::isSet' => + 'intlgregoriancalendar::isset' => array ( 0 => 'bool', 'field' => 'int', ), - 'IntlGregorianCalendar::isWeekend' => + 'intlgregoriancalendar::isweekend' => array ( 0 => 'bool', 'timestamp=' => 'float|null', ), - 'IntlGregorianCalendar::roll' => + 'intlgregoriancalendar::roll' => array ( 0 => 'bool', 'field' => 'int', 'value' => 'bool|int', ), - 'IntlGregorianCalendar::set' => + 'intlgregoriancalendar::set' => array ( 0 => 'true', 'field' => 'int', 'value' => 'int', ), - 'IntlGregorianCalendar::set\'1' => + 'intlgregoriancalendar::set\'1' => array ( 0 => 'bool', 'year' => 'int', @@ -31662,269 +31662,269 @@ 'minute=' => 'int', 'second=' => 'int', ), - 'IntlGregorianCalendar::setFirstDayOfWeek' => + 'intlgregoriancalendar::setfirstdayofweek' => array ( 0 => 'true', 'dayOfWeek' => 'int', ), - 'IntlGregorianCalendar::setGregorianChange' => + 'intlgregoriancalendar::setgregorianchange' => array ( 0 => 'bool', 'timestamp' => 'float', ), - 'IntlGregorianCalendar::setLenient' => + 'intlgregoriancalendar::setlenient' => array ( 0 => 'true', 'lenient' => 'bool', ), - 'IntlGregorianCalendar::setMinimalDaysInFirstWeek' => + 'intlgregoriancalendar::setminimaldaysinfirstweek' => array ( 0 => 'true', 'days' => 'int', ), - 'IntlGregorianCalendar::setRepeatedWallTimeOption' => + 'intlgregoriancalendar::setrepeatedwalltimeoption' => array ( 0 => 'true', 'option' => 'int', ), - 'IntlGregorianCalendar::setSkippedWallTimeOption' => + 'intlgregoriancalendar::setskippedwalltimeoption' => array ( 0 => 'true', 'option' => 'int', ), - 'IntlGregorianCalendar::setTime' => + 'intlgregoriancalendar::settime' => array ( 0 => 'bool', 'timestamp' => 'float', ), - 'IntlGregorianCalendar::setTimeZone' => + 'intlgregoriancalendar::settimezone' => array ( 0 => 'bool', 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', ), - 'IntlGregorianCalendar::toDateTime' => + 'intlgregoriancalendar::todatetime' => array ( 0 => 'DateTime', ), - 'IntlIterator::__construct' => + 'intliterator::__construct' => array ( 0 => 'void', ), - 'IntlIterator::current' => + 'intliterator::current' => array ( 0 => 'mixed', ), - 'IntlIterator::key' => + 'intliterator::key' => array ( 0 => 'string', ), - 'IntlIterator::next' => + 'intliterator::next' => array ( 0 => 'void', ), - 'IntlIterator::rewind' => + 'intliterator::rewind' => array ( 0 => 'void', ), - 'IntlIterator::valid' => + 'intliterator::valid' => array ( 0 => 'bool', ), - 'IntlPartsIterator::getBreakIterator' => + 'intlpartsiterator::getbreakiterator' => array ( 0 => 'IntlBreakIterator', ), - 'IntlRuleBasedBreakIterator::__construct' => + 'intlrulebasedbreakiterator::__construct' => array ( 0 => 'void', 'rules' => 'string', 'compiled=' => 'bool', ), - 'IntlRuleBasedBreakIterator::createCharacterInstance' => + 'intlrulebasedbreakiterator::createcharacterinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlRuleBasedBreakIterator::createCodePointInstance' => + 'intlrulebasedbreakiterator::createcodepointinstance' => array ( 0 => 'IntlCodePointBreakIterator', ), - 'IntlRuleBasedBreakIterator::createLineInstance' => + 'intlrulebasedbreakiterator::createlineinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlRuleBasedBreakIterator::createSentenceInstance' => + 'intlrulebasedbreakiterator::createsentenceinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlRuleBasedBreakIterator::createTitleInstance' => + 'intlrulebasedbreakiterator::createtitleinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlRuleBasedBreakIterator::createWordInstance' => + 'intlrulebasedbreakiterator::createwordinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlRuleBasedBreakIterator::current' => + 'intlrulebasedbreakiterator::current' => array ( 0 => 'int', ), - 'IntlRuleBasedBreakIterator::first' => + 'intlrulebasedbreakiterator::first' => array ( 0 => 'int', ), - 'IntlRuleBasedBreakIterator::following' => + 'intlrulebasedbreakiterator::following' => array ( 0 => 'int', 'offset' => 'int', ), - 'IntlRuleBasedBreakIterator::getBinaryRules' => + 'intlrulebasedbreakiterator::getbinaryrules' => array ( 0 => 'string', ), - 'IntlRuleBasedBreakIterator::getErrorCode' => + 'intlrulebasedbreakiterator::geterrorcode' => array ( 0 => 'int', ), - 'IntlRuleBasedBreakIterator::getErrorMessage' => + 'intlrulebasedbreakiterator::geterrormessage' => array ( 0 => 'string', ), - 'IntlRuleBasedBreakIterator::getLocale' => + 'intlrulebasedbreakiterator::getlocale' => array ( 0 => 'false|string', 'type' => 'int', ), - 'IntlRuleBasedBreakIterator::getPartsIterator' => + 'intlrulebasedbreakiterator::getpartsiterator' => array ( 0 => 'IntlPartsIterator', 'type=' => 'string', ), - 'IntlRuleBasedBreakIterator::getRules' => + 'intlrulebasedbreakiterator::getrules' => array ( 0 => 'string', ), - 'IntlRuleBasedBreakIterator::getRuleStatus' => + 'intlrulebasedbreakiterator::getrulestatus' => array ( 0 => 'int', ), - 'IntlRuleBasedBreakIterator::getRuleStatusVec' => + 'intlrulebasedbreakiterator::getrulestatusvec' => array ( 0 => 'array', ), - 'IntlRuleBasedBreakIterator::getText' => + 'intlrulebasedbreakiterator::gettext' => array ( 0 => 'null|string', ), - 'IntlRuleBasedBreakIterator::isBoundary' => + 'intlrulebasedbreakiterator::isboundary' => array ( 0 => 'bool', 'offset' => 'int', ), - 'IntlRuleBasedBreakIterator::last' => + 'intlrulebasedbreakiterator::last' => array ( 0 => 'int', ), - 'IntlRuleBasedBreakIterator::next' => + 'intlrulebasedbreakiterator::next' => array ( 0 => 'int', 'offset=' => 'int|null', ), - 'IntlRuleBasedBreakIterator::preceding' => + 'intlrulebasedbreakiterator::preceding' => array ( 0 => 'int', 'offset' => 'int', ), - 'IntlRuleBasedBreakIterator::previous' => + 'intlrulebasedbreakiterator::previous' => array ( 0 => 'int', ), - 'IntlRuleBasedBreakIterator::setText' => + 'intlrulebasedbreakiterator::settext' => array ( 0 => 'bool', 'text' => 'string', ), - 'IntlTimeZone::countEquivalentIDs' => + 'intltimezone::countequivalentids' => array ( 0 => 'false|int', 'timezoneId' => 'string', ), - 'IntlTimeZone::createDefault' => + 'intltimezone::createdefault' => array ( 0 => 'IntlTimeZone', ), - 'IntlTimeZone::createEnumeration' => + 'intltimezone::createenumeration' => array ( 0 => 'IntlIterator|false', 'countryOrRawOffset=' => 'IntlTimeZone|float|int|null|string', ), - 'IntlTimeZone::createTimeZone' => + 'intltimezone::createtimezone' => array ( 0 => 'IntlTimeZone|null', 'timezoneId' => 'string', ), - 'IntlTimeZone::createTimeZoneIDEnumeration' => + 'intltimezone::createtimezoneidenumeration' => array ( 0 => 'IntlIterator|false', 'type' => 'int', 'region=' => 'null|string', 'rawOffset=' => 'int|null', ), - 'IntlTimeZone::fromDateTimeZone' => + 'intltimezone::fromdatetimezone' => array ( 0 => 'IntlTimeZone|null', 'timezone' => 'DateTimeZone', ), - 'IntlTimeZone::getCanonicalID' => + 'intltimezone::getcanonicalid' => array ( 0 => 'false|string', 'timezoneId' => 'string', '&w_isSystemId=' => 'bool', ), - 'IntlTimeZone::getDisplayName' => + 'intltimezone::getdisplayname' => array ( 0 => 'false|string', 'dst=' => 'bool', 'style=' => 'int', 'locale=' => 'null|string', ), - 'IntlTimeZone::getDSTSavings' => + 'intltimezone::getdstsavings' => array ( 0 => 'int', ), - 'IntlTimeZone::getEquivalentID' => + 'intltimezone::getequivalentid' => array ( 0 => 'false|string', 'timezoneId' => 'string', 'offset' => 'int', ), - 'IntlTimeZone::getErrorCode' => + 'intltimezone::geterrorcode' => array ( 0 => 'int', ), - 'IntlTimeZone::getErrorMessage' => + 'intltimezone::geterrormessage' => array ( 0 => 'string', ), - 'IntlTimeZone::getGMT' => + 'intltimezone::getgmt' => array ( 0 => 'IntlTimeZone', ), - 'IntlTimeZone::getID' => + 'intltimezone::getid' => array ( 0 => 'string', ), - 'IntlTimeZone::getIDForWindowsID' => + 'intltimezone::getidforwindowsid' => array ( 0 => 'false|string', 'timezoneId' => 'string', 'region=' => 'null|string', ), - 'IntlTimeZone::getOffset' => + 'intltimezone::getoffset' => array ( 0 => 'bool', 'timestamp' => 'float', @@ -31932,38 +31932,38 @@ '&w_rawOffset' => 'int', '&w_dstOffset' => 'int', ), - 'IntlTimeZone::getRawOffset' => + 'intltimezone::getrawoffset' => array ( 0 => 'int', ), - 'IntlTimeZone::getRegion' => + 'intltimezone::getregion' => array ( 0 => 'false|string', 'timezoneId' => 'string', ), - 'IntlTimeZone::getTZDataVersion' => + 'intltimezone::gettzdataversion' => array ( 0 => 'string', ), - 'IntlTimeZone::getUnknown' => + 'intltimezone::getunknown' => array ( 0 => 'IntlTimeZone', ), - 'IntlTimeZone::getWindowsID' => + 'intltimezone::getwindowsid' => array ( 0 => 'false|string', 'timezoneId' => 'string', ), - 'IntlTimeZone::hasSameRules' => + 'intltimezone::hassamerules' => array ( 0 => 'bool', 'other' => 'IntlTimeZone', ), - 'IntlTimeZone::toDateTimeZone' => + 'intltimezone::todatetimezone' => array ( 0 => 'DateTimeZone|false', ), - 'IntlTimeZone::useDaylightTime' => + 'intltimezone::usedaylighttime' => array ( 0 => 'bool', ), @@ -32046,7 +32046,7 @@ 0 => 'string', 'object' => 'IntlTimeZone', ), - 'intltz_getGMT' => + 'intltz_getgmt' => array ( 0 => 'IntlTimeZone', ), @@ -32076,42 +32076,42 @@ 'value' => 'mixed', 'base=' => 'int', ), - 'InvalidArgumentException::__construct' => + 'invalidargumentexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'InvalidArgumentException::__toString' => + 'invalidargumentexception::__tostring' => array ( 0 => 'string', ), - 'InvalidArgumentException::getCode' => + 'invalidargumentexception::getcode' => array ( 0 => 'int', ), - 'InvalidArgumentException::getFile' => + 'invalidargumentexception::getfile' => array ( 0 => 'string', ), - 'InvalidArgumentException::getLine' => + 'invalidargumentexception::getline' => array ( 0 => 'int', ), - 'InvalidArgumentException::getMessage' => + 'invalidargumentexception::getmessage' => array ( 0 => 'string', ), - 'InvalidArgumentException::getPrevious' => + 'invalidargumentexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'InvalidArgumentException::getTrace' => + 'invalidargumentexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'InvalidArgumentException::getTraceAsString' => + 'invalidargumentexception::gettraceasstring' => array ( 0 => 'string', ), @@ -32304,23 +32304,23 @@ 'value' => 'mixed', '...rest=' => 'mixed', ), - 'Iterator::current' => + 'iterator::current' => array ( 0 => 'mixed', ), - 'Iterator::key' => + 'iterator::key' => array ( 0 => 'mixed', ), - 'Iterator::next' => + 'iterator::next' => array ( 0 => 'void', ), - 'Iterator::rewind' => + 'iterator::rewind' => array ( 0 => 'void', ), - 'Iterator::valid' => + 'iterator::valid' => array ( 0 => 'bool', ), @@ -32342,37 +32342,37 @@ 'iterator' => 'Traversable|array', 'preserve_keys=' => 'bool', ), - 'IteratorAggregate::getIterator' => + 'iteratoraggregate::getiterator' => array ( 0 => 'Traversable', ), - 'IteratorIterator::__construct' => + 'iteratoriterator::__construct' => array ( 0 => 'void', 'iterator' => 'Traversable', 'class=' => 'null|string', ), - 'IteratorIterator::current' => + 'iteratoriterator::current' => array ( 0 => 'mixed', ), - 'IteratorIterator::getInnerIterator' => + 'iteratoriterator::getinneriterator' => array ( 0 => 'Iterator|null', ), - 'IteratorIterator::key' => + 'iteratoriterator::key' => array ( 0 => 'mixed', ), - 'IteratorIterator::next' => + 'iteratoriterator::next' => array ( 0 => 'void', ), - 'IteratorIterator::rewind' => + 'iteratoriterator::rewind' => array ( 0 => 'void', ), - 'IteratorIterator::valid' => + 'iteratoriterator::valid' => array ( 0 => 'bool', ), @@ -32409,7 +32409,7 @@ 0 => 'void', 'throw' => 'bool', ), - 'JavaException::getCause' => + 'javaexception::getcause' => array ( 0 => 'object', ), @@ -32504,176 +32504,176 @@ 'depth=' => 'int<1, max>', 'flags=' => 'int', ), - 'JsonException::__construct' => + 'jsonexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'JsonException::__toString' => + 'jsonexception::__tostring' => array ( 0 => 'string', ), - 'JsonException::__wakeup' => + 'jsonexception::__wakeup' => array ( 0 => 'void', ), - 'JsonException::getCode' => + 'jsonexception::getcode' => array ( 0 => 'int', ), - 'JsonException::getFile' => + 'jsonexception::getfile' => array ( 0 => 'string', ), - 'JsonException::getLine' => + 'jsonexception::getline' => array ( 0 => 'int', ), - 'JsonException::getMessage' => + 'jsonexception::getmessage' => array ( 0 => 'string', ), - 'JsonException::getPrevious' => + 'jsonexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'JsonException::getTrace' => + 'jsonexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'JsonException::getTraceAsString' => + 'jsonexception::gettraceasstring' => array ( 0 => 'string', ), - 'JsonIncrementalParser::__construct' => + 'jsonincrementalparser::__construct' => array ( 0 => 'void', 'depth' => 'mixed', 'options' => 'mixed', ), - 'JsonIncrementalParser::get' => + 'jsonincrementalparser::get' => array ( 0 => 'mixed', 'options' => 'mixed', ), - 'JsonIncrementalParser::getError' => + 'jsonincrementalparser::geterror' => array ( 0 => 'mixed', ), - 'JsonIncrementalParser::parse' => + 'jsonincrementalparser::parse' => array ( 0 => 'mixed', 'json' => 'mixed', ), - 'JsonIncrementalParser::parseFile' => + 'jsonincrementalparser::parsefile' => array ( 0 => 'mixed', 'filename' => 'mixed', ), - 'JsonIncrementalParser::reset' => + 'jsonincrementalparser::reset' => array ( 0 => 'mixed', ), - 'JsonSerializable::jsonSerialize' => + 'jsonserializable::jsonserialize' => array ( 0 => 'mixed', ), - 'Judy::__construct' => + 'judy::__construct' => array ( 0 => 'void', 'judy_type' => 'int', ), - 'Judy::__destruct' => + 'judy::__destruct' => array ( 0 => 'void', ), - 'Judy::byCount' => + 'judy::bycount' => array ( 0 => 'int', 'nth_index' => 'int', ), - 'Judy::count' => + 'judy::count' => array ( 0 => 'int', 'index_start=' => 'int', 'index_end=' => 'int', ), - 'Judy::first' => + 'judy::first' => array ( 0 => 'mixed', 'index=' => 'mixed', ), - 'Judy::firstEmpty' => + 'judy::firstempty' => array ( 0 => 'mixed', 'index=' => 'mixed', ), - 'Judy::free' => + 'judy::free' => array ( 0 => 'int', ), - 'Judy::getType' => + 'judy::gettype' => array ( 0 => 'int', ), - 'Judy::last' => + 'judy::last' => array ( 0 => 'mixed', 'index=' => 'string', ), - 'Judy::lastEmpty' => + 'judy::lastempty' => array ( 0 => 'mixed', 'index=' => 'int', ), - 'Judy::memoryUsage' => + 'judy::memoryusage' => array ( 0 => 'int', ), - 'Judy::next' => + 'judy::next' => array ( 0 => 'mixed', 'index' => 'mixed', ), - 'Judy::nextEmpty' => + 'judy::nextempty' => array ( 0 => 'mixed', 'index' => 'mixed', ), - 'Judy::offsetExists' => + 'judy::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'Judy::offsetGet' => + 'judy::offsetget' => array ( 0 => 'mixed', 'offset' => 'int|string', ), - 'Judy::offsetSet' => + 'judy::offsetset' => array ( 0 => 'bool', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'Judy::offsetUnset' => + 'judy::offsetunset' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'Judy::prev' => + 'judy::prev' => array ( 0 => 'mixed', 'index' => 'mixed', ), - 'Judy::prevEmpty' => + 'judy::prevempty' => array ( 0 => 'mixed', 'index' => 'mixed', ), - 'Judy::size' => + 'judy::size' => array ( 0 => 'int', ), @@ -32778,397 +32778,397 @@ '&rw_array' => 'array', 'flags=' => 'int', ), - 'KTaglib_ID3v2_AttachedPictureFrame::getDescription' => + 'ktaglib_id3v2_attachedpictureframe::getdescription' => array ( 0 => 'string', ), - 'KTaglib_ID3v2_AttachedPictureFrame::getMimeType' => + 'ktaglib_id3v2_attachedpictureframe::getmimetype' => array ( 0 => 'string', ), - 'KTaglib_ID3v2_AttachedPictureFrame::getType' => + 'ktaglib_id3v2_attachedpictureframe::gettype' => array ( 0 => 'int', ), - 'KTaglib_ID3v2_AttachedPictureFrame::savePicture' => + 'ktaglib_id3v2_attachedpictureframe::savepicture' => array ( 0 => 'bool', 'filename' => 'string', ), - 'KTaglib_ID3v2_AttachedPictureFrame::setMimeType' => + 'ktaglib_id3v2_attachedpictureframe::setmimetype' => array ( 0 => 'string', 'type' => 'string', ), - 'KTaglib_ID3v2_AttachedPictureFrame::setPicture' => + 'ktaglib_id3v2_attachedpictureframe::setpicture' => array ( 0 => 'mixed', 'filename' => 'string', ), - 'KTaglib_ID3v2_AttachedPictureFrame::setType' => + 'ktaglib_id3v2_attachedpictureframe::settype' => array ( 0 => 'mixed', 'type' => 'int', ), - 'KTaglib_ID3v2_Frame::__toString' => + 'ktaglib_id3v2_frame::__tostring' => array ( 0 => 'string', ), - 'KTaglib_ID3v2_Frame::getDescription' => + 'ktaglib_id3v2_frame::getdescription' => array ( 0 => 'string', ), - 'KTaglib_ID3v2_Frame::getMimeType' => + 'ktaglib_id3v2_frame::getmimetype' => array ( 0 => 'string', ), - 'KTaglib_ID3v2_Frame::getSize' => + 'ktaglib_id3v2_frame::getsize' => array ( 0 => 'int', ), - 'KTaglib_ID3v2_Frame::getType' => + 'ktaglib_id3v2_frame::gettype' => array ( 0 => 'int', ), - 'KTaglib_ID3v2_Frame::savePicture' => + 'ktaglib_id3v2_frame::savepicture' => array ( 0 => 'bool', 'filename' => 'string', ), - 'KTaglib_ID3v2_Frame::setMimeType' => + 'ktaglib_id3v2_frame::setmimetype' => array ( 0 => 'string', 'type' => 'string', ), - 'KTaglib_ID3v2_Frame::setPicture' => + 'ktaglib_id3v2_frame::setpicture' => array ( 0 => 'void', 'filename' => 'string', ), - 'KTaglib_ID3v2_Frame::setType' => + 'ktaglib_id3v2_frame::settype' => array ( 0 => 'void', 'type' => 'int', ), - 'KTaglib_ID3v2_Tag::addFrame' => + 'ktaglib_id3v2_tag::addframe' => array ( 0 => 'bool', 'frame' => 'KTaglib_ID3v2_Frame', ), - 'KTaglib_ID3v2_Tag::getFrameList' => + 'ktaglib_id3v2_tag::getframelist' => array ( 0 => 'array', ), - 'KTaglib_MPEG_AudioProperties::getBitrate' => + 'ktaglib_mpeg_audioproperties::getbitrate' => array ( 0 => 'int', ), - 'KTaglib_MPEG_AudioProperties::getChannels' => + 'ktaglib_mpeg_audioproperties::getchannels' => array ( 0 => 'int', ), - 'KTaglib_MPEG_AudioProperties::getLayer' => + 'ktaglib_mpeg_audioproperties::getlayer' => array ( 0 => 'int', ), - 'KTaglib_MPEG_AudioProperties::getLength' => + 'ktaglib_mpeg_audioproperties::getlength' => array ( 0 => 'int', ), - 'KTaglib_MPEG_AudioProperties::getSampleBitrate' => + 'ktaglib_mpeg_audioproperties::getsamplebitrate' => array ( 0 => 'int', ), - 'KTaglib_MPEG_AudioProperties::getVersion' => + 'ktaglib_mpeg_audioproperties::getversion' => array ( 0 => 'int', ), - 'KTaglib_MPEG_AudioProperties::isCopyrighted' => + 'ktaglib_mpeg_audioproperties::iscopyrighted' => array ( 0 => 'bool', ), - 'KTaglib_MPEG_AudioProperties::isOriginal' => + 'ktaglib_mpeg_audioproperties::isoriginal' => array ( 0 => 'bool', ), - 'KTaglib_MPEG_AudioProperties::isProtectionEnabled' => + 'ktaglib_mpeg_audioproperties::isprotectionenabled' => array ( 0 => 'bool', ), - 'KTaglib_MPEG_File::getAudioProperties' => + 'ktaglib_mpeg_file::getaudioproperties' => array ( 0 => 'KTaglib_MPEG_File', ), - 'KTaglib_MPEG_File::getID3v1Tag' => + 'ktaglib_mpeg_file::getid3v1tag' => array ( 0 => 'KTaglib_ID3v1_Tag', 'create=' => 'bool', ), - 'KTaglib_MPEG_File::getID3v2Tag' => + 'ktaglib_mpeg_file::getid3v2tag' => array ( 0 => 'KTaglib_ID3v2_Tag', 'create=' => 'bool', ), - 'KTaglib_Tag::getAlbum' => + 'ktaglib_tag::getalbum' => array ( 0 => 'string', ), - 'KTaglib_Tag::getArtist' => + 'ktaglib_tag::getartist' => array ( 0 => 'string', ), - 'KTaglib_Tag::getComment' => + 'ktaglib_tag::getcomment' => array ( 0 => 'string', ), - 'KTaglib_Tag::getGenre' => + 'ktaglib_tag::getgenre' => array ( 0 => 'string', ), - 'KTaglib_Tag::getTitle' => + 'ktaglib_tag::gettitle' => array ( 0 => 'string', ), - 'KTaglib_Tag::getTrack' => + 'ktaglib_tag::gettrack' => array ( 0 => 'int', ), - 'KTaglib_Tag::getYear' => + 'ktaglib_tag::getyear' => array ( 0 => 'int', ), - 'KTaglib_Tag::isEmpty' => + 'ktaglib_tag::isempty' => array ( 0 => 'bool', ), - 'labelcacheObj::freeCache' => + 'labelcacheobj::freecache' => array ( 0 => 'bool', ), - 'labelObj::__construct' => + 'labelobj::__construct' => array ( 0 => 'void', ), - 'labelObj::convertToString' => + 'labelobj::converttostring' => array ( 0 => 'string', ), - 'labelObj::deleteStyle' => + 'labelobj::deletestyle' => array ( 0 => 'int', 'index' => 'int', ), - 'labelObj::free' => + 'labelobj::free' => array ( 0 => 'void', ), - 'labelObj::getBinding' => + 'labelobj::getbinding' => array ( 0 => 'string', 'labelbinding' => 'mixed', ), - 'labelObj::getExpressionString' => + 'labelobj::getexpressionstring' => array ( 0 => 'string', ), - 'labelObj::getStyle' => + 'labelobj::getstyle' => array ( 0 => 'styleObj', 'index' => 'int', ), - 'labelObj::getTextString' => + 'labelobj::gettextstring' => array ( 0 => 'string', ), - 'labelObj::moveStyleDown' => + 'labelobj::movestyledown' => array ( 0 => 'int', 'index' => 'int', ), - 'labelObj::moveStyleUp' => + 'labelobj::movestyleup' => array ( 0 => 'int', 'index' => 'int', ), - 'labelObj::removeBinding' => + 'labelobj::removebinding' => array ( 0 => 'int', 'labelbinding' => 'mixed', ), - 'labelObj::set' => + 'labelobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'labelObj::setBinding' => + 'labelobj::setbinding' => array ( 0 => 'int', 'labelbinding' => 'mixed', 'value' => 'string', ), - 'labelObj::setExpression' => + 'labelobj::setexpression' => array ( 0 => 'int', 'expression' => 'string', ), - 'labelObj::setText' => + 'labelobj::settext' => array ( 0 => 'int', 'text' => 'string', ), - 'labelObj::updateFromString' => + 'labelobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', ), - 'Lapack::eigenValues' => + 'lapack::eigenvalues' => array ( 0 => 'array', 'a' => 'array', 'left=' => 'array', 'right=' => 'array', ), - 'Lapack::identity' => + 'lapack::identity' => array ( 0 => 'array', 'n' => 'int', ), - 'Lapack::leastSquaresByFactorisation' => + 'lapack::leastsquaresbyfactorisation' => array ( 0 => 'array', 'a' => 'array', 'b' => 'array', ), - 'Lapack::leastSquaresBySVD' => + 'lapack::leastsquaresbysvd' => array ( 0 => 'array', 'a' => 'array', 'b' => 'array', ), - 'Lapack::pseudoInverse' => + 'lapack::pseudoinverse' => array ( 0 => 'array', 'a' => 'array', ), - 'Lapack::singularValues' => + 'lapack::singularvalues' => array ( 0 => 'array', 'a' => 'array', ), - 'Lapack::solveLinearEquation' => + 'lapack::solvelinearequation' => array ( 0 => 'array', 'a' => 'array', 'b' => 'array', ), - 'layerObj::addFeature' => + 'layerobj::addfeature' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'layerObj::applySLD' => + 'layerobj::applysld' => array ( 0 => 'int', 'sldxml' => 'string', 'namedlayer' => 'string', ), - 'layerObj::applySLDURL' => + 'layerobj::applysldurl' => array ( 0 => 'int', 'sldurl' => 'string', 'namedlayer' => 'string', ), - 'layerObj::clearProcessing' => + 'layerobj::clearprocessing' => array ( 0 => 'void', ), - 'layerObj::close' => + 'layerobj::close' => array ( 0 => 'void', ), - 'layerObj::convertToString' => + 'layerobj::converttostring' => array ( 0 => 'string', ), - 'layerObj::draw' => + 'layerobj::draw' => array ( 0 => 'int', 'image' => 'imageObj', ), - 'layerObj::drawQuery' => + 'layerobj::drawquery' => array ( 0 => 'int', 'image' => 'imageObj', ), - 'layerObj::free' => + 'layerobj::free' => array ( 0 => 'void', ), - 'layerObj::generateSLD' => + 'layerobj::generatesld' => array ( 0 => 'string', ), - 'layerObj::getClass' => + 'layerobj::getclass' => array ( 0 => 'classObj', 'classIndex' => 'int', ), - 'layerObj::getClassIndex' => + 'layerobj::getclassindex' => array ( 0 => 'int', 'shape' => 'mixed', 'classgroup' => 'mixed', 'numclasses' => 'mixed', ), - 'layerObj::getExtent' => + 'layerobj::getextent' => array ( 0 => 'rectObj', ), - 'layerObj::getFilterString' => + 'layerobj::getfilterstring' => array ( 0 => 'null|string', ), - 'layerObj::getGridIntersectionCoordinates' => + 'layerobj::getgridintersectioncoordinates' => array ( 0 => 'array', ), - 'layerObj::getItems' => + 'layerobj::getitems' => array ( 0 => 'array', ), - 'layerObj::getMetaData' => + 'layerobj::getmetadata' => array ( 0 => 'int', 'name' => 'string', ), - 'layerObj::getNumResults' => + 'layerobj::getnumresults' => array ( 0 => 'int', ), - 'layerObj::getProcessing' => + 'layerobj::getprocessing' => array ( 0 => 'array', ), - 'layerObj::getProjection' => + 'layerobj::getprojection' => array ( 0 => 'string', ), - 'layerObj::getResult' => + 'layerobj::getresult' => array ( 0 => 'resultObj', 'index' => 'int', ), - 'layerObj::getResultsBounds' => + 'layerobj::getresultsbounds' => array ( 0 => 'rectObj', ), - 'layerObj::getShape' => + 'layerobj::getshape' => array ( 0 => 'shapeObj', 'result' => 'resultObj', ), - 'layerObj::getWMSFeatureInfoURL' => + 'layerobj::getwmsfeatureinfourl' => array ( 0 => 'string', 'clickX' => 'int', @@ -33176,107 +33176,107 @@ 'featureCount' => 'int', 'infoFormat' => 'string', ), - 'layerObj::isVisible' => + 'layerobj::isvisible' => array ( 0 => 'bool', ), - 'layerObj::moveclassdown' => + 'layerobj::moveclassdown' => array ( 0 => 'int', 'index' => 'int', ), - 'layerObj::moveclassup' => + 'layerobj::moveclassup' => array ( 0 => 'int', 'index' => 'int', ), - 'layerObj::ms_newLayerObj' => + 'layerobj::ms_newlayerobj' => array ( 0 => 'layerObj', 'map' => 'mapObj', 'layer' => 'layerObj', ), - 'layerObj::nextShape' => + 'layerobj::nextshape' => array ( 0 => 'shapeObj', ), - 'layerObj::open' => + 'layerobj::open' => array ( 0 => 'int', ), - 'layerObj::queryByAttributes' => + 'layerobj::querybyattributes' => array ( 0 => 'int', 'qitem' => 'string', 'qstring' => 'string', 'mode' => 'int', ), - 'layerObj::queryByFeatures' => + 'layerobj::querybyfeatures' => array ( 0 => 'int', 'slayer' => 'int', ), - 'layerObj::queryByPoint' => + 'layerobj::querybypoint' => array ( 0 => 'int', 'point' => 'pointObj', 'mode' => 'int', 'buffer' => 'float', ), - 'layerObj::queryByRect' => + 'layerobj::querybyrect' => array ( 0 => 'int', 'rect' => 'rectObj', ), - 'layerObj::queryByShape' => + 'layerobj::querybyshape' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'layerObj::removeClass' => + 'layerobj::removeclass' => array ( 0 => 'classObj|null', 'index' => 'int', ), - 'layerObj::removeMetaData' => + 'layerobj::removemetadata' => array ( 0 => 'int', 'name' => 'string', ), - 'layerObj::set' => + 'layerobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'layerObj::setConnectionType' => + 'layerobj::setconnectiontype' => array ( 0 => 'int', 'connectiontype' => 'int', 'plugin_library' => 'string', ), - 'layerObj::setFilter' => + 'layerobj::setfilter' => array ( 0 => 'int', 'expression' => 'string', ), - 'layerObj::setMetaData' => + 'layerobj::setmetadata' => array ( 0 => 'int', 'name' => 'string', 'value' => 'string', ), - 'layerObj::setProjection' => + 'layerobj::setprojection' => array ( 0 => 'int', 'proj_params' => 'string', ), - 'layerObj::setWKTProjection' => + 'layerobj::setwktprojection' => array ( 0 => 'int', 'proj_params' => 'string', ), - 'layerObj::updateFromString' => + 'layerobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', @@ -33725,65 +33725,65 @@ 'variable' => 'mixed', 'leak_data' => 'bool', ), - 'legendObj::convertToString' => + 'legendobj::converttostring' => array ( 0 => 'string', ), - 'legendObj::free' => + 'legendobj::free' => array ( 0 => 'void', ), - 'legendObj::set' => + 'legendobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'legendObj::updateFromString' => + 'legendobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', ), - 'LengthException::__construct' => + 'lengthexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'LengthException::__toString' => + 'lengthexception::__tostring' => array ( 0 => 'string', ), - 'LengthException::getCode' => + 'lengthexception::getcode' => array ( 0 => 'int', ), - 'LengthException::getFile' => + 'lengthexception::getfile' => array ( 0 => 'string', ), - 'LengthException::getLine' => + 'lengthexception::getline' => array ( 0 => 'int', ), - 'LengthException::getMessage' => + 'lengthexception::getmessage' => array ( 0 => 'string', ), - 'LengthException::getPrevious' => + 'lengthexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'LengthException::getTrace' => + 'lengthexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'LengthException::getTraceAsString' => + 'lengthexception::gettraceasstring' => array ( 0 => 'string', ), - 'LevelDB::__construct' => + 'leveldb::__construct' => array ( 0 => 'void', 'name' => 'string', @@ -33791,137 +33791,137 @@ 'read_options=' => 'array', 'write_options=' => 'array', ), - 'LevelDB::close' => + 'leveldb::close' => array ( 0 => 'mixed', ), - 'LevelDB::compactRange' => + 'leveldb::compactrange' => array ( 0 => 'mixed', 'start' => 'mixed', 'limit' => 'mixed', ), - 'LevelDB::delete' => + 'leveldb::delete' => array ( 0 => 'bool', 'key' => 'string', 'write_options=' => 'array', ), - 'LevelDB::destroy' => + 'leveldb::destroy' => array ( 0 => 'mixed', 'name' => 'mixed', 'options=' => 'array', ), - 'LevelDB::get' => + 'leveldb::get' => array ( 0 => 'bool|string', 'key' => 'string', 'read_options=' => 'array', ), - 'LevelDB::getApproximateSizes' => + 'leveldb::getapproximatesizes' => array ( 0 => 'mixed', 'start' => 'mixed', 'limit' => 'mixed', ), - 'LevelDB::getIterator' => + 'leveldb::getiterator' => array ( 0 => 'LevelDBIterator', 'options=' => 'array', ), - 'LevelDB::getProperty' => + 'leveldb::getproperty' => array ( 0 => 'mixed', 'name' => 'string', ), - 'LevelDB::getSnapshot' => + 'leveldb::getsnapshot' => array ( 0 => 'LevelDBSnapshot', ), - 'LevelDB::put' => + 'leveldb::put' => array ( 0 => 'mixed', 'key' => 'string', 'value' => 'string', 'write_options=' => 'array', ), - 'LevelDB::repair' => + 'leveldb::repair' => array ( 0 => 'mixed', 'name' => 'mixed', 'options=' => 'array', ), - 'LevelDB::set' => + 'leveldb::set' => array ( 0 => 'mixed', 'key' => 'string', 'value' => 'string', 'write_options=' => 'array', ), - 'LevelDB::write' => + 'leveldb::write' => array ( 0 => 'mixed', 'batch' => 'LevelDBWriteBatch', 'write_options=' => 'array', ), - 'LevelDBIterator::__construct' => + 'leveldbiterator::__construct' => array ( 0 => 'void', 'db' => 'LevelDB', 'read_options=' => 'array', ), - 'LevelDBIterator::current' => + 'leveldbiterator::current' => array ( 0 => 'mixed', ), - 'LevelDBIterator::destroy' => + 'leveldbiterator::destroy' => array ( 0 => 'mixed', ), - 'LevelDBIterator::getError' => + 'leveldbiterator::geterror' => array ( 0 => 'mixed', ), - 'LevelDBIterator::key' => + 'leveldbiterator::key' => array ( 0 => 'int|string', ), - 'LevelDBIterator::last' => + 'leveldbiterator::last' => array ( 0 => 'mixed', ), - 'LevelDBIterator::next' => + 'leveldbiterator::next' => array ( 0 => 'void', ), - 'LevelDBIterator::prev' => + 'leveldbiterator::prev' => array ( 0 => 'mixed', ), - 'LevelDBIterator::rewind' => + 'leveldbiterator::rewind' => array ( 0 => 'void', ), - 'LevelDBIterator::seek' => + 'leveldbiterator::seek' => array ( 0 => 'mixed', 'key' => 'mixed', ), - 'LevelDBIterator::valid' => + 'leveldbiterator::valid' => array ( 0 => 'bool', ), - 'LevelDBSnapshot::__construct' => + 'leveldbsnapshot::__construct' => array ( 0 => 'void', 'db' => 'LevelDB', ), - 'LevelDBSnapshot::release' => + 'leveldbsnapshot::release' => array ( 0 => 'mixed', ), - 'LevelDBWriteBatch::__construct' => + 'leveldbwritebatch::__construct' => array ( 0 => 'void', 'name' => 'mixed', @@ -33929,24 +33929,24 @@ 'read_options=' => 'array', 'write_options=' => 'array', ), - 'LevelDBWriteBatch::clear' => + 'leveldbwritebatch::clear' => array ( 0 => 'mixed', ), - 'LevelDBWriteBatch::delete' => + 'leveldbwritebatch::delete' => array ( 0 => 'mixed', 'key' => 'mixed', 'write_options=' => 'array', ), - 'LevelDBWriteBatch::put' => + 'leveldbwritebatch::put' => array ( 0 => 'mixed', 'key' => 'mixed', 'value' => 'mixed', 'write_options=' => 'array', ), - 'LevelDBWriteBatch::set' => + 'leveldbwritebatch::set' => array ( 0 => 'mixed', 'key' => 'mixed', @@ -34004,63 +34004,63 @@ 0 => 'bool', 'use_errors=' => 'bool|null', ), - 'LimitIterator::__construct' => + 'limititerator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', 'offset=' => 'int', 'limit=' => 'int', ), - 'LimitIterator::current' => + 'limititerator::current' => array ( 0 => 'mixed', ), - 'LimitIterator::getInnerIterator' => + 'limititerator::getinneriterator' => array ( 0 => 'Iterator|null', ), - 'LimitIterator::getPosition' => + 'limititerator::getposition' => array ( 0 => 'int', ), - 'LimitIterator::key' => + 'limititerator::key' => array ( 0 => 'mixed', ), - 'LimitIterator::next' => + 'limititerator::next' => array ( 0 => 'void', ), - 'LimitIterator::rewind' => + 'limititerator::rewind' => array ( 0 => 'void', ), - 'LimitIterator::seek' => + 'limititerator::seek' => array ( 0 => 'int', 'offset' => 'int', ), - 'LimitIterator::valid' => + 'limititerator::valid' => array ( 0 => 'bool', ), - 'lineObj::__construct' => + 'lineobj::__construct' => array ( 0 => 'void', ), - 'lineObj::add' => + 'lineobj::add' => array ( 0 => 'int', 'point' => 'pointObj', ), - 'lineObj::addXY' => + 'lineobj::addxy' => array ( 0 => 'int', 'x' => 'float', 'y' => 'float', 'm' => 'float', ), - 'lineObj::addXYZ' => + 'lineobj::addxyz' => array ( 0 => 'int', 'x' => 'float', @@ -34068,16 +34068,16 @@ 'z' => 'float', 'm' => 'float', ), - 'lineObj::ms_newLineObj' => + 'lineobj::ms_newlineobj' => array ( 0 => 'lineObj', ), - 'lineObj::point' => + 'lineobj::point' => array ( 0 => 'pointObj', 'i' => 'int', ), - 'lineObj::project' => + 'lineobj::project' => array ( 0 => 'int', 'in' => 'projectionObj', @@ -34102,88 +34102,88 @@ array ( 0 => 'array', ), - 'Locale::acceptFromHttp' => + 'locale::acceptfromhttp' => array ( 0 => 'false|string', 'header' => 'string', ), - 'Locale::canonicalize' => + 'locale::canonicalize' => array ( 0 => 'null|string', 'locale' => 'string', ), - 'Locale::composeLocale' => + 'locale::composelocale' => array ( 0 => 'string', 'subtags' => 'array', ), - 'Locale::filterMatches' => + 'locale::filtermatches' => array ( 0 => 'bool|null', 'languageTag' => 'string', 'locale' => 'string', 'canonicalize=' => 'bool', ), - 'Locale::getAllVariants' => + 'locale::getallvariants' => array ( 0 => 'array|null', 'locale' => 'string', ), - 'Locale::getDefault' => + 'locale::getdefault' => array ( 0 => 'string', ), - 'Locale::getDisplayLanguage' => + 'locale::getdisplaylanguage' => array ( 0 => 'string', 'locale' => 'string', 'displayLocale=' => 'null|string', ), - 'Locale::getDisplayName' => + 'locale::getdisplayname' => array ( 0 => 'string', 'locale' => 'string', 'displayLocale=' => 'null|string', ), - 'Locale::getDisplayRegion' => + 'locale::getdisplayregion' => array ( 0 => 'string', 'locale' => 'string', 'displayLocale=' => 'null|string', ), - 'Locale::getDisplayScript' => + 'locale::getdisplayscript' => array ( 0 => 'string', 'locale' => 'string', 'displayLocale=' => 'null|string', ), - 'Locale::getDisplayVariant' => + 'locale::getdisplayvariant' => array ( 0 => 'string', 'locale' => 'string', 'displayLocale=' => 'null|string', ), - 'Locale::getKeywords' => + 'locale::getkeywords' => array ( 0 => 'array|false|null', 'locale' => 'string', ), - 'Locale::getPrimaryLanguage' => + 'locale::getprimarylanguage' => array ( 0 => 'null|string', 'locale' => 'string', ), - 'Locale::getRegion' => + 'locale::getregion' => array ( 0 => 'null|string', 'locale' => 'string', ), - 'Locale::getScript' => + 'locale::getscript' => array ( 0 => 'null|string', 'locale' => 'string', ), - 'Locale::lookup' => + 'locale::lookup' => array ( 0 => 'null|string', 'languageTag' => 'array', @@ -34191,12 +34191,12 @@ 'canonicalize=' => 'bool', 'defaultLocale=' => 'null|string', ), - 'Locale::parseLocale' => + 'locale::parselocale' => array ( 0 => 'array|null', 'locale' => 'string', ), - 'Locale::setDefault' => + 'locale::setdefault' => array ( 0 => 'true', 'locale' => 'string', @@ -34326,42 +34326,42 @@ 0 => 'float', 'num' => 'float', ), - 'LogicException::__construct' => + 'logicexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'LogicException::__toString' => + 'logicexception::__tostring' => array ( 0 => 'string', ), - 'LogicException::getCode' => + 'logicexception::getcode' => array ( 0 => 'int', ), - 'LogicException::getFile' => + 'logicexception::getfile' => array ( 0 => 'string', ), - 'LogicException::getLine' => + 'logicexception::getline' => array ( 0 => 'int', ), - 'LogicException::getMessage' => + 'logicexception::getmessage' => array ( 0 => 'string', ), - 'LogicException::getPrevious' => + 'logicexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'LogicException::getTrace' => + 'logicexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'LogicException::getTraceAsString' => + 'logicexception::gettraceasstring' => array ( 0 => 'string', ), @@ -34381,52 +34381,52 @@ 'string' => 'string', 'characters=' => 'string', ), - 'Lua::__call' => + 'lua::__call' => array ( 0 => 'mixed', 'lua_func' => 'callable', 'args=' => 'array', 'use_self=' => 'int', ), - 'Lua::__construct' => + 'lua::__construct' => array ( 0 => 'void', 'lua_script_file' => 'string', ), - 'Lua::assign' => + 'lua::assign' => array ( 0 => 'Lua|null', 'name' => 'string', 'value' => 'mixed', ), - 'Lua::call' => + 'lua::call' => array ( 0 => 'mixed', 'lua_func' => 'callable', 'args=' => 'array', 'use_self=' => 'int', ), - 'Lua::eval' => + 'lua::eval' => array ( 0 => 'mixed', 'statements' => 'string', ), - 'Lua::getVersion' => + 'lua::getversion' => array ( 0 => 'string', ), - 'Lua::include' => + 'lua::include' => array ( 0 => 'mixed', 'file' => 'string', ), - 'Lua::registerCallback' => + 'lua::registercallback' => array ( 0 => 'Lua|false|null', 'name' => 'string', 'function' => 'callable', ), - 'LuaClosure::__invoke' => + 'luaclosure::__invoke' => array ( 0 => 'void', 'arg' => 'mixed', @@ -34539,218 +34539,218 @@ 0 => 'array', 'fp' => 'resource', ), - 'mapObj::__construct' => + 'mapobj::__construct' => array ( 0 => 'void', 'map_file_name' => 'string', 'new_map_path' => 'string', ), - 'mapObj::appendOutputFormat' => + 'mapobj::appendoutputformat' => array ( 0 => 'int', 'outputFormat' => 'outputformatObj', ), - 'mapObj::applyconfigoptions' => + 'mapobj::applyconfigoptions' => array ( 0 => 'int', ), - 'mapObj::applySLD' => + 'mapobj::applysld' => array ( 0 => 'int', 'sldxml' => 'string', ), - 'mapObj::applySLDURL' => + 'mapobj::applysldurl' => array ( 0 => 'int', 'sldurl' => 'string', ), - 'mapObj::convertToString' => + 'mapobj::converttostring' => array ( 0 => 'string', ), - 'mapObj::draw' => + 'mapobj::draw' => array ( 0 => 'imageObj|null', ), - 'mapObj::drawLabelCache' => + 'mapobj::drawlabelcache' => array ( 0 => 'int', 'image' => 'imageObj', ), - 'mapObj::drawLegend' => + 'mapobj::drawlegend' => array ( 0 => 'imageObj', ), - 'mapObj::drawQuery' => + 'mapobj::drawquery' => array ( 0 => 'imageObj|null', ), - 'mapObj::drawReferenceMap' => + 'mapobj::drawreferencemap' => array ( 0 => 'imageObj', ), - 'mapObj::drawScaleBar' => + 'mapobj::drawscalebar' => array ( 0 => 'imageObj', ), - 'mapObj::embedLegend' => + 'mapobj::embedlegend' => array ( 0 => 'int', 'image' => 'imageObj', ), - 'mapObj::embedScalebar' => + 'mapobj::embedscalebar' => array ( 0 => 'int', 'image' => 'imageObj', ), - 'mapObj::free' => + 'mapobj::free' => array ( 0 => 'void', ), - 'mapObj::generateSLD' => + 'mapobj::generatesld' => array ( 0 => 'string', ), - 'mapObj::getAllGroupNames' => + 'mapobj::getallgroupnames' => array ( 0 => 'array', ), - 'mapObj::getAllLayerNames' => + 'mapobj::getalllayernames' => array ( 0 => 'array', ), - 'mapObj::getColorbyIndex' => + 'mapobj::getcolorbyindex' => array ( 0 => 'colorObj', 'iCloIndex' => 'int', ), - 'mapObj::getConfigOption' => + 'mapobj::getconfigoption' => array ( 0 => 'string', 'key' => 'string', ), - 'mapObj::getLabel' => + 'mapobj::getlabel' => array ( 0 => 'labelcacheMemberObj', 'index' => 'int', ), - 'mapObj::getLayer' => + 'mapobj::getlayer' => array ( 0 => 'layerObj', 'index' => 'int', ), - 'mapObj::getLayerByName' => + 'mapobj::getlayerbyname' => array ( 0 => 'layerObj', 'layer_name' => 'string', ), - 'mapObj::getLayersDrawingOrder' => + 'mapobj::getlayersdrawingorder' => array ( 0 => 'array', ), - 'mapObj::getLayersIndexByGroup' => + 'mapobj::getlayersindexbygroup' => array ( 0 => 'array', 'groupname' => 'string', ), - 'mapObj::getMetaData' => + 'mapobj::getmetadata' => array ( 0 => 'int', 'name' => 'string', ), - 'mapObj::getNumSymbols' => + 'mapobj::getnumsymbols' => array ( 0 => 'int', ), - 'mapObj::getOutputFormat' => + 'mapobj::getoutputformat' => array ( 0 => 'null|outputformatObj', 'index' => 'int', ), - 'mapObj::getProjection' => + 'mapobj::getprojection' => array ( 0 => 'string', ), - 'mapObj::getSymbolByName' => + 'mapobj::getsymbolbyname' => array ( 0 => 'int', 'symbol_name' => 'string', ), - 'mapObj::getSymbolObjectById' => + 'mapobj::getsymbolobjectbyid' => array ( 0 => 'symbolObj', 'symbolid' => 'int', ), - 'mapObj::loadMapContext' => + 'mapobj::loadmapcontext' => array ( 0 => 'int', 'filename' => 'string', 'unique_layer_name' => 'bool', ), - 'mapObj::loadOWSParameters' => + 'mapobj::loadowsparameters' => array ( 0 => 'int', 'request' => 'OwsrequestObj', 'version' => 'string', ), - 'mapObj::moveLayerDown' => + 'mapobj::movelayerdown' => array ( 0 => 'int', 'layerindex' => 'int', ), - 'mapObj::moveLayerUp' => + 'mapobj::movelayerup' => array ( 0 => 'int', 'layerindex' => 'int', ), - 'mapObj::ms_newMapObjFromString' => + 'mapobj::ms_newmapobjfromstring' => array ( 0 => 'mapObj', 'map_file_string' => 'string', 'new_map_path' => 'string', ), - 'mapObj::offsetExtent' => + 'mapobj::offsetextent' => array ( 0 => 'int', 'x' => 'float', 'y' => 'float', ), - 'mapObj::owsDispatch' => + 'mapobj::owsdispatch' => array ( 0 => 'int', 'request' => 'OwsrequestObj', ), - 'mapObj::prepareImage' => + 'mapobj::prepareimage' => array ( 0 => 'imageObj', ), - 'mapObj::prepareQuery' => + 'mapobj::preparequery' => array ( 0 => 'void', ), - 'mapObj::processLegendTemplate' => + 'mapobj::processlegendtemplate' => array ( 0 => 'string', 'params' => 'array', ), - 'mapObj::processQueryTemplate' => + 'mapobj::processquerytemplate' => array ( 0 => 'string', 'params' => 'array', 'generateimages' => 'bool', ), - 'mapObj::processTemplate' => + 'mapobj::processtemplate' => array ( 0 => 'string', 'params' => 'array', 'generateimages' => 'bool', ), - 'mapObj::queryByFeatures' => + 'mapobj::querybyfeatures' => array ( 0 => 'int', 'slayer' => 'int', ), - 'mapObj::queryByIndex' => + 'mapobj::querybyindex' => array ( 0 => 'int', 'layerindex' => 'mixed', @@ -34758,84 +34758,84 @@ 'shapeindex' => 'mixed', 'addtoquery' => 'mixed', ), - 'mapObj::queryByPoint' => + 'mapobj::querybypoint' => array ( 0 => 'int', 'point' => 'pointObj', 'mode' => 'int', 'buffer' => 'float', ), - 'mapObj::queryByRect' => + 'mapobj::querybyrect' => array ( 0 => 'int', 'rect' => 'rectObj', ), - 'mapObj::queryByShape' => + 'mapobj::querybyshape' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'mapObj::removeLayer' => + 'mapobj::removelayer' => array ( 0 => 'layerObj', 'nIndex' => 'int', ), - 'mapObj::removeMetaData' => + 'mapobj::removemetadata' => array ( 0 => 'int', 'name' => 'string', ), - 'mapObj::removeOutputFormat' => + 'mapobj::removeoutputformat' => array ( 0 => 'int', 'name' => 'string', ), - 'mapObj::save' => + 'mapobj::save' => array ( 0 => 'int', 'filename' => 'string', ), - 'mapObj::saveMapContext' => + 'mapobj::savemapcontext' => array ( 0 => 'int', 'filename' => 'string', ), - 'mapObj::saveQuery' => + 'mapobj::savequery' => array ( 0 => 'int', 'filename' => 'string', 'results' => 'int', ), - 'mapObj::scaleExtent' => + 'mapobj::scaleextent' => array ( 0 => 'int', 'zoomfactor' => 'float', 'minscaledenom' => 'float', 'maxscaledenom' => 'float', ), - 'mapObj::selectOutputFormat' => + 'mapobj::selectoutputformat' => array ( 0 => 'int', 'type' => 'string', ), - 'mapObj::set' => + 'mapobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'mapObj::setCenter' => + 'mapobj::setcenter' => array ( 0 => 'int', 'center' => 'pointObj', ), - 'mapObj::setConfigOption' => + 'mapobj::setconfigoption' => array ( 0 => 'int', 'key' => 'string', 'value' => 'string', ), - 'mapObj::setExtent' => + 'mapobj::setextent' => array ( 0 => 'void', 'minx' => 'float', @@ -34843,46 +34843,46 @@ 'maxx' => 'float', 'maxy' => 'float', ), - 'mapObj::setFontSet' => + 'mapobj::setfontset' => array ( 0 => 'int', 'fileName' => 'string', ), - 'mapObj::setMetaData' => + 'mapobj::setmetadata' => array ( 0 => 'int', 'name' => 'string', 'value' => 'string', ), - 'mapObj::setProjection' => + 'mapobj::setprojection' => array ( 0 => 'int', 'proj_params' => 'string', 'bSetUnitsAndExtents' => 'bool', ), - 'mapObj::setRotation' => + 'mapobj::setrotation' => array ( 0 => 'int', 'rotation_angle' => 'float', ), - 'mapObj::setSize' => + 'mapobj::setsize' => array ( 0 => 'int', 'width' => 'int', 'height' => 'int', ), - 'mapObj::setSymbolSet' => + 'mapobj::setsymbolset' => array ( 0 => 'int', 'fileName' => 'string', ), - 'mapObj::setWKTProjection' => + 'mapobj::setwktprojection' => array ( 0 => 'int', 'proj_params' => 'string', 'bSetUnitsAndExtents' => 'bool', ), - 'mapObj::zoomPoint' => + 'mapobj::zoompoint' => array ( 0 => 'int', 'nZoomFactor' => 'int', @@ -34891,7 +34891,7 @@ 'nImageHeight' => 'int', 'oGeorefExt' => 'rectObj', ), - 'mapObj::zoomRectangle' => + 'mapobj::zoomrectangle' => array ( 0 => 'int', 'oPixelExt' => 'rectObj', @@ -34899,7 +34899,7 @@ 'nImageHeight' => 'int', 'oGeorefExt' => 'rectObj', ), - 'mapObj::zoomScale' => + 'mapobj::zoomscale' => array ( 0 => 'int', 'nScaleDenom' => 'float', @@ -35553,7 +35553,7 @@ 'td' => 'resource', 'data' => 'string', ), - 'Memcache::add' => + 'memcache::add' => array ( 0 => 'bool', 'key' => 'string', @@ -35561,7 +35561,7 @@ 'flag=' => 'int', 'expire=' => 'int', ), - 'Memcache::addServer' => + 'memcache::addserver' => array ( 0 => 'bool', 'host' => 'string', @@ -35574,100 +35574,100 @@ 'failure_callback=' => 'callable', 'timeoutms=' => 'int', ), - 'Memcache::append' => + 'memcache::append' => array ( 0 => 'mixed', ), - 'Memcache::cas' => + 'memcache::cas' => array ( 0 => 'mixed', ), - 'Memcache::close' => + 'memcache::close' => array ( 0 => 'bool', ), - 'Memcache::connect' => + 'memcache::connect' => array ( 0 => 'bool', 'host' => 'string', 'port=' => 'int', 'timeout=' => 'int', ), - 'Memcache::decrement' => + 'memcache::decrement' => array ( 0 => 'int', 'key' => 'string', 'value=' => 'int', ), - 'Memcache::delete' => + 'memcache::delete' => array ( 0 => 'bool', 'key' => 'string', 'timeout=' => 'int', ), - 'Memcache::findServer' => + 'memcache::findserver' => array ( 0 => 'mixed', ), - 'Memcache::flush' => + 'memcache::flush' => array ( 0 => 'bool', ), - 'Memcache::get' => + 'memcache::get' => array ( 0 => 'array|false|string', 'key' => 'string', 'flags=' => 'array', 'keys=' => 'array', ), - 'Memcache::get\'1' => + 'memcache::get\'1' => array ( 0 => 'array', 'key' => 'array', 'flags=' => 'array', ), - 'Memcache::getExtendedStats' => + 'memcache::getextendedstats' => array ( 0 => 'array|false>|false', 'type=' => 'string', 'slabid=' => 'int', 'limit=' => 'int', ), - 'Memcache::getServerStatus' => + 'memcache::getserverstatus' => array ( 0 => 'int', 'host' => 'string', 'port=' => 'int', ), - 'Memcache::getStats' => + 'memcache::getstats' => array ( 0 => 'array', 'type=' => 'string', 'slabid=' => 'int', 'limit=' => 'int', ), - 'Memcache::getVersion' => + 'memcache::getversion' => array ( 0 => 'string', ), - 'Memcache::increment' => + 'memcache::increment' => array ( 0 => 'int', 'key' => 'string', 'value=' => 'int', ), - 'Memcache::pconnect' => + 'memcache::pconnect' => array ( 0 => 'bool', 'host' => 'string', 'port=' => 'int', 'timeout=' => 'int', ), - 'Memcache::prepend' => + 'memcache::prepend' => array ( 0 => 'string', ), - 'Memcache::replace' => + 'memcache::replace' => array ( 0 => 'bool', 'key' => 'string', @@ -35675,7 +35675,7 @@ 'flag=' => 'int', 'expire=' => 'int', ), - 'Memcache::set' => + 'memcache::set' => array ( 0 => 'bool', 'key' => 'string', @@ -35683,17 +35683,17 @@ 'flag=' => 'int', 'expire=' => 'int', ), - 'Memcache::setCompressThreshold' => + 'memcache::setcompressthreshold' => array ( 0 => 'bool', 'threshold' => 'int', 'min_savings=' => 'float', ), - 'Memcache::setFailureCallback' => + 'memcache::setfailurecallback' => array ( 0 => 'mixed', ), - 'Memcache::setServerParams' => + 'memcache::setserverparams' => array ( 0 => 'bool', 'host' => 'string', @@ -35874,21 +35874,21 @@ 'status=' => 'bool', 'failure_callback=' => 'callable', ), - 'Memcached::__construct' => + 'memcached::__construct' => array ( 0 => 'void', 'persistent_id=' => 'null|string', 'callback=' => 'callable|null', 'connection_str=' => 'null|string', ), - 'Memcached::add' => + 'memcached::add' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::addByKey' => + 'memcached::addbykey' => array ( 0 => 'bool', 'server_key' => 'string', @@ -35896,32 +35896,32 @@ 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::addServer' => + 'memcached::addserver' => array ( 0 => 'bool', 'host' => 'string', 'port' => 'int', 'weight=' => 'int', ), - 'Memcached::addServers' => + 'memcached::addservers' => array ( 0 => 'bool', 'servers' => 'array', ), - 'Memcached::append' => + 'memcached::append' => array ( 0 => 'bool|null', 'key' => 'string', 'value' => 'string', ), - 'Memcached::appendByKey' => + 'memcached::appendbykey' => array ( 0 => 'bool|null', 'server_key' => 'string', 'key' => 'string', 'value' => 'string', ), - 'Memcached::cas' => + 'memcached::cas' => array ( 0 => 'bool', 'cas_token' => 'float|int|string', @@ -35929,7 +35929,7 @@ 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::casByKey' => + 'memcached::casbykey' => array ( 0 => 'bool', 'cas_token' => 'float|int|string', @@ -35938,7 +35938,7 @@ 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::decrement' => + 'memcached::decrement' => array ( 0 => 'false|int', 'key' => 'string', @@ -35946,7 +35946,7 @@ 'initial_value=' => 'int', 'expiry=' => 'int', ), - 'Memcached::decrementByKey' => + 'memcached::decrementbykey' => array ( 0 => 'false|int', 'server_key' => 'string', @@ -35955,61 +35955,61 @@ 'initial_value=' => 'int', 'expiry=' => 'int', ), - 'Memcached::delete' => + 'memcached::delete' => array ( 0 => 'bool', 'key' => 'string', 'time=' => 'int', ), - 'Memcached::deleteByKey' => + 'memcached::deletebykey' => array ( 0 => 'bool', 'server_key' => 'string', 'key' => 'string', 'time=' => 'int', ), - 'Memcached::deleteMulti' => + 'memcached::deletemulti' => array ( 0 => 'array', 'keys' => 'array', 'time=' => 'int', ), - 'Memcached::deleteMultiByKey' => + 'memcached::deletemultibykey' => array ( 0 => 'array', 'server_key' => 'string', 'keys' => 'array', 'time=' => 'int', ), - 'Memcached::fetch' => + 'memcached::fetch' => array ( 0 => 'array|false', ), - 'Memcached::fetchAll' => + 'memcached::fetchall' => array ( 0 => 'array|false', ), - 'Memcached::flush' => + 'memcached::flush' => array ( 0 => 'bool', 'delay=' => 'int', ), - 'Memcached::flushBuffers' => + 'memcached::flushbuffers' => array ( 0 => 'bool', ), - 'Memcached::get' => + 'memcached::get' => array ( 0 => 'false|mixed', 'key' => 'string', 'cache_cb=' => 'callable|null', 'get_flags=' => 'int', ), - 'Memcached::getAllKeys' => + 'memcached::getallkeys' => array ( 0 => 'array|false', ), - 'Memcached::getByKey' => + 'memcached::getbykey' => array ( 0 => 'false|mixed', 'server_key' => 'string', @@ -36017,14 +36017,14 @@ 'cache_cb=' => 'callable|null', 'get_flags=' => 'int', ), - 'Memcached::getDelayed' => + 'memcached::getdelayed' => array ( 0 => 'bool', 'keys' => 'array', 'with_cas=' => 'bool', 'value_cb=' => 'callable|null', ), - 'Memcached::getDelayedByKey' => + 'memcached::getdelayedbykey' => array ( 0 => 'bool', 'server_key' => 'string', @@ -36032,67 +36032,67 @@ 'with_cas=' => 'bool', 'value_cb=' => 'callable|null', ), - 'Memcached::getLastDisconnectedServer' => + 'memcached::getlastdisconnectedserver' => array ( 0 => 'array|false', ), - 'Memcached::getLastErrorCode' => + 'memcached::getlasterrorcode' => array ( 0 => 'int', ), - 'Memcached::getLastErrorErrno' => + 'memcached::getlasterrorerrno' => array ( 0 => 'int', ), - 'Memcached::getLastErrorMessage' => + 'memcached::getlasterrormessage' => array ( 0 => 'string', ), - 'Memcached::getMulti' => + 'memcached::getmulti' => array ( 0 => 'array|false', 'keys' => 'array', 'get_flags=' => 'int', ), - 'Memcached::getMultiByKey' => + 'memcached::getmultibykey' => array ( 0 => 'array|false', 'server_key' => 'string', 'keys' => 'array', 'get_flags=' => 'int', ), - 'Memcached::getOption' => + 'memcached::getoption' => array ( 0 => 'false|mixed', 'option' => 'int', ), - 'Memcached::getResultCode' => + 'memcached::getresultcode' => array ( 0 => 'int', ), - 'Memcached::getResultMessage' => + 'memcached::getresultmessage' => array ( 0 => 'string', ), - 'Memcached::getServerByKey' => + 'memcached::getserverbykey' => array ( 0 => 'array', 'server_key' => 'string', ), - 'Memcached::getServerList' => + 'memcached::getserverlist' => array ( 0 => 'array', ), - 'Memcached::getStats' => + 'memcached::getstats' => array ( 0 => 'array|false>|false', 'type=' => 'null|string', ), - 'Memcached::getVersion' => + 'memcached::getversion' => array ( 0 => 'array', ), - 'Memcached::increment' => + 'memcached::increment' => array ( 0 => 'false|int', 'key' => 'string', @@ -36100,7 +36100,7 @@ 'initial_value=' => 'int', 'expiry=' => 'int', ), - 'Memcached::incrementByKey' => + 'memcached::incrementbykey' => array ( 0 => 'false|int', 'server_key' => 'string', @@ -36109,39 +36109,39 @@ 'initial_value=' => 'int', 'expiry=' => 'int', ), - 'Memcached::isPersistent' => + 'memcached::ispersistent' => array ( 0 => 'bool', ), - 'Memcached::isPristine' => + 'memcached::ispristine' => array ( 0 => 'bool', ), - 'Memcached::prepend' => + 'memcached::prepend' => array ( 0 => 'bool|null', 'key' => 'string', 'value' => 'string', ), - 'Memcached::prependByKey' => + 'memcached::prependbykey' => array ( 0 => 'bool|null', 'server_key' => 'string', 'key' => 'string', 'value' => 'string', ), - 'Memcached::quit' => + 'memcached::quit' => array ( 0 => 'bool', ), - 'Memcached::replace' => + 'memcached::replace' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::replaceByKey' => + 'memcached::replacebykey' => array ( 0 => 'bool', 'server_key' => 'string', @@ -36149,25 +36149,25 @@ 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::resetServerList' => + 'memcached::resetserverlist' => array ( 0 => 'bool', ), - 'Memcached::set' => + 'memcached::set' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::setBucket' => + 'memcached::setbucket' => array ( 0 => 'bool', 'host_map' => 'array', 'forward_map' => 'array|null', 'replicas' => 'int', ), - 'Memcached::setByKey' => + 'memcached::setbykey' => array ( 0 => 'bool', 'server_key' => 'string', @@ -36175,55 +36175,55 @@ 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::setEncodingKey' => + 'memcached::setencodingkey' => array ( 0 => 'bool', 'key' => 'string', ), - 'Memcached::setMulti' => + 'memcached::setmulti' => array ( 0 => 'bool', 'items' => 'array', 'expiration=' => 'int', ), - 'Memcached::setMultiByKey' => + 'memcached::setmultibykey' => array ( 0 => 'bool', 'server_key' => 'string', 'items' => 'array', 'expiration=' => 'int', ), - 'Memcached::setOption' => + 'memcached::setoption' => array ( 0 => 'bool', 'option' => 'int', 'value' => 'mixed', ), - 'Memcached::setOptions' => + 'memcached::setoptions' => array ( 0 => 'bool', 'options' => 'array', ), - 'Memcached::setSaslAuthData' => + 'memcached::setsaslauthdata' => array ( 0 => 'bool', 'username' => 'string', 'password' => 'string', ), - 'Memcached::touch' => + 'memcached::touch' => array ( 0 => 'bool', 'key' => 'string', 'expiration=' => 'int', ), - 'Memcached::touchByKey' => + 'memcached::touchbykey' => array ( 0 => 'bool', 'server_key' => 'string', 'key' => 'string', 'expiration=' => 'int', ), - 'MemcachePool::add' => + 'memcachepool::add' => array ( 0 => 'bool', 'key' => 'string', @@ -36231,7 +36231,7 @@ 'flag=' => 'int', 'expire=' => 'int', ), - 'MemcachePool::addServer' => + 'memcachepool::addserver' => array ( 0 => 'bool', 'host' => 'string', @@ -36244,86 +36244,86 @@ 'failure_callback=' => 'callable|null', 'timeoutms=' => 'int', ), - 'MemcachePool::append' => + 'memcachepool::append' => array ( 0 => 'mixed', ), - 'MemcachePool::cas' => + 'memcachepool::cas' => array ( 0 => 'mixed', ), - 'MemcachePool::close' => + 'memcachepool::close' => array ( 0 => 'bool', ), - 'MemcachePool::connect' => + 'memcachepool::connect' => array ( 0 => 'bool', 'host' => 'string', 'port' => 'int', 'timeout=' => 'int', ), - 'MemcachePool::decrement' => + 'memcachepool::decrement' => array ( 0 => 'false|int', 'key' => 'mixed', 'value=' => 'int|mixed', ), - 'MemcachePool::delete' => + 'memcachepool::delete' => array ( 0 => 'bool', 'key' => 'mixed', 'timeout=' => 'int|mixed', ), - 'MemcachePool::findServer' => + 'memcachepool::findserver' => array ( 0 => 'mixed', ), - 'MemcachePool::flush' => + 'memcachepool::flush' => array ( 0 => 'bool', ), - 'MemcachePool::get' => + 'memcachepool::get' => array ( 0 => 'array|false|string', 'key' => 'array|string', '&flags=' => 'array|int', ), - 'MemcachePool::getExtendedStats' => + 'memcachepool::getextendedstats' => array ( 0 => 'array|false>|false', 'type=' => 'string', 'slabid=' => 'int', 'limit=' => 'int', ), - 'MemcachePool::getServerStatus' => + 'memcachepool::getserverstatus' => array ( 0 => 'int', 'host' => 'string', 'port=' => 'int', ), - 'MemcachePool::getStats' => + 'memcachepool::getstats' => array ( 0 => 'array|false', 'type=' => 'string', 'slabid=' => 'int', 'limit=' => 'int', ), - 'MemcachePool::getVersion' => + 'memcachepool::getversion' => array ( 0 => 'false|string', ), - 'MemcachePool::increment' => + 'memcachepool::increment' => array ( 0 => 'false|int', 'key' => 'mixed', 'value=' => 'int|mixed', ), - 'MemcachePool::prepend' => + 'memcachepool::prepend' => array ( 0 => 'string', ), - 'MemcachePool::replace' => + 'memcachepool::replace' => array ( 0 => 'bool', 'key' => 'string', @@ -36331,7 +36331,7 @@ 'flag=' => 'int', 'expire=' => 'int', ), - 'MemcachePool::set' => + 'memcachepool::set' => array ( 0 => 'bool', 'key' => 'string', @@ -36339,17 +36339,17 @@ 'flag=' => 'int', 'expire=' => 'int', ), - 'MemcachePool::setCompressThreshold' => + 'memcachepool::setcompressthreshold' => array ( 0 => 'bool', 'thresold' => 'int', 'min_saving=' => 'float', ), - 'MemcachePool::setFailureCallback' => + 'memcachepool::setfailurecallback' => array ( 0 => 'mixed', ), - 'MemcachePool::setServerParams' => + 'memcachepool::setserverparams' => array ( 0 => 'bool', 'host' => 'string', @@ -36373,59 +36373,59 @@ array ( 0 => 'void', ), - 'MessageFormatter::__construct' => + 'messageformatter::__construct' => array ( 0 => 'void', 'locale' => 'string', 'pattern' => 'string', ), - 'MessageFormatter::create' => + 'messageformatter::create' => array ( 0 => 'MessageFormatter|null', 'locale' => 'string', 'pattern' => 'string', ), - 'MessageFormatter::format' => + 'messageformatter::format' => array ( 0 => 'false|string', 'values' => 'array', ), - 'MessageFormatter::formatMessage' => + 'messageformatter::formatmessage' => array ( 0 => 'false|string', 'locale' => 'string', 'pattern' => 'string', 'values' => 'array', ), - 'MessageFormatter::getErrorCode' => + 'messageformatter::geterrorcode' => array ( 0 => 'int', ), - 'MessageFormatter::getErrorMessage' => + 'messageformatter::geterrormessage' => array ( 0 => 'string', ), - 'MessageFormatter::getLocale' => + 'messageformatter::getlocale' => array ( 0 => 'string', ), - 'MessageFormatter::getPattern' => + 'messageformatter::getpattern' => array ( 0 => 'string', ), - 'MessageFormatter::parse' => + 'messageformatter::parse' => array ( 0 => 'array|false', 'string' => 'string', ), - 'MessageFormatter::parseMessage' => + 'messageformatter::parsemessage' => array ( 0 => 'array|false', 'locale' => 'string', 'pattern' => 'string', 'message' => 'string', ), - 'MessageFormatter::setPattern' => + 'messageformatter::setpattern' => array ( 0 => 'bool', 'pattern' => 'string', @@ -36552,337 +36552,337 @@ 'format' => 'string', 'value' => 'float', ), - 'Mongo::__construct' => + 'mongo::__construct' => array ( 0 => 'void', 'server=' => 'string', 'options=' => 'array', 'driver_options=' => 'array', ), - 'Mongo::__get' => + 'mongo::__get' => array ( 0 => 'MongoDB', 'dbname' => 'string', ), - 'Mongo::__toString' => + 'mongo::__tostring' => array ( 0 => 'string', ), - 'Mongo::close' => + 'mongo::close' => array ( 0 => 'bool', ), - 'Mongo::connect' => + 'mongo::connect' => array ( 0 => 'bool', ), - 'Mongo::connectUtil' => + 'mongo::connectutil' => array ( 0 => 'bool', ), - 'Mongo::dropDB' => + 'mongo::dropdb' => array ( 0 => 'array', 'db' => 'mixed', ), - 'Mongo::forceError' => + 'mongo::forceerror' => array ( 0 => 'bool', ), - 'Mongo::getConnections' => + 'mongo::getconnections' => array ( 0 => 'array', ), - 'Mongo::getHosts' => + 'mongo::gethosts' => array ( 0 => 'array', ), - 'Mongo::getPoolSize' => + 'mongo::getpoolsize' => array ( 0 => 'int', ), - 'Mongo::getReadPreference' => + 'mongo::getreadpreference' => array ( 0 => 'array', ), - 'Mongo::getSlave' => + 'mongo::getslave' => array ( 0 => 'null|string', ), - 'Mongo::getSlaveOkay' => + 'mongo::getslaveokay' => array ( 0 => 'bool', ), - 'Mongo::getWriteConcern' => + 'mongo::getwriteconcern' => array ( 0 => 'array', ), - 'Mongo::killCursor' => + 'mongo::killcursor' => array ( 0 => 'mixed', 'server_hash' => 'string', 'id' => 'MongoInt64|int', ), - 'Mongo::lastError' => + 'mongo::lasterror' => array ( 0 => 'array|null', ), - 'Mongo::listDBs' => + 'mongo::listdbs' => array ( 0 => 'array', ), - 'Mongo::pairConnect' => + 'mongo::pairconnect' => array ( 0 => 'bool', ), - 'Mongo::pairPersistConnect' => + 'mongo::pairpersistconnect' => array ( 0 => 'bool', 'username=' => 'string', 'password=' => 'string', ), - 'Mongo::persistConnect' => + 'mongo::persistconnect' => array ( 0 => 'bool', 'username=' => 'string', 'password=' => 'string', ), - 'Mongo::poolDebug' => + 'mongo::pooldebug' => array ( 0 => 'array', ), - 'Mongo::prevError' => + 'mongo::preverror' => array ( 0 => 'array', ), - 'Mongo::resetError' => + 'mongo::reseterror' => array ( 0 => 'array', ), - 'Mongo::selectCollection' => + 'mongo::selectcollection' => array ( 0 => 'MongoCollection', 'db' => 'string', 'collection' => 'string', ), - 'Mongo::selectDB' => + 'mongo::selectdb' => array ( 0 => 'MongoDB', 'name' => 'string', ), - 'Mongo::setPoolSize' => + 'mongo::setpoolsize' => array ( 0 => 'bool', 'size' => 'int', ), - 'Mongo::setReadPreference' => + 'mongo::setreadpreference' => array ( 0 => 'bool', 'readPreference' => 'string', 'tags=' => 'array', ), - 'Mongo::setSlaveOkay' => + 'mongo::setslaveokay' => array ( 0 => 'bool', 'ok=' => 'bool', ), - 'Mongo::switchSlave' => + 'mongo::switchslave' => array ( 0 => 'string', ), - 'MongoBinData::__construct' => + 'mongobindata::__construct' => array ( 0 => 'void', 'data' => 'string', 'type=' => 'int', ), - 'MongoBinData::__toString' => + 'mongobindata::__tostring' => array ( 0 => 'string', ), - 'MongoClient::__construct' => + 'mongoclient::__construct' => array ( 0 => 'void', 'server=' => 'string', 'options=' => 'array', 'driver_options=' => 'array', ), - 'MongoClient::__get' => + 'mongoclient::__get' => array ( 0 => 'MongoDB', 'dbname' => 'string', ), - 'MongoClient::__toString' => + 'mongoclient::__tostring' => array ( 0 => 'string', ), - 'MongoClient::close' => + 'mongoclient::close' => array ( 0 => 'bool', 'connection=' => 'bool|string', ), - 'MongoClient::connect' => + 'mongoclient::connect' => array ( 0 => 'bool', ), - 'MongoClient::dropDB' => + 'mongoclient::dropdb' => array ( 0 => 'array', 'db' => 'mixed', ), - 'MongoClient::getConnections' => + 'mongoclient::getconnections' => array ( 0 => 'array', ), - 'MongoClient::getHosts' => + 'mongoclient::gethosts' => array ( 0 => 'array', ), - 'MongoClient::getReadPreference' => + 'mongoclient::getreadpreference' => array ( 0 => 'array', ), - 'MongoClient::getWriteConcern' => + 'mongoclient::getwriteconcern' => array ( 0 => 'array', ), - 'MongoClient::killCursor' => + 'mongoclient::killcursor' => array ( 0 => 'bool', 'server_hash' => 'string', 'id' => 'MongoInt64|int', ), - 'MongoClient::listDBs' => + 'mongoclient::listdbs' => array ( 0 => 'array', ), - 'MongoClient::selectCollection' => + 'mongoclient::selectcollection' => array ( 0 => 'MongoCollection', 'db' => 'string', 'collection' => 'string', ), - 'MongoClient::selectDB' => + 'mongoclient::selectdb' => array ( 0 => 'MongoDB', 'name' => 'string', ), - 'MongoClient::setReadPreference' => + 'mongoclient::setreadpreference' => array ( 0 => 'bool', 'read_preference' => 'string', 'tags=' => 'array', ), - 'MongoClient::setWriteConcern' => + 'mongoclient::setwriteconcern' => array ( 0 => 'bool', 'w' => 'mixed', 'wtimeout=' => 'int', ), - 'MongoClient::switchSlave' => + 'mongoclient::switchslave' => array ( 0 => 'string', ), - 'MongoCode::__construct' => + 'mongocode::__construct' => array ( 0 => 'void', 'code' => 'string', 'scope=' => 'array', ), - 'MongoCode::__toString' => + 'mongocode::__tostring' => array ( 0 => 'string', ), - 'MongoCollection::__construct' => + 'mongocollection::__construct' => array ( 0 => 'void', 'db' => 'MongoDB', 'name' => 'string', ), - 'MongoCollection::__get' => + 'mongocollection::__get' => array ( 0 => 'MongoCollection', 'name' => 'string', ), - 'MongoCollection::__toString' => + 'mongocollection::__tostring' => array ( 0 => 'string', ), - 'MongoCollection::aggregate' => + 'mongocollection::aggregate' => array ( 0 => 'array', 'op' => 'array', 'op=' => 'array', '...args=' => 'array', ), - 'MongoCollection::aggregate\'1' => + 'mongocollection::aggregate\'1' => array ( 0 => 'array', 'pipeline' => 'array', 'options=' => 'array', ), - 'MongoCollection::aggregateCursor' => + 'mongocollection::aggregatecursor' => array ( 0 => 'MongoCommandCursor', 'command' => 'array', 'options=' => 'array', ), - 'MongoCollection::batchInsert' => + 'mongocollection::batchinsert' => array ( 0 => 'array|bool', 'a' => 'array', 'options=' => 'array', ), - 'MongoCollection::count' => + 'mongocollection::count' => array ( 0 => 'int', 'query=' => 'array', 'limit=' => 'int', 'skip=' => 'int', ), - 'MongoCollection::createDBRef' => + 'mongocollection::createdbref' => array ( 0 => 'array', 'a' => 'array', ), - 'MongoCollection::createIndex' => + 'mongocollection::createindex' => array ( 0 => 'array', 'keys' => 'array', 'options=' => 'array', ), - 'MongoCollection::deleteIndex' => + 'mongocollection::deleteindex' => array ( 0 => 'array', 'keys' => 'array|string', ), - 'MongoCollection::deleteIndexes' => + 'mongocollection::deleteindexes' => array ( 0 => 'array', ), - 'MongoCollection::distinct' => + 'mongocollection::distinct' => array ( 0 => 'array|false', 'key' => 'string', 'query=' => 'array', ), - 'MongoCollection::drop' => + 'mongocollection::drop' => array ( 0 => 'array', ), - 'MongoCollection::ensureIndex' => + 'mongocollection::ensureindex' => array ( 0 => 'bool', 'keys' => 'array', 'options=' => 'array', ), - 'MongoCollection::find' => + 'mongocollection::find' => array ( 0 => 'MongoCursor', 'query=' => 'array', 'fields=' => 'array', ), - 'MongoCollection::findAndModify' => + 'mongocollection::findandmodify' => array ( 0 => 'array', 'query' => 'array', @@ -36890,38 +36890,38 @@ 'fields=' => 'array', 'options=' => 'array', ), - 'MongoCollection::findOne' => + 'mongocollection::findone' => array ( 0 => 'array|null', 'query=' => 'array', 'fields=' => 'array', ), - 'MongoCollection::getDBRef' => + 'mongocollection::getdbref' => array ( 0 => 'array', 'ref' => 'array', ), - 'MongoCollection::getIndexInfo' => + 'mongocollection::getindexinfo' => array ( 0 => 'array', ), - 'MongoCollection::getName' => + 'mongocollection::getname' => array ( 0 => 'string', ), - 'MongoCollection::getReadPreference' => + 'mongocollection::getreadpreference' => array ( 0 => 'array', ), - 'MongoCollection::getSlaveOkay' => + 'mongocollection::getslaveokay' => array ( 0 => 'bool', ), - 'MongoCollection::getWriteConcern' => + 'mongocollection::getwriteconcern' => array ( 0 => 'array', ), - 'MongoCollection::group' => + 'mongocollection::group' => array ( 0 => 'array', 'keys' => 'mixed', @@ -36929,126 +36929,126 @@ 'reduce' => 'MongoCode', 'options=' => 'array', ), - 'MongoCollection::insert' => + 'mongocollection::insert' => array ( 0 => 'array|bool', 'a' => 'array|object', 'options=' => 'array', ), - 'MongoCollection::parallelCollectionScan' => + 'mongocollection::parallelcollectionscan' => array ( 0 => 'array', 'num_cursors' => 'int', ), - 'MongoCollection::remove' => + 'mongocollection::remove' => array ( 0 => 'array|bool', 'criteria=' => 'array', 'options=' => 'array', ), - 'MongoCollection::save' => + 'mongocollection::save' => array ( 0 => 'array|bool', 'a' => 'array|object', 'options=' => 'array', ), - 'MongoCollection::setReadPreference' => + 'mongocollection::setreadpreference' => array ( 0 => 'bool', 'read_preference' => 'string', 'tags=' => 'array', ), - 'MongoCollection::setSlaveOkay' => + 'mongocollection::setslaveokay' => array ( 0 => 'bool', 'ok=' => 'bool', ), - 'MongoCollection::setWriteConcern' => + 'mongocollection::setwriteconcern' => array ( 0 => 'bool', 'w' => 'mixed', 'wtimeout=' => 'int', ), - 'MongoCollection::toIndexString' => + 'mongocollection::toindexstring' => array ( 0 => 'string', 'keys' => 'mixed', ), - 'MongoCollection::update' => + 'mongocollection::update' => array ( 0 => 'bool', 'criteria' => 'array', 'newobj' => 'array', 'options=' => 'array', ), - 'MongoCollection::validate' => + 'mongocollection::validate' => array ( 0 => 'array', 'scan_data=' => 'bool', ), - 'MongoCommandCursor::__construct' => + 'mongocommandcursor::__construct' => array ( 0 => 'void', 'connection' => 'MongoClient', 'ns' => 'string', 'command' => 'array', ), - 'MongoCommandCursor::batchSize' => + 'mongocommandcursor::batchsize' => array ( 0 => 'MongoCommandCursor', 'batchSize' => 'int', ), - 'MongoCommandCursor::createFromDocument' => + 'mongocommandcursor::createfromdocument' => array ( 0 => 'MongoCommandCursor', 'connection' => 'MongoClient', 'hash' => 'string', 'document' => 'array', ), - 'MongoCommandCursor::current' => + 'mongocommandcursor::current' => array ( 0 => 'array', ), - 'MongoCommandCursor::dead' => + 'mongocommandcursor::dead' => array ( 0 => 'bool', ), - 'MongoCommandCursor::getReadPreference' => + 'mongocommandcursor::getreadpreference' => array ( 0 => 'array', ), - 'MongoCommandCursor::info' => + 'mongocommandcursor::info' => array ( 0 => 'array', ), - 'MongoCommandCursor::key' => + 'mongocommandcursor::key' => array ( 0 => 'int', ), - 'MongoCommandCursor::next' => + 'mongocommandcursor::next' => array ( 0 => 'void', ), - 'MongoCommandCursor::rewind' => + 'mongocommandcursor::rewind' => array ( 0 => 'array', ), - 'MongoCommandCursor::setReadPreference' => + 'mongocommandcursor::setreadpreference' => array ( 0 => 'MongoCommandCursor', 'read_preference' => 'string', 'tags=' => 'array', ), - 'MongoCommandCursor::timeout' => + 'mongocommandcursor::timeout' => array ( 0 => 'MongoCommandCursor', 'ms' => 'int', ), - 'MongoCommandCursor::valid' => + 'mongocommandcursor::valid' => array ( 0 => 'bool', ), - 'MongoCursor::__construct' => + 'mongocursor::__construct' => array ( 0 => 'void', 'connection' => 'MongoClient', @@ -37056,294 +37056,294 @@ 'query=' => 'array', 'fields=' => 'array', ), - 'MongoCursor::addOption' => + 'mongocursor::addoption' => array ( 0 => 'MongoCursor', 'key' => 'string', 'value' => 'mixed', ), - 'MongoCursor::awaitData' => + 'mongocursor::awaitdata' => array ( 0 => 'MongoCursor', 'wait=' => 'bool', ), - 'MongoCursor::batchSize' => + 'mongocursor::batchsize' => array ( 0 => 'MongoCursor', 'num' => 'int', ), - 'MongoCursor::count' => + 'mongocursor::count' => array ( 0 => 'int', 'foundonly=' => 'bool', ), - 'MongoCursor::current' => + 'mongocursor::current' => array ( 0 => 'array', ), - 'MongoCursor::dead' => + 'mongocursor::dead' => array ( 0 => 'bool', ), - 'MongoCursor::doQuery' => + 'mongocursor::doquery' => array ( 0 => 'void', ), - 'MongoCursor::explain' => + 'mongocursor::explain' => array ( 0 => 'array', ), - 'MongoCursor::fields' => + 'mongocursor::fields' => array ( 0 => 'MongoCursor', 'f' => 'array', ), - 'MongoCursor::getNext' => + 'mongocursor::getnext' => array ( 0 => 'array', ), - 'MongoCursor::getReadPreference' => + 'mongocursor::getreadpreference' => array ( 0 => 'array', ), - 'MongoCursor::hasNext' => + 'mongocursor::hasnext' => array ( 0 => 'bool', ), - 'MongoCursor::hint' => + 'mongocursor::hint' => array ( 0 => 'MongoCursor', 'key_pattern' => 'array|object|string', ), - 'MongoCursor::immortal' => + 'mongocursor::immortal' => array ( 0 => 'MongoCursor', 'liveforever=' => 'bool', ), - 'MongoCursor::info' => + 'mongocursor::info' => array ( 0 => 'array', ), - 'MongoCursor::key' => + 'mongocursor::key' => array ( 0 => 'string', ), - 'MongoCursor::limit' => + 'mongocursor::limit' => array ( 0 => 'MongoCursor', 'num' => 'int', ), - 'MongoCursor::maxTimeMS' => + 'mongocursor::maxtimems' => array ( 0 => 'MongoCursor', 'ms' => 'int', ), - 'MongoCursor::next' => + 'mongocursor::next' => array ( 0 => 'array', ), - 'MongoCursor::partial' => + 'mongocursor::partial' => array ( 0 => 'MongoCursor', 'okay=' => 'bool', ), - 'MongoCursor::reset' => + 'mongocursor::reset' => array ( 0 => 'void', ), - 'MongoCursor::rewind' => + 'mongocursor::rewind' => array ( 0 => 'void', ), - 'MongoCursor::setFlag' => + 'mongocursor::setflag' => array ( 0 => 'MongoCursor', 'flag' => 'int', 'set=' => 'bool', ), - 'MongoCursor::setReadPreference' => + 'mongocursor::setreadpreference' => array ( 0 => 'MongoCursor', 'read_preference' => 'string', 'tags=' => 'array', ), - 'MongoCursor::skip' => + 'mongocursor::skip' => array ( 0 => 'MongoCursor', 'num' => 'int', ), - 'MongoCursor::slaveOkay' => + 'mongocursor::slaveokay' => array ( 0 => 'MongoCursor', 'okay=' => 'bool', ), - 'MongoCursor::snapshot' => + 'mongocursor::snapshot' => array ( 0 => 'MongoCursor', ), - 'MongoCursor::sort' => + 'mongocursor::sort' => array ( 0 => 'MongoCursor', 'fields' => 'array', ), - 'MongoCursor::tailable' => + 'mongocursor::tailable' => array ( 0 => 'MongoCursor', 'tail=' => 'bool', ), - 'MongoCursor::timeout' => + 'mongocursor::timeout' => array ( 0 => 'MongoCursor', 'ms' => 'int', ), - 'MongoCursor::valid' => + 'mongocursor::valid' => array ( 0 => 'bool', ), - 'MongoCursorException::__clone' => + 'mongocursorexception::__clone' => array ( 0 => 'void', ), - 'MongoCursorException::__construct' => + 'mongocursorexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'MongoCursorException::__toString' => + 'mongocursorexception::__tostring' => array ( 0 => 'string', ), - 'MongoCursorException::__wakeup' => + 'mongocursorexception::__wakeup' => array ( 0 => 'void', ), - 'MongoCursorException::getCode' => + 'mongocursorexception::getcode' => array ( 0 => 'int', ), - 'MongoCursorException::getFile' => + 'mongocursorexception::getfile' => array ( 0 => 'string', ), - 'MongoCursorException::getHost' => + 'mongocursorexception::gethost' => array ( 0 => 'string', ), - 'MongoCursorException::getLine' => + 'mongocursorexception::getline' => array ( 0 => 'int', ), - 'MongoCursorException::getMessage' => + 'mongocursorexception::getmessage' => array ( 0 => 'string', ), - 'MongoCursorException::getPrevious' => + 'mongocursorexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'MongoCursorException::getTrace' => + 'mongocursorexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'MongoCursorException::getTraceAsString' => + 'mongocursorexception::gettraceasstring' => array ( 0 => 'string', ), - 'MongoCursorInterface::__construct' => + 'mongocursorinterface::__construct' => array ( 0 => 'void', ), - 'MongoCursorInterface::batchSize' => + 'mongocursorinterface::batchsize' => array ( 0 => 'MongoCursorInterface', 'batchSize' => 'int', ), - 'MongoCursorInterface::current' => + 'mongocursorinterface::current' => array ( 0 => 'mixed', ), - 'MongoCursorInterface::dead' => + 'mongocursorinterface::dead' => array ( 0 => 'bool', ), - 'MongoCursorInterface::getReadPreference' => + 'mongocursorinterface::getreadpreference' => array ( 0 => 'array', ), - 'MongoCursorInterface::info' => + 'mongocursorinterface::info' => array ( 0 => 'array', ), - 'MongoCursorInterface::key' => + 'mongocursorinterface::key' => array ( 0 => 'int|string', ), - 'MongoCursorInterface::next' => + 'mongocursorinterface::next' => array ( 0 => 'void', ), - 'MongoCursorInterface::rewind' => + 'mongocursorinterface::rewind' => array ( 0 => 'void', ), - 'MongoCursorInterface::setReadPreference' => + 'mongocursorinterface::setreadpreference' => array ( 0 => 'MongoCursorInterface', 'read_preference' => 'string', 'tags=' => 'array', ), - 'MongoCursorInterface::timeout' => + 'mongocursorinterface::timeout' => array ( 0 => 'MongoCursorInterface', 'ms' => 'int', ), - 'MongoCursorInterface::valid' => + 'mongocursorinterface::valid' => array ( 0 => 'bool', ), - 'MongoDate::__construct' => + 'mongodate::__construct' => array ( 0 => 'void', 'second=' => 'int', 'usecond=' => 'int', ), - 'MongoDate::__toString' => + 'mongodate::__tostring' => array ( 0 => 'string', ), - 'MongoDate::toDateTime' => + 'mongodate::todatetime' => array ( 0 => 'DateTime', ), - 'MongoDB::__construct' => + 'mongodb::__construct' => array ( 0 => 'void', 'conn' => 'MongoClient', 'name' => 'string', ), - 'MongoDB::__get' => + 'mongodb::__get' => array ( 0 => 'MongoCollection', 'name' => 'string', ), - 'MongoDB::__toString' => + 'mongodb::__tostring' => array ( 0 => 'string', ), - 'MongoDB::authenticate' => + 'mongodb::authenticate' => array ( 0 => 'array', 'username' => 'string', 'password' => 'string', ), - 'MongoDB::command' => + 'mongodb::command' => array ( 0 => 'array', 'command' => 'array', ), - 'MongoDB::createCollection' => + 'mongodb::createcollection' => array ( 0 => 'MongoCollection', 'name' => 'string', @@ -37351,1861 +37351,1861 @@ 'size=' => 'int', 'max=' => 'int', ), - 'MongoDB::createDBRef' => + 'mongodb::createdbref' => array ( 0 => 'array', 'collection' => 'string', 'a' => 'mixed', ), - 'MongoDB::drop' => + 'mongodb::drop' => array ( 0 => 'array', ), - 'MongoDB::dropCollection' => + 'mongodb::dropcollection' => array ( 0 => 'array', 'coll' => 'MongoCollection|string', ), - 'MongoDB::execute' => + 'mongodb::execute' => array ( 0 => 'array', 'code' => 'MongoCode|string', 'args=' => 'array', ), - 'MongoDB::forceError' => + 'mongodb::forceerror' => array ( 0 => 'bool', ), - 'MongoDB::getCollectionInfo' => + 'mongodb::getcollectioninfo' => array ( 0 => 'array', 'options=' => 'array', ), - 'MongoDB::getCollectionNames' => + 'mongodb::getcollectionnames' => array ( 0 => 'array', 'options=' => 'array', ), - 'MongoDB::getDBRef' => + 'mongodb::getdbref' => array ( 0 => 'array', 'ref' => 'array', ), - 'MongoDB::getGridFS' => + 'mongodb::getgridfs' => array ( 0 => 'MongoGridFS', 'prefix=' => 'string', ), - 'MongoDB::getProfilingLevel' => + 'mongodb::getprofilinglevel' => array ( 0 => 'int', ), - 'MongoDB::getReadPreference' => + 'mongodb::getreadpreference' => array ( 0 => 'array', ), - 'MongoDB::getSlaveOkay' => + 'mongodb::getslaveokay' => array ( 0 => 'bool', ), - 'MongoDB::getWriteConcern' => + 'mongodb::getwriteconcern' => array ( 0 => 'array', ), - 'MongoDB::lastError' => + 'mongodb::lasterror' => array ( 0 => 'array', ), - 'MongoDB::listCollections' => + 'mongodb::listcollections' => array ( 0 => 'array', ), - 'MongoDB::prevError' => + 'mongodb::preverror' => array ( 0 => 'array', ), - 'MongoDB::repair' => + 'mongodb::repair' => array ( 0 => 'array', 'preserve_cloned_files=' => 'bool', 'backup_original_files=' => 'bool', ), - 'MongoDB::resetError' => + 'mongodb::reseterror' => array ( 0 => 'array', ), - 'MongoDB::selectCollection' => + 'mongodb::selectcollection' => array ( 0 => 'MongoCollection', 'name' => 'string', ), - 'MongoDB::setProfilingLevel' => + 'mongodb::setprofilinglevel' => array ( 0 => 'int', 'level' => 'int', ), - 'MongoDB::setReadPreference' => + 'mongodb::setreadpreference' => array ( 0 => 'bool', 'read_preference' => 'string', 'tags=' => 'array', ), - 'MongoDB::setSlaveOkay' => + 'mongodb::setslaveokay' => array ( 0 => 'bool', 'ok=' => 'bool', ), - 'MongoDB::setWriteConcern' => + 'mongodb::setwriteconcern' => array ( 0 => 'bool', 'w' => 'mixed', 'wtimeout=' => 'int', ), - 'MongoDB\\BSON\\fromJSON' => + 'mongodb\\bson\\fromjson' => array ( 0 => 'string', 'json' => 'string', ), - 'MongoDB\\BSON\\fromPHP' => + 'mongodb\\bson\\fromphp' => array ( 0 => 'string', 'value' => 'array|object', ), - 'MongoDB\\BSON\\toCanonicalExtendedJSON' => + 'mongodb\\bson\\tocanonicalextendedjson' => array ( 0 => 'string', 'bson' => 'string', ), - 'MongoDB\\BSON\\toJSON' => + 'mongodb\\bson\\tojson' => array ( 0 => 'string', 'bson' => 'string', ), - 'MongoDB\\BSON\\toPHP' => + 'mongodb\\bson\\tophp' => array ( 0 => 'array|object', 'bson' => 'string', 'typemap=' => 'array|null', ), - 'MongoDB\\BSON\\toRelaxedExtendedJSON' => + 'mongodb\\bson\\torelaxedextendedjson' => array ( 0 => 'string', 'bson' => 'string', ), - 'MongoDB\\Driver\\Monitoring\\addSubscriber' => + 'mongodb\\driver\\monitoring\\addsubscriber' => array ( 0 => 'void', 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', ), - 'MongoDB\\Driver\\Monitoring\\removeSubscriber' => + 'mongodb\\driver\\monitoring\\removesubscriber' => array ( 0 => 'void', 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', ), - 'MongoDB\\BSON\\Binary::__construct' => + 'mongodb\\bson\\binary::__construct' => array ( 0 => 'void', 'data' => 'string', 'type=' => 'int', ), - 'MongoDB\\BSON\\Binary::getData' => + 'mongodb\\bson\\binary::getdata' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Binary::getType' => + 'mongodb\\bson\\binary::gettype' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\Binary::__toString' => + 'mongodb\\bson\\binary::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Binary::serialize' => + 'mongodb\\bson\\binary::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Binary::unserialize' => + 'mongodb\\bson\\binary::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Binary::jsonSerialize' => + 'mongodb\\bson\\binary::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\BinaryInterface::getData' => + 'mongodb\\bson\\binaryinterface::getdata' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\BinaryInterface::getType' => + 'mongodb\\bson\\binaryinterface::gettype' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\BinaryInterface::__toString' => + 'mongodb\\bson\\binaryinterface::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\DBPointer::__toString' => + 'mongodb\\bson\\dbpointer::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\DBPointer::serialize' => + 'mongodb\\bson\\dbpointer::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\DBPointer::unserialize' => + 'mongodb\\bson\\dbpointer::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\DBPointer::jsonSerialize' => + 'mongodb\\bson\\dbpointer::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\Decimal128::__construct' => + 'mongodb\\bson\\decimal128::__construct' => array ( 0 => 'void', 'value' => 'string', ), - 'MongoDB\\BSON\\Decimal128::__toString' => + 'mongodb\\bson\\decimal128::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Decimal128::serialize' => + 'mongodb\\bson\\decimal128::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Decimal128::unserialize' => + 'mongodb\\bson\\decimal128::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Decimal128::jsonSerialize' => + 'mongodb\\bson\\decimal128::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\Decimal128Interface::__toString' => + 'mongodb\\bson\\decimal128interface::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Document::fromBSON' => + 'mongodb\\bson\\document::frombson' => array ( 0 => 'MongoDB\\BSON\\Document', 'bson' => 'string', ), - 'MongoDB\\BSON\\Document::fromJSON' => + 'mongodb\\bson\\document::fromjson' => array ( 0 => 'MongoDB\\BSON\\Document', 'json' => 'string', ), - 'MongoDB\\BSON\\Document::fromPHP' => + 'mongodb\\bson\\document::fromphp' => array ( 0 => 'MongoDB\\BSON\\Document', 'value' => 'array|object', ), - 'MongoDB\\BSON\\Document::get' => + 'mongodb\\bson\\document::get' => array ( 0 => 'mixed', 'key' => 'string', ), - 'MongoDB\\BSON\\Document::getIterator' => + 'mongodb\\bson\\document::getiterator' => array ( 0 => 'MongoDB\\BSON\\Iterator', ), - 'MongoDB\\BSON\\Document::has' => + 'mongodb\\bson\\document::has' => array ( 0 => 'bool', 'key' => 'string', ), - 'MongoDB\\BSON\\Document::toPHP' => + 'mongodb\\bson\\document::tophp' => array ( 0 => 'array|object', 'typeMap=' => 'array|null', ), - 'MongoDB\\BSON\\Document::toCanonicalExtendedJSON' => + 'mongodb\\bson\\document::tocanonicalextendedjson' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Document::toRelaxedExtendedJSON' => + 'mongodb\\bson\\document::torelaxedextendedjson' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Document::offsetExists' => + 'mongodb\\bson\\document::offsetexists' => array ( 0 => 'bool', 'offset' => 'mixed', ), - 'MongoDB\\BSON\\Document::offsetGet' => + 'mongodb\\bson\\document::offsetget' => array ( 0 => 'mixed', 'offset' => 'mixed', ), - 'MongoDB\\BSON\\Document::offsetSet' => + 'mongodb\\bson\\document::offsetset' => array ( 0 => 'void', 'offset' => 'mixed', 'value' => 'mixed', ), - 'MongoDB\\BSON\\Document::offsetUnset' => + 'mongodb\\bson\\document::offsetunset' => array ( 0 => 'void', 'offset' => 'mixed', ), - 'MongoDB\\BSON\\Document::__toString' => + 'mongodb\\bson\\document::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Document::serialize' => + 'mongodb\\bson\\document::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Document::unserialize' => + 'mongodb\\bson\\document::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Int64::__construct' => + 'mongodb\\bson\\int64::__construct' => array ( 0 => 'void', 'value' => 'int|string', ), - 'MongoDB\\BSON\\Int64::__toString' => + 'mongodb\\bson\\int64::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Int64::serialize' => + 'mongodb\\bson\\int64::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Int64::unserialize' => + 'mongodb\\bson\\int64::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Int64::jsonSerialize' => + 'mongodb\\bson\\int64::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\Iterator::current' => + 'mongodb\\bson\\iterator::current' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\Iterator::key' => + 'mongodb\\bson\\iterator::key' => array ( 0 => 'int|string', ), - 'MongoDB\\BSON\\Iterator::next' => + 'mongodb\\bson\\iterator::next' => array ( 0 => 'void', ), - 'MongoDB\\BSON\\Iterator::rewind' => + 'mongodb\\bson\\iterator::rewind' => array ( 0 => 'void', ), - 'MongoDB\\BSON\\Iterator::valid' => + 'mongodb\\bson\\iterator::valid' => array ( 0 => 'bool', ), - 'MongoDB\\BSON\\Javascript::__construct' => + 'mongodb\\bson\\javascript::__construct' => array ( 0 => 'void', 'code' => 'string', 'scope=' => 'array|null|object', ), - 'MongoDB\\BSON\\Javascript::getCode' => + 'mongodb\\bson\\javascript::getcode' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Javascript::getScope' => + 'mongodb\\bson\\javascript::getscope' => array ( 0 => 'null|object', ), - 'MongoDB\\BSON\\Javascript::__toString' => + 'mongodb\\bson\\javascript::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Javascript::serialize' => + 'mongodb\\bson\\javascript::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Javascript::unserialize' => + 'mongodb\\bson\\javascript::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Javascript::jsonSerialize' => + 'mongodb\\bson\\javascript::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\JavascriptInterface::getCode' => + 'mongodb\\bson\\javascriptinterface::getcode' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\JavascriptInterface::getScope' => + 'mongodb\\bson\\javascriptinterface::getscope' => array ( 0 => 'null|object', ), - 'MongoDB\\BSON\\JavascriptInterface::__toString' => + 'mongodb\\bson\\javascriptinterface::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\MaxKey::serialize' => + 'mongodb\\bson\\maxkey::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\MaxKey::unserialize' => + 'mongodb\\bson\\maxkey::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\MaxKey::jsonSerialize' => + 'mongodb\\bson\\maxkey::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\MinKey::serialize' => + 'mongodb\\bson\\minkey::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\MinKey::unserialize' => + 'mongodb\\bson\\minkey::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\MinKey::jsonSerialize' => + 'mongodb\\bson\\minkey::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\ObjectId::__construct' => + 'mongodb\\bson\\objectid::__construct' => array ( 0 => 'void', 'id=' => 'null|string', ), - 'MongoDB\\BSON\\ObjectId::getTimestamp' => + 'mongodb\\bson\\objectid::gettimestamp' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\ObjectId::__toString' => + 'mongodb\\bson\\objectid::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\ObjectId::serialize' => + 'mongodb\\bson\\objectid::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\ObjectId::unserialize' => + 'mongodb\\bson\\objectid::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\ObjectId::jsonSerialize' => + 'mongodb\\bson\\objectid::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\ObjectIdInterface::getTimestamp' => + 'mongodb\\bson\\objectidinterface::gettimestamp' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\ObjectIdInterface::__toString' => + 'mongodb\\bson\\objectidinterface::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\PackedArray::fromPHP' => + 'mongodb\\bson\\packedarray::fromphp' => array ( 0 => 'MongoDB\\BSON\\PackedArray', 'value' => 'array', ), - 'MongoDB\\BSON\\PackedArray::get' => + 'mongodb\\bson\\packedarray::get' => array ( 0 => 'mixed', 'index' => 'int', ), - 'MongoDB\\BSON\\PackedArray::getIterator' => + 'mongodb\\bson\\packedarray::getiterator' => array ( 0 => 'MongoDB\\BSON\\Iterator', ), - 'MongoDB\\BSON\\PackedArray::has' => + 'mongodb\\bson\\packedarray::has' => array ( 0 => 'bool', 'index' => 'int', ), - 'MongoDB\\BSON\\PackedArray::toPHP' => + 'mongodb\\bson\\packedarray::tophp' => array ( 0 => 'array|object', 'typeMap=' => 'array|null', ), - 'MongoDB\\BSON\\PackedArray::offsetExists' => + 'mongodb\\bson\\packedarray::offsetexists' => array ( 0 => 'bool', 'offset' => 'mixed', ), - 'MongoDB\\BSON\\PackedArray::offsetGet' => + 'mongodb\\bson\\packedarray::offsetget' => array ( 0 => 'mixed', 'offset' => 'mixed', ), - 'MongoDB\\BSON\\PackedArray::offsetSet' => + 'mongodb\\bson\\packedarray::offsetset' => array ( 0 => 'void', 'offset' => 'mixed', 'value' => 'mixed', ), - 'MongoDB\\BSON\\PackedArray::offsetUnset' => + 'mongodb\\bson\\packedarray::offsetunset' => array ( 0 => 'void', 'offset' => 'mixed', ), - 'MongoDB\\BSON\\PackedArray::__toString' => + 'mongodb\\bson\\packedarray::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\PackedArray::serialize' => + 'mongodb\\bson\\packedarray::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\PackedArray::unserialize' => + 'mongodb\\bson\\packedarray::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Persistable::bsonSerialize' => + 'mongodb\\bson\\persistable::bsonserialize' => array ( 0 => 'MongoDB\\BSON\\Document|array|stdClass', ), - 'MongoDB\\BSON\\Regex::__construct' => + 'mongodb\\bson\\regex::__construct' => array ( 0 => 'void', 'pattern' => 'string', 'flags=' => 'string', ), - 'MongoDB\\BSON\\Regex::getPattern' => + 'mongodb\\bson\\regex::getpattern' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Regex::getFlags' => + 'mongodb\\bson\\regex::getflags' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Regex::__toString' => + 'mongodb\\bson\\regex::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Regex::serialize' => + 'mongodb\\bson\\regex::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Regex::unserialize' => + 'mongodb\\bson\\regex::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Regex::jsonSerialize' => + 'mongodb\\bson\\regex::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\RegexInterface::getPattern' => + 'mongodb\\bson\\regexinterface::getpattern' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\RegexInterface::getFlags' => + 'mongodb\\bson\\regexinterface::getflags' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\RegexInterface::__toString' => + 'mongodb\\bson\\regexinterface::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Serializable::bsonSerialize' => + 'mongodb\\bson\\serializable::bsonserialize' => array ( 0 => 'MongoDB\\BSON\\Document|MongoDB\\BSON\\PackedArray|array|stdClass', ), - 'MongoDB\\BSON\\Symbol::__toString' => + 'mongodb\\bson\\symbol::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Symbol::serialize' => + 'mongodb\\bson\\symbol::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Symbol::unserialize' => + 'mongodb\\bson\\symbol::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Symbol::jsonSerialize' => + 'mongodb\\bson\\symbol::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\Timestamp::__construct' => + 'mongodb\\bson\\timestamp::__construct' => array ( 0 => 'void', 'increment' => 'int|string', 'timestamp' => 'int|string', ), - 'MongoDB\\BSON\\Timestamp::getTimestamp' => + 'mongodb\\bson\\timestamp::gettimestamp' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\Timestamp::getIncrement' => + 'mongodb\\bson\\timestamp::getincrement' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\Timestamp::__toString' => + 'mongodb\\bson\\timestamp::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Timestamp::serialize' => + 'mongodb\\bson\\timestamp::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Timestamp::unserialize' => + 'mongodb\\bson\\timestamp::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Timestamp::jsonSerialize' => + 'mongodb\\bson\\timestamp::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\TimestampInterface::getTimestamp' => + 'mongodb\\bson\\timestampinterface::gettimestamp' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\TimestampInterface::getIncrement' => + 'mongodb\\bson\\timestampinterface::getincrement' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\TimestampInterface::__toString' => + 'mongodb\\bson\\timestampinterface::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\UTCDateTime::__construct' => + 'mongodb\\bson\\utcdatetime::__construct' => array ( 0 => 'void', 'milliseconds=' => 'DateTimeInterface|float|int|null|string', ), - 'MongoDB\\BSON\\UTCDateTime::toDateTime' => + 'mongodb\\bson\\utcdatetime::todatetime' => array ( 0 => 'DateTime', ), - 'MongoDB\\BSON\\UTCDateTime::__toString' => + 'mongodb\\bson\\utcdatetime::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\UTCDateTime::serialize' => + 'mongodb\\bson\\utcdatetime::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\UTCDateTime::unserialize' => + 'mongodb\\bson\\utcdatetime::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\UTCDateTime::jsonSerialize' => + 'mongodb\\bson\\utcdatetime::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\UTCDateTimeInterface::toDateTime' => + 'mongodb\\bson\\utcdatetimeinterface::todatetime' => array ( 0 => 'DateTime', ), - 'MongoDB\\BSON\\UTCDateTimeInterface::__toString' => + 'mongodb\\bson\\utcdatetimeinterface::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Undefined::__toString' => + 'mongodb\\bson\\undefined::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Undefined::serialize' => + 'mongodb\\bson\\undefined::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Undefined::unserialize' => + 'mongodb\\bson\\undefined::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Undefined::jsonSerialize' => + 'mongodb\\bson\\undefined::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\Unserializable::bsonUnserialize' => + 'mongodb\\bson\\unserializable::bsonunserialize' => array ( 0 => 'void', 'data' => 'array', ), - 'MongoDB\\Driver\\BulkWrite::__construct' => + 'mongodb\\driver\\bulkwrite::__construct' => array ( 0 => 'void', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\BulkWrite::count' => + 'mongodb\\driver\\bulkwrite::count' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\BulkWrite::delete' => + 'mongodb\\driver\\bulkwrite::delete' => array ( 0 => 'void', 'filter' => 'array|object', 'deleteOptions=' => 'array|null', ), - 'MongoDB\\Driver\\BulkWrite::insert' => + 'mongodb\\driver\\bulkwrite::insert' => array ( 0 => 'mixed', 'document' => 'array|object', ), - 'MongoDB\\Driver\\BulkWrite::update' => + 'mongodb\\driver\\bulkwrite::update' => array ( 0 => 'void', 'filter' => 'array|object', 'newObj' => 'array|object', 'updateOptions=' => 'array|null', ), - 'MongoDB\\Driver\\ClientEncryption::__construct' => + 'mongodb\\driver\\clientencryption::__construct' => array ( 0 => 'void', 'options' => 'array', ), - 'MongoDB\\Driver\\ClientEncryption::addKeyAltName' => + 'mongodb\\driver\\clientencryption::addkeyaltname' => array ( 0 => 'null|object', 'keyId' => 'MongoDB\\BSON\\Binary', 'keyAltName' => 'string', ), - 'MongoDB\\Driver\\ClientEncryption::createDataKey' => + 'mongodb\\driver\\clientencryption::createdatakey' => array ( 0 => 'MongoDB\\BSON\\Binary', 'kmsProvider' => 'string', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\ClientEncryption::decrypt' => + 'mongodb\\driver\\clientencryption::decrypt' => array ( 0 => 'mixed', 'value' => 'MongoDB\\BSON\\Binary', ), - 'MongoDB\\Driver\\ClientEncryption::deleteKey' => + 'mongodb\\driver\\clientencryption::deletekey' => array ( 0 => 'object', 'keyId' => 'MongoDB\\BSON\\Binary', ), - 'MongoDB\\Driver\\ClientEncryption::encrypt' => + 'mongodb\\driver\\clientencryption::encrypt' => array ( 0 => 'MongoDB\\BSON\\Binary', 'value' => 'mixed', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\ClientEncryption::encryptExpression' => + 'mongodb\\driver\\clientencryption::encryptexpression' => array ( 0 => 'object', 'expr' => 'array|object', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\ClientEncryption::getKey' => + 'mongodb\\driver\\clientencryption::getkey' => array ( 0 => 'null|object', 'keyId' => 'MongoDB\\BSON\\Binary', ), - 'MongoDB\\Driver\\ClientEncryption::getKeyByAltName' => + 'mongodb\\driver\\clientencryption::getkeybyaltname' => array ( 0 => 'null|object', 'keyAltName' => 'string', ), - 'MongoDB\\Driver\\ClientEncryption::getKeys' => + 'mongodb\\driver\\clientencryption::getkeys' => array ( 0 => 'MongoDB\\Driver\\Cursor', ), - 'MongoDB\\Driver\\ClientEncryption::removeKeyAltName' => + 'mongodb\\driver\\clientencryption::removekeyaltname' => array ( 0 => 'null|object', 'keyId' => 'MongoDB\\BSON\\Binary', 'keyAltName' => 'string', ), - 'MongoDB\\Driver\\ClientEncryption::rewrapManyDataKey' => + 'mongodb\\driver\\clientencryption::rewrapmanydatakey' => array ( 0 => 'object', 'filter' => 'array|object', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Command::__construct' => + 'mongodb\\driver\\command::__construct' => array ( 0 => 'void', 'document' => 'array|object', 'commandOptions=' => 'array|null', ), - 'MongoDB\\Driver\\Cursor::current' => + 'mongodb\\driver\\cursor::current' => array ( 0 => 'array|null|object', ), - 'MongoDB\\Driver\\Cursor::getId' => + 'mongodb\\driver\\cursor::getid' => array ( 0 => 'MongoDB\\Driver\\CursorId', ), - 'MongoDB\\Driver\\Cursor::getServer' => + 'mongodb\\driver\\cursor::getserver' => array ( 0 => 'MongoDB\\Driver\\Server', ), - 'MongoDB\\Driver\\Cursor::isDead' => + 'mongodb\\driver\\cursor::isdead' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Cursor::key' => + 'mongodb\\driver\\cursor::key' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\Cursor::next' => + 'mongodb\\driver\\cursor::next' => array ( 0 => 'void', ), - 'MongoDB\\Driver\\Cursor::rewind' => + 'mongodb\\driver\\cursor::rewind' => array ( 0 => 'void', ), - 'MongoDB\\Driver\\Cursor::setTypeMap' => + 'mongodb\\driver\\cursor::settypemap' => array ( 0 => 'void', 'typemap' => 'array', ), - 'MongoDB\\Driver\\Cursor::toArray' => + 'mongodb\\driver\\cursor::toarray' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\Cursor::valid' => + 'mongodb\\driver\\cursor::valid' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\CursorId::__toString' => + 'mongodb\\driver\\cursorid::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\CursorId::serialize' => + 'mongodb\\driver\\cursorid::serialize' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\CursorId::unserialize' => + 'mongodb\\driver\\cursorid::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\Driver\\CursorInterface::getId' => + 'mongodb\\driver\\cursorinterface::getid' => array ( 0 => 'MongoDB\\Driver\\CursorId', ), - 'MongoDB\\Driver\\CursorInterface::getServer' => + 'mongodb\\driver\\cursorinterface::getserver' => array ( 0 => 'MongoDB\\Driver\\Server', ), - 'MongoDB\\Driver\\CursorInterface::isDead' => + 'mongodb\\driver\\cursorinterface::isdead' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\CursorInterface::setTypeMap' => + 'mongodb\\driver\\cursorinterface::settypemap' => array ( 0 => 'void', 'typemap' => 'array', ), - 'MongoDB\\Driver\\CursorInterface::toArray' => + 'mongodb\\driver\\cursorinterface::toarray' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\Exception\\AuthenticationException::__toString' => + 'mongodb\\driver\\exception\\authenticationexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\BulkWriteException::__toString' => + 'mongodb\\driver\\exception\\bulkwriteexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\CommandException::getResultDocument' => + 'mongodb\\driver\\exception\\commandexception::getresultdocument' => array ( 0 => 'object', ), - 'MongoDB\\Driver\\Exception\\CommandException::__toString' => + 'mongodb\\driver\\exception\\commandexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\ConnectionException::__toString' => + 'mongodb\\driver\\exception\\connectionexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\ConnectionTimeoutException::__toString' => + 'mongodb\\driver\\exception\\connectiontimeoutexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\EncryptionException::__toString' => + 'mongodb\\driver\\exception\\encryptionexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\Exception::__toString' => + 'mongodb\\driver\\exception\\exception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\ExecutionTimeoutException::__toString' => + 'mongodb\\driver\\exception\\executiontimeoutexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\InvalidArgumentException::__toString' => + 'mongodb\\driver\\exception\\invalidargumentexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\LogicException::__toString' => + 'mongodb\\driver\\exception\\logicexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\RuntimeException::hasErrorLabel' => + 'mongodb\\driver\\exception\\runtimeexception::haserrorlabel' => array ( 0 => 'bool', 'errorLabel' => 'string', ), - 'MongoDB\\Driver\\Exception\\RuntimeException::__toString' => + 'mongodb\\driver\\exception\\runtimeexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\SSLConnectionException::__toString' => + 'mongodb\\driver\\exception\\sslconnectionexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\ServerException::__toString' => + 'mongodb\\driver\\exception\\serverexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\UnexpectedValueException::__toString' => + 'mongodb\\driver\\exception\\unexpectedvalueexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\WriteException::getWriteResult' => + 'mongodb\\driver\\exception\\writeexception::getwriteresult' => array ( 0 => 'MongoDB\\Driver\\WriteResult', ), - 'MongoDB\\Driver\\Exception\\WriteException::__toString' => + 'mongodb\\driver\\exception\\writeexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Manager::__construct' => + 'mongodb\\driver\\manager::__construct' => array ( 0 => 'void', 'uri=' => 'null|string', 'uriOptions=' => 'array|null', 'driverOptions=' => 'array|null', ), - 'MongoDB\\Driver\\Manager::addSubscriber' => + 'mongodb\\driver\\manager::addsubscriber' => array ( 0 => 'void', 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', ), - 'MongoDB\\Driver\\Manager::createClientEncryption' => + 'mongodb\\driver\\manager::createclientencryption' => array ( 0 => 'MongoDB\\Driver\\ClientEncryption', 'options' => 'array', ), - 'MongoDB\\Driver\\Manager::executeBulkWrite' => + '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' => + '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' => + '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' => + 'mongodb\\driver\\manager::executereadcommand' => array ( 0 => 'MongoDB\\Driver\\Cursor', 'db' => 'string', 'command' => 'MongoDB\\Driver\\Command', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Manager::executeReadWriteCommand' => + 'mongodb\\driver\\manager::executereadwritecommand' => array ( 0 => 'MongoDB\\Driver\\Cursor', 'db' => 'string', 'command' => 'MongoDB\\Driver\\Command', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Manager::executeWriteCommand' => + 'mongodb\\driver\\manager::executewritecommand' => array ( 0 => 'MongoDB\\Driver\\Cursor', 'db' => 'string', 'command' => 'MongoDB\\Driver\\Command', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Manager::getEncryptedFieldsMap' => + 'mongodb\\driver\\manager::getencryptedfieldsmap' => array ( 0 => 'array|null|object', ), - 'MongoDB\\Driver\\Manager::getReadConcern' => + 'mongodb\\driver\\manager::getreadconcern' => array ( 0 => 'MongoDB\\Driver\\ReadConcern', ), - 'MongoDB\\Driver\\Manager::getReadPreference' => + 'mongodb\\driver\\manager::getreadpreference' => array ( 0 => 'MongoDB\\Driver\\ReadPreference', ), - 'MongoDB\\Driver\\Manager::getServers' => + 'mongodb\\driver\\manager::getservers' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\Manager::getWriteConcern' => + 'mongodb\\driver\\manager::getwriteconcern' => array ( 0 => 'MongoDB\\Driver\\WriteConcern', ), - 'MongoDB\\Driver\\Manager::removeSubscriber' => + 'mongodb\\driver\\manager::removesubscriber' => array ( 0 => 'void', 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', ), - 'MongoDB\\Driver\\Manager::selectServer' => + 'mongodb\\driver\\manager::selectserver' => array ( 0 => 'MongoDB\\Driver\\Server', 'readPreference=' => 'MongoDB\\Driver\\ReadPreference|null', ), - 'MongoDB\\Driver\\Manager::startSession' => + 'mongodb\\driver\\manager::startsession' => array ( 0 => 'MongoDB\\Driver\\Session', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getCommandName' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getcommandname' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getDurationMicros' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getdurationmicros' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getError' => + 'mongodb\\driver\\monitoring\\commandfailedevent::geterror' => array ( 0 => 'Exception', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getOperationId' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getoperationid' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getReply' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getreply' => array ( 0 => 'object', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getRequestId' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getrequestid' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getServer' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getserver' => array ( 0 => 'MongoDB\\Driver\\Server', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getServiceId' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getserviceid' => array ( 0 => 'MongoDB\\BSON\\ObjectId|null', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getServerConnectionId' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getserverconnectionid' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getCommand' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getcommand' => array ( 0 => 'object', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getCommandName' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getcommandname' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getDatabaseName' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getdatabasename' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getOperationId' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getoperationid' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getRequestId' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getrequestid' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getServer' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getserver' => array ( 0 => 'MongoDB\\Driver\\Server', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getServiceId' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getserviceid' => array ( 0 => 'MongoDB\\BSON\\ObjectId|null', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getServerConnectionId' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getserverconnectionid' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\Monitoring\\CommandSubscriber::commandStarted' => + 'mongodb\\driver\\monitoring\\commandsubscriber::commandstarted' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent', ), - 'MongoDB\\Driver\\Monitoring\\CommandSubscriber::commandSucceeded' => + 'mongodb\\driver\\monitoring\\commandsubscriber::commandsucceeded' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent', ), - 'MongoDB\\Driver\\Monitoring\\CommandSubscriber::commandFailed' => + 'mongodb\\driver\\monitoring\\commandsubscriber::commandfailed' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getCommandName' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getcommandname' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getDurationMicros' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getdurationmicros' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getOperationId' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getoperationid' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getReply' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getreply' => array ( 0 => 'object', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getRequestId' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getrequestid' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getServer' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getserver' => array ( 0 => 'MongoDB\\Driver\\Server', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getServiceId' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getserviceid' => array ( 0 => 'MongoDB\\BSON\\ObjectId|null', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getServerConnectionId' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getserverconnectionid' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\Monitoring\\LogSubscriber::log' => + 'mongodb\\driver\\monitoring\\logsubscriber::log' => array ( 0 => 'void', 'level' => 'int', 'domain' => 'string', 'message' => 'string', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverChanged' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::serverchanged' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverClosed' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::serverclosed' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverOpening' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::serveropening' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverHeartbeatFailed' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::serverheartbeatfailed' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverHeartbeatStarted' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::serverheartbeatstarted' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverHeartbeatSucceeded' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::serverheartbeatsucceeded' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::topologyChanged' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::topologychanged' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::topologyClosed' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::topologyclosed' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\TopologyClosedEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::topologyOpening' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::topologyopening' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\TopologyOpeningEvent', ), - 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getPort' => + 'mongodb\\driver\\monitoring\\serverchangedevent::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getHost' => + 'mongodb\\driver\\monitoring\\serverchangedevent::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getNewDescription' => + 'mongodb\\driver\\monitoring\\serverchangedevent::getnewdescription' => array ( 0 => 'MongoDB\\Driver\\ServerDescription', ), - 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getPreviousDescription' => + 'mongodb\\driver\\monitoring\\serverchangedevent::getpreviousdescription' => array ( 0 => 'MongoDB\\Driver\\ServerDescription', ), - 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getTopologyId' => + 'mongodb\\driver\\monitoring\\serverchangedevent::gettopologyid' => array ( 0 => 'MongoDB\\BSON\\ObjectId', ), - 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent::getPort' => + 'mongodb\\driver\\monitoring\\serverclosedevent::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent::getHost' => + 'mongodb\\driver\\monitoring\\serverclosedevent::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent::getTopologyId' => + 'mongodb\\driver\\monitoring\\serverclosedevent::gettopologyid' => array ( 0 => 'MongoDB\\BSON\\ObjectId', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getDurationMicros' => + 'mongodb\\driver\\monitoring\\serverheartbeatfailedevent::getdurationmicros' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getError' => + 'mongodb\\driver\\monitoring\\serverheartbeatfailedevent::geterror' => array ( 0 => 'Exception', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getPort' => + 'mongodb\\driver\\monitoring\\serverheartbeatfailedevent::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getHost' => + 'mongodb\\driver\\monitoring\\serverheartbeatfailedevent::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::isAwaited' => + 'mongodb\\driver\\monitoring\\serverheartbeatfailedevent::isawaited' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent::getPort' => + 'mongodb\\driver\\monitoring\\serverheartbeatstartedevent::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent::getHost' => + 'mongodb\\driver\\monitoring\\serverheartbeatstartedevent::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent::isAwaited' => + 'mongodb\\driver\\monitoring\\serverheartbeatstartedevent::isawaited' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getDurationMicros' => + 'mongodb\\driver\\monitoring\\serverheartbeatsucceededevent::getdurationmicros' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getReply' => + 'mongodb\\driver\\monitoring\\serverheartbeatsucceededevent::getreply' => array ( 0 => 'object', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getPort' => + 'mongodb\\driver\\monitoring\\serverheartbeatsucceededevent::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getHost' => + 'mongodb\\driver\\monitoring\\serverheartbeatsucceededevent::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::isAwaited' => + 'mongodb\\driver\\monitoring\\serverheartbeatsucceededevent::isawaited' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent::getPort' => + 'mongodb\\driver\\monitoring\\serveropeningevent::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent::getHost' => + 'mongodb\\driver\\monitoring\\serveropeningevent::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent::getTopologyId' => + 'mongodb\\driver\\monitoring\\serveropeningevent::gettopologyid' => array ( 0 => 'MongoDB\\BSON\\ObjectId', ), - 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent::getNewDescription' => + 'mongodb\\driver\\monitoring\\topologychangedevent::getnewdescription' => array ( 0 => 'MongoDB\\Driver\\TopologyDescription', ), - 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent::getPreviousDescription' => + 'mongodb\\driver\\monitoring\\topologychangedevent::getpreviousdescription' => array ( 0 => 'MongoDB\\Driver\\TopologyDescription', ), - 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent::getTopologyId' => + 'mongodb\\driver\\monitoring\\topologychangedevent::gettopologyid' => array ( 0 => 'MongoDB\\BSON\\ObjectId', ), - 'MongoDB\\Driver\\Monitoring\\TopologyClosedEvent::getTopologyId' => + 'mongodb\\driver\\monitoring\\topologyclosedevent::gettopologyid' => array ( 0 => 'MongoDB\\BSON\\ObjectId', ), - 'MongoDB\\Driver\\Monitoring\\TopologyOpeningEvent::getTopologyId' => + 'mongodb\\driver\\monitoring\\topologyopeningevent::gettopologyid' => array ( 0 => 'MongoDB\\BSON\\ObjectId', ), - 'MongoDB\\Driver\\Query::__construct' => + 'mongodb\\driver\\query::__construct' => array ( 0 => 'void', 'filter' => 'array|object', 'queryOptions=' => 'array|null', ), - 'MongoDB\\Driver\\ReadConcern::__construct' => + 'mongodb\\driver\\readconcern::__construct' => array ( 0 => 'void', 'level=' => 'null|string', ), - 'MongoDB\\Driver\\ReadConcern::getLevel' => + 'mongodb\\driver\\readconcern::getlevel' => array ( 0 => 'null|string', ), - 'MongoDB\\Driver\\ReadConcern::isDefault' => + 'mongodb\\driver\\readconcern::isdefault' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\ReadConcern::bsonSerialize' => + 'mongodb\\driver\\readconcern::bsonserialize' => array ( 0 => 'stdClass', ), - 'MongoDB\\Driver\\ReadConcern::serialize' => + 'mongodb\\driver\\readconcern::serialize' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\ReadConcern::unserialize' => + 'mongodb\\driver\\readconcern::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\Driver\\ReadPreference::__construct' => + 'mongodb\\driver\\readpreference::__construct' => array ( 0 => 'void', 'mode' => 'int|string', 'tagSets=' => 'array|null', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\ReadPreference::getHedge' => + 'mongodb\\driver\\readpreference::gethedge' => array ( 0 => 'null|object', ), - 'MongoDB\\Driver\\ReadPreference::getMaxStalenessSeconds' => + 'mongodb\\driver\\readpreference::getmaxstalenessseconds' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\ReadPreference::getMode' => + 'mongodb\\driver\\readpreference::getmode' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\ReadPreference::getModeString' => + 'mongodb\\driver\\readpreference::getmodestring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\ReadPreference::getTagSets' => + 'mongodb\\driver\\readpreference::gettagsets' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\ReadPreference::bsonSerialize' => + 'mongodb\\driver\\readpreference::bsonserialize' => array ( 0 => 'stdClass', ), - 'MongoDB\\Driver\\ReadPreference::serialize' => + 'mongodb\\driver\\readpreference::serialize' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\ReadPreference::unserialize' => + 'mongodb\\driver\\readpreference::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\Driver\\Server::executeBulkWrite' => + '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' => + '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' => + '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' => + 'mongodb\\driver\\server::executereadcommand' => array ( 0 => 'MongoDB\\Driver\\Cursor', 'db' => 'string', 'command' => 'MongoDB\\Driver\\Command', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Server::executeReadWriteCommand' => + 'mongodb\\driver\\server::executereadwritecommand' => array ( 0 => 'MongoDB\\Driver\\Cursor', 'db' => 'string', 'command' => 'MongoDB\\Driver\\Command', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Server::executeWriteCommand' => + 'mongodb\\driver\\server::executewritecommand' => array ( 0 => 'MongoDB\\Driver\\Cursor', 'db' => 'string', 'command' => 'MongoDB\\Driver\\Command', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Server::getHost' => + 'mongodb\\driver\\server::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Server::getInfo' => + 'mongodb\\driver\\server::getinfo' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\Server::getLatency' => + 'mongodb\\driver\\server::getlatency' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\Server::getPort' => + 'mongodb\\driver\\server::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Server::getServerDescription' => + 'mongodb\\driver\\server::getserverdescription' => array ( 0 => 'MongoDB\\Driver\\ServerDescription', ), - 'MongoDB\\Driver\\Server::getTags' => + 'mongodb\\driver\\server::gettags' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\Server::getType' => + 'mongodb\\driver\\server::gettype' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Server::isArbiter' => + 'mongodb\\driver\\server::isarbiter' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Server::isHidden' => + 'mongodb\\driver\\server::ishidden' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Server::isPassive' => + 'mongodb\\driver\\server::ispassive' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Server::isPrimary' => + 'mongodb\\driver\\server::isprimary' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Server::isSecondary' => + 'mongodb\\driver\\server::issecondary' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\ServerApi::__construct' => + 'mongodb\\driver\\serverapi::__construct' => array ( 0 => 'void', 'version' => 'string', 'strict=' => 'bool|null', 'deprecationErrors=' => 'bool|null', ), - 'MongoDB\\Driver\\ServerApi::bsonSerialize' => + 'mongodb\\driver\\serverapi::bsonserialize' => array ( 0 => 'stdClass', ), - 'MongoDB\\Driver\\ServerApi::serialize' => + 'mongodb\\driver\\serverapi::serialize' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\ServerApi::unserialize' => + 'mongodb\\driver\\serverapi::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\Driver\\ServerDescription::getHelloResponse' => + 'mongodb\\driver\\serverdescription::gethelloresponse' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\ServerDescription::getHost' => + 'mongodb\\driver\\serverdescription::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\ServerDescription::getLastUpdateTime' => + 'mongodb\\driver\\serverdescription::getlastupdatetime' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\ServerDescription::getPort' => + 'mongodb\\driver\\serverdescription::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\ServerDescription::getRoundTripTime' => + 'mongodb\\driver\\serverdescription::getroundtriptime' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\ServerDescription::getType' => + 'mongodb\\driver\\serverdescription::gettype' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Session::abortTransaction' => + 'mongodb\\driver\\session::aborttransaction' => array ( 0 => 'void', ), - 'MongoDB\\Driver\\Session::advanceClusterTime' => + 'mongodb\\driver\\session::advanceclustertime' => array ( 0 => 'void', 'clusterTime' => 'array|object', ), - 'MongoDB\\Driver\\Session::advanceOperationTime' => + 'mongodb\\driver\\session::advanceoperationtime' => array ( 0 => 'void', 'operationTime' => 'MongoDB\\BSON\\TimestampInterface', ), - 'MongoDB\\Driver\\Session::commitTransaction' => + 'mongodb\\driver\\session::committransaction' => array ( 0 => 'void', ), - 'MongoDB\\Driver\\Session::endSession' => + 'mongodb\\driver\\session::endsession' => array ( 0 => 'void', ), - 'MongoDB\\Driver\\Session::getClusterTime' => + 'mongodb\\driver\\session::getclustertime' => array ( 0 => 'null|object', ), - 'MongoDB\\Driver\\Session::getLogicalSessionId' => + 'mongodb\\driver\\session::getlogicalsessionid' => array ( 0 => 'object', ), - 'MongoDB\\Driver\\Session::getOperationTime' => + 'mongodb\\driver\\session::getoperationtime' => array ( 0 => 'MongoDB\\BSON\\Timestamp|null', ), - 'MongoDB\\Driver\\Session::getServer' => + 'mongodb\\driver\\session::getserver' => array ( 0 => 'MongoDB\\Driver\\Server|null', ), - 'MongoDB\\Driver\\Session::getTransactionOptions' => + 'mongodb\\driver\\session::gettransactionoptions' => array ( 0 => 'array|null', ), - 'MongoDB\\Driver\\Session::getTransactionState' => + 'mongodb\\driver\\session::gettransactionstate' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Session::isDirty' => + 'mongodb\\driver\\session::isdirty' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Session::isInTransaction' => + 'mongodb\\driver\\session::isintransaction' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Session::startTransaction' => + 'mongodb\\driver\\session::starttransaction' => array ( 0 => 'void', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\TopologyDescription::getServers' => + 'mongodb\\driver\\topologydescription::getservers' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\TopologyDescription::getType' => + 'mongodb\\driver\\topologydescription::gettype' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\TopologyDescription::hasReadableServer' => + 'mongodb\\driver\\topologydescription::hasreadableserver' => array ( 0 => 'bool', 'readPreference=' => 'MongoDB\\Driver\\ReadPreference|null', ), - 'MongoDB\\Driver\\TopologyDescription::hasWritableServer' => + 'mongodb\\driver\\topologydescription::haswritableserver' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\WriteConcern::__construct' => + 'mongodb\\driver\\writeconcern::__construct' => array ( 0 => 'void', 'w' => 'int|string', 'wtimeout=' => 'int|null', 'journal=' => 'bool|null', ), - 'MongoDB\\Driver\\WriteConcern::getJournal' => + 'mongodb\\driver\\writeconcern::getjournal' => array ( 0 => 'bool|null', ), - 'MongoDB\\Driver\\WriteConcern::getW' => + 'mongodb\\driver\\writeconcern::getw' => array ( 0 => 'int|null|string', ), - 'MongoDB\\Driver\\WriteConcern::getWtimeout' => + 'mongodb\\driver\\writeconcern::getwtimeout' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\WriteConcern::isDefault' => + 'mongodb\\driver\\writeconcern::isdefault' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\WriteConcern::bsonSerialize' => + 'mongodb\\driver\\writeconcern::bsonserialize' => array ( 0 => 'stdClass', ), - 'MongoDB\\Driver\\WriteConcern::serialize' => + 'mongodb\\driver\\writeconcern::serialize' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\WriteConcern::unserialize' => + 'mongodb\\driver\\writeconcern::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\Driver\\WriteConcernError::getCode' => + 'mongodb\\driver\\writeconcernerror::getcode' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\WriteConcernError::getInfo' => + 'mongodb\\driver\\writeconcernerror::getinfo' => array ( 0 => 'null|object', ), - 'MongoDB\\Driver\\WriteConcernError::getMessage' => + 'mongodb\\driver\\writeconcernerror::getmessage' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\WriteError::getCode' => + 'mongodb\\driver\\writeerror::getcode' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\WriteError::getIndex' => + 'mongodb\\driver\\writeerror::getindex' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\WriteError::getInfo' => + 'mongodb\\driver\\writeerror::getinfo' => array ( 0 => 'null|object', ), - 'MongoDB\\Driver\\WriteError::getMessage' => + 'mongodb\\driver\\writeerror::getmessage' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\WriteResult::getInsertedCount' => + 'mongodb\\driver\\writeresult::getinsertedcount' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\WriteResult::getMatchedCount' => + 'mongodb\\driver\\writeresult::getmatchedcount' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\WriteResult::getModifiedCount' => + 'mongodb\\driver\\writeresult::getmodifiedcount' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\WriteResult::getDeletedCount' => + 'mongodb\\driver\\writeresult::getdeletedcount' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\WriteResult::getUpsertedCount' => + 'mongodb\\driver\\writeresult::getupsertedcount' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\WriteResult::getServer' => + 'mongodb\\driver\\writeresult::getserver' => array ( 0 => 'MongoDB\\Driver\\Server', ), - 'MongoDB\\Driver\\WriteResult::getUpsertedIds' => + 'mongodb\\driver\\writeresult::getupsertedids' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\WriteResult::getWriteConcernError' => + 'mongodb\\driver\\writeresult::getwriteconcernerror' => array ( 0 => 'MongoDB\\Driver\\WriteConcernError|null', ), - 'MongoDB\\Driver\\WriteResult::getWriteErrors' => + 'mongodb\\driver\\writeresult::getwriteerrors' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\WriteResult::getErrorReplies' => + 'mongodb\\driver\\writeresult::geterrorreplies' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\WriteResult::isAcknowledged' => + 'mongodb\\driver\\writeresult::isacknowledged' => array ( 0 => 'bool', ), - 'MongoDBRef::create' => + 'mongodbref::create' => array ( 0 => 'array', 'collection' => 'string', 'id' => 'mixed', 'database=' => 'string', ), - 'MongoDBRef::get' => + 'mongodbref::get' => array ( 0 => 'array|null', 'db' => 'MongoDB', 'ref' => 'array', ), - 'MongoDBRef::isRef' => + 'mongodbref::isref' => array ( 0 => 'bool', 'ref' => 'mixed', ), - 'MongoDeleteBatch::__construct' => + 'mongodeletebatch::__construct' => array ( 0 => 'void', 'collection' => 'MongoCollection', 'write_options=' => 'array', ), - 'MongoException::__clone' => + 'mongoexception::__clone' => array ( 0 => 'void', ), - 'MongoException::__construct' => + 'mongoexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'MongoException::__toString' => + 'mongoexception::__tostring' => array ( 0 => 'string', ), - 'MongoException::__wakeup' => + 'mongoexception::__wakeup' => array ( 0 => 'void', ), - 'MongoException::getCode' => + 'mongoexception::getcode' => array ( 0 => 'int', ), - 'MongoException::getFile' => + 'mongoexception::getfile' => array ( 0 => 'string', ), - 'MongoException::getLine' => + 'mongoexception::getline' => array ( 0 => 'int', ), - 'MongoException::getMessage' => + 'mongoexception::getmessage' => array ( 0 => 'string', ), - 'MongoException::getPrevious' => + 'mongoexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'MongoException::getTrace' => + 'mongoexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'MongoException::getTraceAsString' => + 'mongoexception::gettraceasstring' => array ( 0 => 'string', ), - 'MongoGridFS::__construct' => + 'mongogridfs::__construct' => array ( 0 => 'void', 'db' => 'MongoDB', 'prefix=' => 'string', 'chunks=' => 'mixed', ), - 'MongoGridFS::__get' => + 'mongogridfs::__get' => array ( 0 => 'MongoCollection', 'name' => 'string', ), - 'MongoGridFS::__toString' => + 'mongogridfs::__tostring' => array ( 0 => 'string', ), - 'MongoGridFS::aggregate' => + 'mongogridfs::aggregate' => array ( 0 => 'array', 'pipeline' => 'array', 'op' => 'array', 'pipelineOperators' => 'array', ), - 'MongoGridFS::aggregateCursor' => + 'mongogridfs::aggregatecursor' => array ( 0 => 'MongoCommandCursor', 'pipeline' => 'array', 'options' => 'array', ), - 'MongoGridFS::batchInsert' => + 'mongogridfs::batchinsert' => array ( 0 => 'mixed', 'a' => 'array', 'options=' => 'array', ), - 'MongoGridFS::count' => + 'mongogridfs::count' => array ( 0 => 'int', 'query=' => 'array|stdClass', ), - 'MongoGridFS::createDBRef' => + 'mongogridfs::createdbref' => array ( 0 => 'array', 'a' => 'array', ), - 'MongoGridFS::createIndex' => + 'mongogridfs::createindex' => array ( 0 => 'array', 'keys' => 'array', 'options=' => 'array', ), - 'MongoGridFS::delete' => + 'mongogridfs::delete' => array ( 0 => 'bool', 'id' => 'mixed', ), - 'MongoGridFS::deleteIndex' => + 'mongogridfs::deleteindex' => array ( 0 => 'array', 'keys' => 'array|string', ), - 'MongoGridFS::deleteIndexes' => + 'mongogridfs::deleteindexes' => array ( 0 => 'array', ), - 'MongoGridFS::distinct' => + 'mongogridfs::distinct' => array ( 0 => 'array|bool', 'key' => 'string', 'query=' => 'array|null', ), - 'MongoGridFS::drop' => + 'mongogridfs::drop' => array ( 0 => 'array', ), - 'MongoGridFS::ensureIndex' => + 'mongogridfs::ensureindex' => array ( 0 => 'bool', 'keys' => 'array', 'options=' => 'array', ), - 'MongoGridFS::find' => + 'mongogridfs::find' => array ( 0 => 'MongoGridFSCursor', 'query=' => 'array', 'fields=' => 'array', ), - 'MongoGridFS::findAndModify' => + 'mongogridfs::findandmodify' => array ( 0 => 'array', 'query' => 'array', @@ -39213,39 +39213,39 @@ 'fields=' => 'array|null', 'options=' => 'array|null', ), - 'MongoGridFS::findOne' => + 'mongogridfs::findone' => array ( 0 => 'MongoGridFSFile|null', 'query=' => 'mixed', 'fields=' => 'mixed', ), - 'MongoGridFS::get' => + 'mongogridfs::get' => array ( 0 => 'MongoGridFSFile|null', 'id' => 'mixed', ), - 'MongoGridFS::getDBRef' => + 'mongogridfs::getdbref' => array ( 0 => 'array', 'ref' => 'array', ), - 'MongoGridFS::getIndexInfo' => + 'mongogridfs::getindexinfo' => array ( 0 => 'array', ), - 'MongoGridFS::getName' => + 'mongogridfs::getname' => array ( 0 => 'string', ), - 'MongoGridFS::getReadPreference' => + 'mongogridfs::getreadpreference' => array ( 0 => 'array', ), - 'MongoGridFS::getSlaveOkay' => + 'mongogridfs::getslaveokay' => array ( 0 => 'bool', ), - 'MongoGridFS::group' => + 'mongogridfs::group' => array ( 0 => 'array', 'keys' => 'mixed', @@ -39253,79 +39253,79 @@ 'reduce' => 'MongoCode', 'condition=' => 'array', ), - 'MongoGridFS::insert' => + 'mongogridfs::insert' => array ( 0 => 'array|bool', 'a' => 'array|object', 'options=' => 'array', ), - 'MongoGridFS::put' => + 'mongogridfs::put' => array ( 0 => 'mixed', 'filename' => 'string', 'extra=' => 'array', ), - 'MongoGridFS::remove' => + 'mongogridfs::remove' => array ( 0 => 'bool', 'criteria=' => 'array', 'options=' => 'array', ), - 'MongoGridFS::save' => + 'mongogridfs::save' => array ( 0 => 'array|bool', 'a' => 'array|object', 'options=' => 'array', ), - 'MongoGridFS::setReadPreference' => + 'mongogridfs::setreadpreference' => array ( 0 => 'bool', 'read_preference' => 'string', 'tags' => 'array', ), - 'MongoGridFS::setSlaveOkay' => + 'mongogridfs::setslaveokay' => array ( 0 => 'bool', 'ok=' => 'bool', ), - 'MongoGridFS::storeBytes' => + 'mongogridfs::storebytes' => array ( 0 => 'mixed', 'bytes' => 'string', 'extra=' => 'array', 'options=' => 'array', ), - 'MongoGridFS::storeFile' => + 'mongogridfs::storefile' => array ( 0 => 'mixed', 'filename' => 'string', 'extra=' => 'array', 'options=' => 'array', ), - 'MongoGridFS::storeUpload' => + 'mongogridfs::storeupload' => array ( 0 => 'mixed', 'name' => 'string', 'filename=' => 'string', ), - 'MongoGridFS::toIndexString' => + 'mongogridfs::toindexstring' => array ( 0 => 'string', 'keys' => 'mixed', ), - 'MongoGridFS::update' => + 'mongogridfs::update' => array ( 0 => 'bool', 'criteria' => 'array', 'newobj' => 'array', 'options=' => 'array', ), - 'MongoGridFS::validate' => + 'mongogridfs::validate' => array ( 0 => 'array', 'scan_data=' => 'bool', ), - 'MongoGridFSCursor::__construct' => + 'mongogridfscursor::__construct' => array ( 0 => 'void', 'gridfs' => 'MongoGridFS', @@ -39334,427 +39334,427 @@ 'query' => 'array', 'fields' => 'array', ), - 'MongoGridFSCursor::addOption' => + 'mongogridfscursor::addoption' => array ( 0 => 'MongoCursor', 'key' => 'string', 'value' => 'mixed', ), - 'MongoGridFSCursor::awaitData' => + 'mongogridfscursor::awaitdata' => array ( 0 => 'MongoCursor', 'wait=' => 'bool', ), - 'MongoGridFSCursor::batchSize' => + 'mongogridfscursor::batchsize' => array ( 0 => 'MongoCursor', 'batchSize' => 'int', ), - 'MongoGridFSCursor::count' => + 'mongogridfscursor::count' => array ( 0 => 'int', 'all=' => 'bool', ), - 'MongoGridFSCursor::current' => + 'mongogridfscursor::current' => array ( 0 => 'MongoGridFSFile', ), - 'MongoGridFSCursor::dead' => + 'mongogridfscursor::dead' => array ( 0 => 'bool', ), - 'MongoGridFSCursor::doQuery' => + 'mongogridfscursor::doquery' => array ( 0 => 'void', ), - 'MongoGridFSCursor::explain' => + 'mongogridfscursor::explain' => array ( 0 => 'array', ), - 'MongoGridFSCursor::fields' => + 'mongogridfscursor::fields' => array ( 0 => 'MongoCursor', 'f' => 'array', ), - 'MongoGridFSCursor::getNext' => + 'mongogridfscursor::getnext' => array ( 0 => 'MongoGridFSFile', ), - 'MongoGridFSCursor::getReadPreference' => + 'mongogridfscursor::getreadpreference' => array ( 0 => 'array', ), - 'MongoGridFSCursor::hasNext' => + 'mongogridfscursor::hasnext' => array ( 0 => 'bool', ), - 'MongoGridFSCursor::hint' => + 'mongogridfscursor::hint' => array ( 0 => 'MongoCursor', 'key_pattern' => 'mixed', ), - 'MongoGridFSCursor::immortal' => + 'mongogridfscursor::immortal' => array ( 0 => 'MongoCursor', 'liveForever=' => 'bool', ), - 'MongoGridFSCursor::info' => + 'mongogridfscursor::info' => array ( 0 => 'array', ), - 'MongoGridFSCursor::key' => + 'mongogridfscursor::key' => array ( 0 => 'string', ), - 'MongoGridFSCursor::limit' => + 'mongogridfscursor::limit' => array ( 0 => 'MongoCursor', 'num' => 'int', ), - 'MongoGridFSCursor::maxTimeMS' => + 'mongogridfscursor::maxtimems' => array ( 0 => 'MongoCursor', 'ms' => 'int', ), - 'MongoGridFSCursor::next' => + 'mongogridfscursor::next' => array ( 0 => 'void', ), - 'MongoGridFSCursor::partial' => + 'mongogridfscursor::partial' => array ( 0 => 'MongoCursor', 'okay=' => 'bool', ), - 'MongoGridFSCursor::reset' => + 'mongogridfscursor::reset' => array ( 0 => 'void', ), - 'MongoGridFSCursor::rewind' => + 'mongogridfscursor::rewind' => array ( 0 => 'void', ), - 'MongoGridFSCursor::setFlag' => + 'mongogridfscursor::setflag' => array ( 0 => 'MongoCursor', 'flag' => 'int', 'set=' => 'bool', ), - 'MongoGridFSCursor::setReadPreference' => + 'mongogridfscursor::setreadpreference' => array ( 0 => 'MongoCursor', 'read_preference' => 'string', 'tags' => 'array', ), - 'MongoGridFSCursor::skip' => + 'mongogridfscursor::skip' => array ( 0 => 'MongoCursor', 'num' => 'int', ), - 'MongoGridFSCursor::slaveOkay' => + 'mongogridfscursor::slaveokay' => array ( 0 => 'MongoCursor', 'okay=' => 'bool', ), - 'MongoGridFSCursor::snapshot' => + 'mongogridfscursor::snapshot' => array ( 0 => 'MongoCursor', ), - 'MongoGridFSCursor::sort' => + 'mongogridfscursor::sort' => array ( 0 => 'MongoCursor', 'fields' => 'array', ), - 'MongoGridFSCursor::tailable' => + 'mongogridfscursor::tailable' => array ( 0 => 'MongoCursor', 'tail=' => 'bool', ), - 'MongoGridFSCursor::timeout' => + 'mongogridfscursor::timeout' => array ( 0 => 'MongoCursor', 'ms' => 'int', ), - 'MongoGridFSCursor::valid' => + 'mongogridfscursor::valid' => array ( 0 => 'bool', ), - 'MongoGridfsFile::__construct' => + 'mongogridfsfile::__construct' => array ( 0 => 'void', 'gridfs' => 'MongoGridFS', 'file' => 'array', ), - 'MongoGridFSFile::getBytes' => + 'mongogridfsfile::getbytes' => array ( 0 => 'string', ), - 'MongoGridFSFile::getFilename' => + 'mongogridfsfile::getfilename' => array ( 0 => 'string', ), - 'MongoGridFSFile::getResource' => + 'mongogridfsfile::getresource' => array ( 0 => 'resource', ), - 'MongoGridFSFile::getSize' => + 'mongogridfsfile::getsize' => array ( 0 => 'int', ), - 'MongoGridFSFile::write' => + 'mongogridfsfile::write' => array ( 0 => 'int', 'filename=' => 'string', ), - 'MongoId::__construct' => + 'mongoid::__construct' => array ( 0 => 'void', 'id=' => 'MongoId|string', ), - 'MongoId::__set_state' => + 'mongoid::__set_state' => array ( 0 => 'MongoId', 'props' => 'array', ), - 'MongoId::__toString' => + 'mongoid::__tostring' => array ( 0 => 'string', ), - 'MongoId::getHostname' => + 'mongoid::gethostname' => array ( 0 => 'string', ), - 'MongoId::getInc' => + 'mongoid::getinc' => array ( 0 => 'int', ), - 'MongoId::getPID' => + 'mongoid::getpid' => array ( 0 => 'int', ), - 'MongoId::getTimestamp' => + 'mongoid::gettimestamp' => array ( 0 => 'int', ), - 'MongoId::isValid' => + 'mongoid::isvalid' => array ( 0 => 'bool', 'value' => 'mixed', ), - 'MongoInsertBatch::__construct' => + 'mongoinsertbatch::__construct' => array ( 0 => 'void', 'collection' => 'MongoCollection', 'write_options=' => 'array', ), - 'MongoInt32::__construct' => + 'mongoint32::__construct' => array ( 0 => 'void', 'value' => 'string', ), - 'MongoInt32::__toString' => + 'mongoint32::__tostring' => array ( 0 => 'string', ), - 'MongoInt64::__construct' => + 'mongoint64::__construct' => array ( 0 => 'void', 'value' => 'string', ), - 'MongoInt64::__toString' => + 'mongoint64::__tostring' => array ( 0 => 'string', ), - 'MongoLog::getCallback' => + 'mongolog::getcallback' => array ( 0 => 'callable', ), - 'MongoLog::getLevel' => + 'mongolog::getlevel' => array ( 0 => 'int', ), - 'MongoLog::getModule' => + 'mongolog::getmodule' => array ( 0 => 'int', ), - 'MongoLog::setCallback' => + 'mongolog::setcallback' => array ( 0 => 'void', 'log_function' => 'callable', ), - 'MongoLog::setLevel' => + 'mongolog::setlevel' => array ( 0 => 'void', 'level' => 'int', ), - 'MongoLog::setModule' => + 'mongolog::setmodule' => array ( 0 => 'void', 'module' => 'int', ), - 'MongoPool::getSize' => + 'mongopool::getsize' => array ( 0 => 'int', ), - 'MongoPool::info' => + 'mongopool::info' => array ( 0 => 'array', ), - 'MongoPool::setSize' => + 'mongopool::setsize' => array ( 0 => 'bool', 'size' => 'int', ), - 'MongoRegex::__construct' => + 'mongoregex::__construct' => array ( 0 => 'void', 'regex' => 'string', ), - 'MongoRegex::__toString' => + 'mongoregex::__tostring' => array ( 0 => 'string', ), - 'MongoResultException::__clone' => + 'mongoresultexception::__clone' => array ( 0 => 'void', ), - 'MongoResultException::__construct' => + 'mongoresultexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'MongoResultException::__toString' => + 'mongoresultexception::__tostring' => array ( 0 => 'string', ), - 'MongoResultException::__wakeup' => + 'mongoresultexception::__wakeup' => array ( 0 => 'void', ), - 'MongoResultException::getCode' => + 'mongoresultexception::getcode' => array ( 0 => 'int', ), - 'MongoResultException::getDocument' => + 'mongoresultexception::getdocument' => array ( 0 => 'array', ), - 'MongoResultException::getFile' => + 'mongoresultexception::getfile' => array ( 0 => 'string', ), - 'MongoResultException::getLine' => + 'mongoresultexception::getline' => array ( 0 => 'int', ), - 'MongoResultException::getMessage' => + 'mongoresultexception::getmessage' => array ( 0 => 'string', ), - 'MongoResultException::getPrevious' => + 'mongoresultexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'MongoResultException::getTrace' => + 'mongoresultexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'MongoResultException::getTraceAsString' => + 'mongoresultexception::gettraceasstring' => array ( 0 => 'string', ), - 'MongoTimestamp::__construct' => + 'mongotimestamp::__construct' => array ( 0 => 'void', 'second=' => 'int', 'inc=' => 'int', ), - 'MongoTimestamp::__toString' => + 'mongotimestamp::__tostring' => array ( 0 => 'string', ), - 'MongoUpdateBatch::__construct' => + 'mongoupdatebatch::__construct' => array ( 0 => 'void', 'collection' => 'MongoCollection', 'write_options=' => 'array', ), - 'MongoUpdateBatch::add' => + 'mongoupdatebatch::add' => array ( 0 => 'bool', 'item' => 'array', ), - 'MongoUpdateBatch::execute' => + 'mongoupdatebatch::execute' => array ( 0 => 'array', 'write_options' => 'array', ), - 'MongoWriteBatch::__construct' => + 'mongowritebatch::__construct' => array ( 0 => 'void', 'collection' => 'MongoCollection', 'batch_type' => 'string', 'write_options' => 'array', ), - 'MongoWriteBatch::add' => + 'mongowritebatch::add' => array ( 0 => 'bool', 'item' => 'array', ), - 'MongoWriteBatch::execute' => + 'mongowritebatch::execute' => array ( 0 => 'array', 'write_options' => 'array', ), - 'MongoWriteConcernException::__clone' => + 'mongowriteconcernexception::__clone' => array ( 0 => 'void', ), - 'MongoWriteConcernException::__construct' => + 'mongowriteconcernexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'MongoWriteConcernException::__toString' => + 'mongowriteconcernexception::__tostring' => array ( 0 => 'string', ), - 'MongoWriteConcernException::__wakeup' => + 'mongowriteconcernexception::__wakeup' => array ( 0 => 'void', ), - 'MongoWriteConcernException::getCode' => + 'mongowriteconcernexception::getcode' => array ( 0 => 'int', ), - 'MongoWriteConcernException::getDocument' => + 'mongowriteconcernexception::getdocument' => array ( 0 => 'array', ), - 'MongoWriteConcernException::getFile' => + 'mongowriteconcernexception::getfile' => array ( 0 => 'string', ), - 'MongoWriteConcernException::getLine' => + 'mongowriteconcernexception::getline' => array ( 0 => 'int', ), - 'MongoWriteConcernException::getMessage' => + 'mongowriteconcernexception::getmessage' => array ( 0 => 'string', ), - 'MongoWriteConcernException::getPrevious' => + 'mongowriteconcernexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'MongoWriteConcernException::getTrace' => + 'mongowriteconcernexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'MongoWriteConcernException::getTraceAsString' => + 'mongowriteconcernexception::gettraceasstring' => array ( 0 => 'string', ), @@ -39929,19 +39929,19 @@ 0 => 'string', 'reason' => 'int', ), - 'ms_GetErrorObj' => + 'ms_geterrorobj' => array ( 0 => 'errorObj', ), - 'ms_GetVersion' => + 'ms_getversion' => array ( 0 => 'string', ), - 'ms_GetVersionInt' => + 'ms_getversionint' => array ( 0 => 'int', ), - 'ms_iogetStdoutBufferBytes' => + 'ms_iogetstdoutbufferbytes' => array ( 0 => 'int', ), @@ -39969,11 +39969,11 @@ array ( 0 => 'string', ), - 'ms_ResetErrorList' => + 'ms_reseterrorlist' => array ( 0 => 'void', ), - 'ms_TokenizeMap' => + 'ms_tokenizemap' => array ( 0 => 'array', 'map_file_name' => 'string', @@ -40383,91 +40383,91 @@ 'seed=' => 'int|null', 'mode=' => 'int', ), - 'MultipleIterator::__construct' => + 'multipleiterator::__construct' => array ( 0 => 'void', 'flags=' => 'int', ), - 'MultipleIterator::attachIterator' => + 'multipleiterator::attachiterator' => array ( 0 => 'void', 'iterator' => 'Iterator', 'info=' => 'int|null|string', ), - 'MultipleIterator::containsIterator' => + 'multipleiterator::containsiterator' => array ( 0 => 'bool', 'iterator' => 'Iterator', ), - 'MultipleIterator::countIterators' => + 'multipleiterator::countiterators' => array ( 0 => 'int', ), - 'MultipleIterator::current' => + 'multipleiterator::current' => array ( 0 => 'array', ), - 'MultipleIterator::detachIterator' => + 'multipleiterator::detachiterator' => array ( 0 => 'void', 'iterator' => 'Iterator', ), - 'MultipleIterator::getFlags' => + 'multipleiterator::getflags' => array ( 0 => 'int', ), - 'MultipleIterator::key' => + 'multipleiterator::key' => array ( 0 => 'array', ), - 'MultipleIterator::next' => + 'multipleiterator::next' => array ( 0 => 'void', ), - 'MultipleIterator::rewind' => + 'multipleiterator::rewind' => array ( 0 => 'void', ), - 'MultipleIterator::setFlags' => + 'multipleiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'MultipleIterator::valid' => + 'multipleiterator::valid' => array ( 0 => 'bool', ), - 'Mutex::create' => + 'mutex::create' => array ( 0 => 'long', 'lock=' => 'bool', ), - 'Mutex::destroy' => + 'mutex::destroy' => array ( 0 => 'bool', 'mutex' => 'long', ), - 'Mutex::lock' => + 'mutex::lock' => array ( 0 => 'bool', 'mutex' => 'long', ), - 'Mutex::trylock' => + 'mutex::trylock' => array ( 0 => 'bool', 'mutex' => 'long', ), - 'Mutex::unlock' => + 'mutex::unlock' => array ( 0 => 'bool', 'mutex' => 'long', 'destroy=' => 'bool', ), - 'mysql_xdevapi\\baseresult::getWarnings' => + 'mysql_xdevapi\\baseresult::getwarnings' => array ( 0 => 'array', ), - 'mysql_xdevapi\\baseresult::getWarningsCount' => + 'mysql_xdevapi\\baseresult::getwarningscount' => array ( 0 => 'int', ), @@ -40476,7 +40476,7 @@ 0 => 'mysql_xdevapi\\CollectionAdd', 'document' => 'mixed', ), - 'mysql_xdevapi\\collection::addOrReplaceOne' => + 'mysql_xdevapi\\collection::addorreplaceone' => array ( 0 => 'mysql_xdevapi\\Result', 'id' => 'string', @@ -40486,18 +40486,18 @@ array ( 0 => 'int', ), - 'mysql_xdevapi\\collection::createIndex' => + 'mysql_xdevapi\\collection::createindex' => array ( 0 => 'void', 'index_name' => 'string', 'index_desc_json' => 'string', ), - 'mysql_xdevapi\\collection::dropIndex' => + 'mysql_xdevapi\\collection::dropindex' => array ( 0 => 'bool', 'index_name' => 'string', ), - 'mysql_xdevapi\\collection::existsInDatabase' => + 'mysql_xdevapi\\collection::existsindatabase' => array ( 0 => 'bool', ), @@ -40506,20 +40506,20 @@ 0 => 'mysql_xdevapi\\CollectionFind', 'search_condition=' => 'string', ), - 'mysql_xdevapi\\collection::getName' => + 'mysql_xdevapi\\collection::getname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\collection::getOne' => + 'mysql_xdevapi\\collection::getone' => array ( 0 => 'Document', 'id' => 'string', ), - 'mysql_xdevapi\\collection::getSchema' => + 'mysql_xdevapi\\collection::getschema' => array ( 0 => 'mysql_xdevapi\\schema', ), - 'mysql_xdevapi\\collection::getSession' => + 'mysql_xdevapi\\collection::getsession' => array ( 0 => 'Session', ), @@ -40533,12 +40533,12 @@ 0 => 'mysql_xdevapi\\CollectionRemove', 'search_condition' => 'string', ), - 'mysql_xdevapi\\collection::removeOne' => + 'mysql_xdevapi\\collection::removeone' => array ( 0 => 'mysql_xdevapi\\Result', 'id' => 'string', ), - 'mysql_xdevapi\\collection::replaceOne' => + 'mysql_xdevapi\\collection::replaceone' => array ( 0 => 'mysql_xdevapi\\Result', 'id' => 'string', @@ -40562,7 +40562,7 @@ 0 => 'mysql_xdevapi\\CollectionFind', 'projection' => 'string', ), - 'mysql_xdevapi\\collectionfind::groupBy' => + 'mysql_xdevapi\\collectionfind::groupby' => array ( 0 => 'mysql_xdevapi\\CollectionFind', 'sort_expr' => 'string', @@ -40577,12 +40577,12 @@ 0 => 'mysql_xdevapi\\CollectionFind', 'rows' => 'int', ), - 'mysql_xdevapi\\collectionfind::lockExclusive' => + 'mysql_xdevapi\\collectionfind::lockexclusive' => array ( 0 => 'mysql_xdevapi\\CollectionFind', 'lock_waiting_option=' => 'int', ), - 'mysql_xdevapi\\collectionfind::lockShared' => + 'mysql_xdevapi\\collectionfind::lockshared' => array ( 0 => 'mysql_xdevapi\\CollectionFind', 'lock_waiting_option=' => 'int', @@ -40597,13 +40597,13 @@ 0 => 'mysql_xdevapi\\CollectionFind', 'sort_expr' => 'string', ), - 'mysql_xdevapi\\collectionmodify::arrayAppend' => + 'mysql_xdevapi\\collectionmodify::arrayappend' => array ( 0 => 'mysql_xdevapi\\CollectionModify', 'collection_field' => 'string', 'expression_or_literal' => 'string', ), - 'mysql_xdevapi\\collectionmodify::arrayInsert' => + 'mysql_xdevapi\\collectionmodify::arrayinsert' => array ( 0 => 'mysql_xdevapi\\CollectionModify', 'collection_field' => 'string', @@ -40674,51 +40674,51 @@ 0 => 'mysql_xdevapi\\CollectionRemove', 'sort_expr' => 'string', ), - 'mysql_xdevapi\\columnresult::getCharacterSetName' => + 'mysql_xdevapi\\columnresult::getcharactersetname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\columnresult::getCollationName' => + 'mysql_xdevapi\\columnresult::getcollationname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\columnresult::getColumnLabel' => + 'mysql_xdevapi\\columnresult::getcolumnlabel' => array ( 0 => 'string', ), - 'mysql_xdevapi\\columnresult::getColumnName' => + 'mysql_xdevapi\\columnresult::getcolumnname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\columnresult::getFractionalDigits' => + 'mysql_xdevapi\\columnresult::getfractionaldigits' => array ( 0 => 'int', ), - 'mysql_xdevapi\\columnresult::getLength' => + 'mysql_xdevapi\\columnresult::getlength' => array ( 0 => 'int', ), - 'mysql_xdevapi\\columnresult::getSchemaName' => + 'mysql_xdevapi\\columnresult::getschemaname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\columnresult::getTableLabel' => + 'mysql_xdevapi\\columnresult::gettablelabel' => array ( 0 => 'string', ), - 'mysql_xdevapi\\columnresult::getTableName' => + 'mysql_xdevapi\\columnresult::gettablename' => array ( 0 => 'string', ), - 'mysql_xdevapi\\columnresult::getType' => + 'mysql_xdevapi\\columnresult::gettype' => array ( 0 => 'int', ), - 'mysql_xdevapi\\columnresult::isNumberSigned' => + 'mysql_xdevapi\\columnresult::isnumbersigned' => array ( 0 => 'int', ), - 'mysql_xdevapi\\columnresult::isPadded' => + 'mysql_xdevapi\\columnresult::ispadded' => array ( 0 => 'int', ), @@ -40742,31 +40742,31 @@ 0 => 'mysql_xdevapi\\CrudOperationSortable', 'sort_expr' => 'string', ), - 'mysql_xdevapi\\databaseobject::existsInDatabase' => + 'mysql_xdevapi\\databaseobject::existsindatabase' => array ( 0 => 'bool', ), - 'mysql_xdevapi\\databaseobject::getName' => + 'mysql_xdevapi\\databaseobject::getname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\databaseobject::getSession' => + 'mysql_xdevapi\\databaseobject::getsession' => array ( 0 => 'mysql_xdevapi\\Session', ), - 'mysql_xdevapi\\docresult::fetchAll' => + 'mysql_xdevapi\\docresult::fetchall' => array ( 0 => 'array', ), - 'mysql_xdevapi\\docresult::fetchOne' => + 'mysql_xdevapi\\docresult::fetchone' => array ( 0 => 'object', ), - 'mysql_xdevapi\\docresult::getWarnings' => + 'mysql_xdevapi\\docresult::getwarnings' => array ( 0 => 'array', ), - 'mysql_xdevapi\\docresult::getWarningsCount' => + 'mysql_xdevapi\\docresult::getwarningscount' => array ( 0 => 'int', ), @@ -40779,96 +40779,96 @@ 0 => 'mysql_xdevapi\\Session', 'uri' => 'string', ), - 'mysql_xdevapi\\result::getAutoIncrementValue' => + 'mysql_xdevapi\\result::getautoincrementvalue' => array ( 0 => 'int', ), - 'mysql_xdevapi\\result::getGeneratedIds' => + 'mysql_xdevapi\\result::getgeneratedids' => array ( 0 => 'ArrayOfInt', ), - 'mysql_xdevapi\\result::getWarnings' => + 'mysql_xdevapi\\result::getwarnings' => array ( 0 => 'array', ), - 'mysql_xdevapi\\result::getWarningsCount' => + 'mysql_xdevapi\\result::getwarningscount' => array ( 0 => 'int', ), - 'mysql_xdevapi\\rowresult::fetchAll' => + 'mysql_xdevapi\\rowresult::fetchall' => array ( 0 => 'array', ), - 'mysql_xdevapi\\rowresult::fetchOne' => + 'mysql_xdevapi\\rowresult::fetchone' => array ( 0 => 'object', ), - 'mysql_xdevapi\\rowresult::getColumnCount' => + 'mysql_xdevapi\\rowresult::getcolumncount' => array ( 0 => 'int', ), - 'mysql_xdevapi\\rowresult::getColumnNames' => + 'mysql_xdevapi\\rowresult::getcolumnnames' => array ( 0 => 'array', ), - 'mysql_xdevapi\\rowresult::getColumns' => + 'mysql_xdevapi\\rowresult::getcolumns' => array ( 0 => 'array', ), - 'mysql_xdevapi\\rowresult::getWarnings' => + 'mysql_xdevapi\\rowresult::getwarnings' => array ( 0 => 'array', ), - 'mysql_xdevapi\\rowresult::getWarningsCount' => + 'mysql_xdevapi\\rowresult::getwarningscount' => array ( 0 => 'int', ), - 'mysql_xdevapi\\schema::createCollection' => + 'mysql_xdevapi\\schema::createcollection' => array ( 0 => 'mysql_xdevapi\\Collection', 'name' => 'string', ), - 'mysql_xdevapi\\schema::dropCollection' => + 'mysql_xdevapi\\schema::dropcollection' => array ( 0 => 'bool', 'collection_name' => 'string', ), - 'mysql_xdevapi\\schema::existsInDatabase' => + 'mysql_xdevapi\\schema::existsindatabase' => array ( 0 => 'bool', ), - 'mysql_xdevapi\\schema::getCollection' => + 'mysql_xdevapi\\schema::getcollection' => array ( 0 => 'mysql_xdevapi\\Collection', 'name' => 'string', ), - 'mysql_xdevapi\\schema::getCollectionAsTable' => + 'mysql_xdevapi\\schema::getcollectionastable' => array ( 0 => 'mysql_xdevapi\\Table', 'name' => 'string', ), - 'mysql_xdevapi\\schema::getCollections' => + 'mysql_xdevapi\\schema::getcollections' => array ( 0 => 'array', ), - 'mysql_xdevapi\\schema::getName' => + 'mysql_xdevapi\\schema::getname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\schema::getSession' => + 'mysql_xdevapi\\schema::getsession' => array ( 0 => 'mysql_xdevapi\\Session', ), - 'mysql_xdevapi\\schema::getTable' => + 'mysql_xdevapi\\schema::gettable' => array ( 0 => 'mysql_xdevapi\\Table', 'name' => 'string', ), - 'mysql_xdevapi\\schema::getTables' => + 'mysql_xdevapi\\schema::gettables' => array ( 0 => 'array', ), - 'mysql_xdevapi\\schemaobject::getSchema' => + 'mysql_xdevapi\\schemaobject::getschema' => array ( 0 => 'mysql_xdevapi\\Schema', ), @@ -40880,57 +40880,57 @@ array ( 0 => 'object', ), - 'mysql_xdevapi\\session::createSchema' => + 'mysql_xdevapi\\session::createschema' => array ( 0 => 'mysql_xdevapi\\Schema', 'schema_name' => 'string', ), - 'mysql_xdevapi\\session::dropSchema' => + 'mysql_xdevapi\\session::dropschema' => array ( 0 => 'bool', 'schema_name' => 'string', ), - 'mysql_xdevapi\\session::executeSql' => + 'mysql_xdevapi\\session::executesql' => array ( 0 => 'object', 'statement' => 'string', ), - 'mysql_xdevapi\\session::generateUUID' => + 'mysql_xdevapi\\session::generateuuid' => array ( 0 => 'string', ), - 'mysql_xdevapi\\session::getClientId' => + 'mysql_xdevapi\\session::getclientid' => array ( 0 => 'int', ), - 'mysql_xdevapi\\session::getSchema' => + 'mysql_xdevapi\\session::getschema' => array ( 0 => 'mysql_xdevapi\\Schema', 'schema_name' => 'string', ), - 'mysql_xdevapi\\session::getSchemas' => + 'mysql_xdevapi\\session::getschemas' => array ( 0 => 'array', ), - 'mysql_xdevapi\\session::getServerVersion' => + 'mysql_xdevapi\\session::getserverversion' => array ( 0 => 'int', ), - 'mysql_xdevapi\\session::killClient' => + 'mysql_xdevapi\\session::killclient' => array ( 0 => 'object', 'client_id' => 'int', ), - 'mysql_xdevapi\\session::listClients' => + 'mysql_xdevapi\\session::listclients' => array ( 0 => 'array', ), - 'mysql_xdevapi\\session::quoteName' => + 'mysql_xdevapi\\session::quotename' => array ( 0 => 'string', 'name' => 'string', ), - 'mysql_xdevapi\\session::releaseSavepoint' => + 'mysql_xdevapi\\session::releasesavepoint' => array ( 0 => 'void', 'name' => 'string', @@ -40939,12 +40939,12 @@ array ( 0 => 'void', ), - 'mysql_xdevapi\\session::rollbackTo' => + 'mysql_xdevapi\\session::rollbackto' => array ( 0 => 'void', 'name' => 'string', ), - 'mysql_xdevapi\\session::setSavepoint' => + 'mysql_xdevapi\\session::setsavepoint' => array ( 0 => 'string', 'name=' => 'string', @@ -40954,7 +40954,7 @@ 0 => 'mysql_xdevapi\\SqlStatement', 'query' => 'string', ), - 'mysql_xdevapi\\session::startTransaction' => + 'mysql_xdevapi\\session::starttransaction' => array ( 0 => 'void', ), @@ -40967,75 +40967,75 @@ array ( 0 => 'mysql_xdevapi\\Result', ), - 'mysql_xdevapi\\sqlstatement::getNextResult' => + 'mysql_xdevapi\\sqlstatement::getnextresult' => array ( 0 => 'mysql_xdevapi\\Result', ), - 'mysql_xdevapi\\sqlstatement::getResult' => + 'mysql_xdevapi\\sqlstatement::getresult' => array ( 0 => 'mysql_xdevapi\\Result', ), - 'mysql_xdevapi\\sqlstatement::hasMoreResults' => + 'mysql_xdevapi\\sqlstatement::hasmoreresults' => array ( 0 => 'bool', ), - 'mysql_xdevapi\\sqlstatementresult::fetchAll' => + 'mysql_xdevapi\\sqlstatementresult::fetchall' => array ( 0 => 'array', ), - 'mysql_xdevapi\\sqlstatementresult::fetchOne' => + 'mysql_xdevapi\\sqlstatementresult::fetchone' => array ( 0 => 'object', ), - 'mysql_xdevapi\\sqlstatementresult::getAffectedItemsCount' => + 'mysql_xdevapi\\sqlstatementresult::getaffecteditemscount' => array ( 0 => 'int', ), - 'mysql_xdevapi\\sqlstatementresult::getColumnCount' => + 'mysql_xdevapi\\sqlstatementresult::getcolumncount' => array ( 0 => 'int', ), - 'mysql_xdevapi\\sqlstatementresult::getColumnNames' => + 'mysql_xdevapi\\sqlstatementresult::getcolumnnames' => array ( 0 => 'array', ), - 'mysql_xdevapi\\sqlstatementresult::getColumns' => + 'mysql_xdevapi\\sqlstatementresult::getcolumns' => array ( 0 => 'array', ), - 'mysql_xdevapi\\sqlstatementresult::getGeneratedIds' => + 'mysql_xdevapi\\sqlstatementresult::getgeneratedids' => array ( 0 => 'array', ), - 'mysql_xdevapi\\sqlstatementresult::getLastInsertId' => + 'mysql_xdevapi\\sqlstatementresult::getlastinsertid' => array ( 0 => 'string', ), - 'mysql_xdevapi\\sqlstatementresult::getWarnings' => + 'mysql_xdevapi\\sqlstatementresult::getwarnings' => array ( 0 => 'array', ), - 'mysql_xdevapi\\sqlstatementresult::getWarningsCount' => + 'mysql_xdevapi\\sqlstatementresult::getwarningscount' => array ( 0 => 'int', ), - 'mysql_xdevapi\\sqlstatementresult::hasData' => + 'mysql_xdevapi\\sqlstatementresult::hasdata' => array ( 0 => 'bool', ), - 'mysql_xdevapi\\sqlstatementresult::nextResult' => + 'mysql_xdevapi\\sqlstatementresult::nextresult' => array ( 0 => 'mysql_xdevapi\\Result', ), - 'mysql_xdevapi\\statement::getNextResult' => + 'mysql_xdevapi\\statement::getnextresult' => array ( 0 => 'mysql_xdevapi\\Result', ), - 'mysql_xdevapi\\statement::getResult' => + 'mysql_xdevapi\\statement::getresult' => array ( 0 => 'mysql_xdevapi\\Result', ), - 'mysql_xdevapi\\statement::hasMoreResults' => + 'mysql_xdevapi\\statement::hasmoreresults' => array ( 0 => 'bool', ), @@ -41047,19 +41047,19 @@ array ( 0 => 'mysql_xdevapi\\TableDelete', ), - 'mysql_xdevapi\\table::existsInDatabase' => + 'mysql_xdevapi\\table::existsindatabase' => array ( 0 => 'bool', ), - 'mysql_xdevapi\\table::getName' => + 'mysql_xdevapi\\table::getname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\table::getSchema' => + 'mysql_xdevapi\\table::getschema' => array ( 0 => 'mysql_xdevapi\\Schema', ), - 'mysql_xdevapi\\table::getSession' => + 'mysql_xdevapi\\table::getsession' => array ( 0 => 'mysql_xdevapi\\Session', ), @@ -41069,7 +41069,7 @@ 'columns' => 'mixed', '...args=' => 'mixed', ), - 'mysql_xdevapi\\table::isView' => + 'mysql_xdevapi\\table::isview' => array ( 0 => 'bool', ), @@ -41130,7 +41130,7 @@ array ( 0 => 'mysql_xdevapi\\RowResult', ), - 'mysql_xdevapi\\tableselect::groupBy' => + 'mysql_xdevapi\\tableselect::groupby' => array ( 0 => 'mysql_xdevapi\\TableSelect', 'sort_expr' => 'mixed', @@ -41145,12 +41145,12 @@ 0 => 'mysql_xdevapi\\TableSelect', 'rows' => 'int', ), - 'mysql_xdevapi\\tableselect::lockExclusive' => + 'mysql_xdevapi\\tableselect::lockexclusive' => array ( 0 => 'mysql_xdevapi\\TableSelect', 'lock_waiting_option=' => 'int', ), - 'mysql_xdevapi\\tableselect::lockShared' => + 'mysql_xdevapi\\tableselect::lockshared' => array ( 0 => 'mysql_xdevapi\\TableSelect', 'lock_waiting_option=' => 'int', @@ -42508,11 +42508,11 @@ 0 => 'bool', '&rw_statement_proxy' => 'MysqlndUhStatement', ), - 'MysqlndUhConnection::__construct' => + 'mysqlnduhconnection::__construct' => array ( 0 => 'void', ), - 'MysqlndUhConnection::changeUser' => + 'mysqlnduhconnection::changeuser' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', @@ -42522,18 +42522,18 @@ 'silent' => 'bool', 'passwd_len' => 'int', ), - 'MysqlndUhConnection::charsetName' => + 'mysqlnduhconnection::charsetname' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::close' => + 'mysqlnduhconnection::close' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'close_type' => 'int', ), - 'MysqlndUhConnection::connect' => + 'mysqlnduhconnection::connect' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', @@ -42545,111 +42545,111 @@ 'socket' => 'string', 'mysql_flags' => 'int', ), - 'MysqlndUhConnection::endPSession' => + 'mysqlnduhconnection::endpsession' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::escapeString' => + 'mysqlnduhconnection::escapestring' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', 'escape_string' => 'string', ), - 'MysqlndUhConnection::getAffectedRows' => + 'mysqlnduhconnection::getaffectedrows' => array ( 0 => 'int', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getErrorNumber' => + 'mysqlnduhconnection::geterrornumber' => array ( 0 => 'int', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getErrorString' => + 'mysqlnduhconnection::geterrorstring' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getFieldCount' => + 'mysqlnduhconnection::getfieldcount' => array ( 0 => 'int', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getHostInformation' => + 'mysqlnduhconnection::gethostinformation' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getLastInsertId' => + 'mysqlnduhconnection::getlastinsertid' => array ( 0 => 'int', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getLastMessage' => + 'mysqlnduhconnection::getlastmessage' => array ( 0 => 'void', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getProtocolInformation' => + 'mysqlnduhconnection::getprotocolinformation' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getServerInformation' => + 'mysqlnduhconnection::getserverinformation' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getServerStatistics' => + 'mysqlnduhconnection::getserverstatistics' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getServerVersion' => + 'mysqlnduhconnection::getserverversion' => array ( 0 => 'int', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getSqlstate' => + 'mysqlnduhconnection::getsqlstate' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getStatistics' => + 'mysqlnduhconnection::getstatistics' => array ( 0 => 'array', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getThreadId' => + 'mysqlnduhconnection::getthreadid' => array ( 0 => 'int', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getWarningCount' => + 'mysqlnduhconnection::getwarningcount' => array ( 0 => 'int', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::init' => + 'mysqlnduhconnection::init' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::killConnection' => + 'mysqlnduhconnection::killconnection' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'pid' => 'int', ), - 'MysqlndUhConnection::listFields' => + 'mysqlnduhconnection::listfields' => array ( 0 => 'array', 'connection' => 'mysqlnd_connection', 'table' => 'string', 'achtung_wild' => 'string', ), - 'MysqlndUhConnection::listMethod' => + 'mysqlnduhconnection::listmethod' => array ( 0 => 'void', 'connection' => 'mysqlnd_connection', @@ -42657,103 +42657,103 @@ 'achtung_wild' => 'string', 'par1' => 'string', ), - 'MysqlndUhConnection::moreResults' => + 'mysqlnduhconnection::moreresults' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::nextResult' => + 'mysqlnduhconnection::nextresult' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::ping' => + 'mysqlnduhconnection::ping' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::query' => + 'mysqlnduhconnection::query' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'query' => 'string', ), - 'MysqlndUhConnection::queryReadResultsetHeader' => + 'mysqlnduhconnection::queryreadresultsetheader' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'mysqlnd_stmt' => 'mysqlnd_statement', ), - 'MysqlndUhConnection::reapQuery' => + 'mysqlnduhconnection::reapquery' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::refreshServer' => + 'mysqlnduhconnection::refreshserver' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'options' => 'int', ), - 'MysqlndUhConnection::restartPSession' => + 'mysqlnduhconnection::restartpsession' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::selectDb' => + 'mysqlnduhconnection::selectdb' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'database' => 'string', ), - 'MysqlndUhConnection::sendClose' => + 'mysqlnduhconnection::sendclose' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::sendQuery' => + 'mysqlnduhconnection::sendquery' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'query' => 'string', ), - 'MysqlndUhConnection::serverDumpDebugInformation' => + 'mysqlnduhconnection::serverdumpdebuginformation' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::setAutocommit' => + 'mysqlnduhconnection::setautocommit' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'mode' => 'int', ), - 'MysqlndUhConnection::setCharset' => + 'mysqlnduhconnection::setcharset' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'charset' => 'string', ), - 'MysqlndUhConnection::setClientOption' => + 'mysqlnduhconnection::setclientoption' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'option' => 'int', 'value' => 'int', ), - 'MysqlndUhConnection::setServerOption' => + 'mysqlnduhconnection::setserveroption' => array ( 0 => 'void', 'connection' => 'mysqlnd_connection', 'option' => 'int', ), - 'MysqlndUhConnection::shutdownServer' => + 'mysqlnduhconnection::shutdownserver' => array ( 0 => 'void', 'MYSQLND_UH_RES_MYSQLND_NAME' => 'string', 'level' => 'string', ), - 'MysqlndUhConnection::simpleCommand' => + 'mysqlnduhconnection::simplecommand' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', @@ -42763,7 +42763,7 @@ 'silent' => 'bool', 'ignore_upsert_status' => 'bool', ), - 'MysqlndUhConnection::simpleCommandHandleResponse' => + 'mysqlnduhconnection::simplecommandhandleresponse' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', @@ -42772,7 +42772,7 @@ 'command' => 'int', 'ignore_upsert_status' => 'bool', ), - 'MysqlndUhConnection::sslSet' => + 'mysqlnduhconnection::sslset' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', @@ -42782,41 +42782,41 @@ 'capath' => 'string', 'cipher' => 'string', ), - 'MysqlndUhConnection::stmtInit' => + 'mysqlnduhconnection::stmtinit' => array ( 0 => 'resource', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::storeResult' => + 'mysqlnduhconnection::storeresult' => array ( 0 => 'resource', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::txCommit' => + 'mysqlnduhconnection::txcommit' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::txRollback' => + 'mysqlnduhconnection::txrollback' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::useResult' => + 'mysqlnduhconnection::useresult' => array ( 0 => 'resource', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhPreparedStatement::__construct' => + 'mysqlnduhpreparedstatement::__construct' => array ( 0 => 'void', ), - 'MysqlndUhPreparedStatement::execute' => + 'mysqlnduhpreparedstatement::execute' => array ( 0 => 'bool', 'statement' => 'mysqlnd_prepared_statement', ), - 'MysqlndUhPreparedStatement::prepare' => + 'mysqlnduhpreparedstatement::prepare' => array ( 0 => 'bool', 'statement' => 'mysqlnd_prepared_statement', @@ -42969,48 +42969,48 @@ 0 => 'false|string', 'item' => 'int', ), - 'NoRewindIterator::__construct' => + 'norewinditerator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', ), - 'NoRewindIterator::current' => + 'norewinditerator::current' => array ( 0 => 'mixed', ), - 'NoRewindIterator::getInnerIterator' => + 'norewinditerator::getinneriterator' => array ( 0 => 'Iterator|null', ), - 'NoRewindIterator::key' => + 'norewinditerator::key' => array ( 0 => 'mixed', ), - 'NoRewindIterator::next' => + 'norewinditerator::next' => array ( 0 => 'void', ), - 'NoRewindIterator::rewind' => + 'norewinditerator::rewind' => array ( 0 => 'void', ), - 'NoRewindIterator::valid' => + 'norewinditerator::valid' => array ( 0 => 'bool', ), - 'Normalizer::getRawDecomposition' => + 'normalizer::getrawdecomposition' => array ( 0 => 'null|string', 'string' => 'string', 'form=' => 'int', ), - 'Normalizer::isNormalized' => + 'normalizer::isnormalized' => array ( 0 => 'bool', 'string' => 'string', 'form=' => 'int', ), - 'Normalizer::normalize' => + 'normalizer::normalize' => array ( 0 => 'false|string', 'string' => 'string', @@ -43146,96 +43146,96 @@ 'decimal_separator=' => 'null|string', 'thousands_separator=' => 'null|string', ), - 'NumberFormatter::__construct' => + 'numberformatter::__construct' => array ( 0 => 'void', 'locale' => 'string', 'style' => 'int', 'pattern=' => 'null|string', ), - 'NumberFormatter::create' => + 'numberformatter::create' => array ( 0 => 'NumberFormatter|null', 'locale' => 'string', 'style' => 'int', 'pattern=' => 'null|string', ), - 'NumberFormatter::format' => + 'numberformatter::format' => array ( 0 => 'false|string', 'num' => 'float|int', 'type=' => 'int', ), - 'NumberFormatter::formatCurrency' => + 'numberformatter::formatcurrency' => array ( 0 => 'false|string', 'amount' => 'float', 'currency' => 'string', ), - 'NumberFormatter::getAttribute' => + 'numberformatter::getattribute' => array ( 0 => 'false|float|int', 'attribute' => 'int', ), - 'NumberFormatter::getErrorCode' => + 'numberformatter::geterrorcode' => array ( 0 => 'int', ), - 'NumberFormatter::getErrorMessage' => + 'numberformatter::geterrormessage' => array ( 0 => 'string', ), - 'NumberFormatter::getLocale' => + 'numberformatter::getlocale' => array ( 0 => 'string', 'type=' => 'int', ), - 'NumberFormatter::getPattern' => + 'numberformatter::getpattern' => array ( 0 => 'false|string', ), - 'NumberFormatter::getSymbol' => + 'numberformatter::getsymbol' => array ( 0 => 'false|string', 'symbol' => 'int', ), - 'NumberFormatter::getTextAttribute' => + 'numberformatter::gettextattribute' => array ( 0 => 'false|string', 'attribute' => 'int', ), - 'NumberFormatter::parse' => + 'numberformatter::parse' => array ( 0 => 'false|float|int', 'string' => 'string', 'type=' => 'int', '&rw_offset=' => 'int', ), - 'NumberFormatter::parseCurrency' => + 'numberformatter::parsecurrency' => array ( 0 => 'false|float', 'string' => 'string', '&w_currency' => 'string', '&rw_offset=' => 'int', ), - 'NumberFormatter::setAttribute' => + 'numberformatter::setattribute' => array ( 0 => 'bool', 'attribute' => 'int', 'value' => 'float|int', ), - 'NumberFormatter::setPattern' => + 'numberformatter::setpattern' => array ( 0 => 'bool', 'pattern' => 'string', ), - 'NumberFormatter::setSymbol' => + 'numberformatter::setsymbol' => array ( 0 => 'bool', 'symbol' => 'int', 'value' => 'string', ), - 'NumberFormatter::setTextAttribute' => + 'numberformatter::settextattribute' => array ( 0 => 'bool', 'attribute' => 'int', @@ -43344,7 +43344,7 @@ 'attribute' => 'int', 'value' => 'string', ), - 'OAuth::__construct' => + 'oauth::__construct' => array ( 0 => 'void', 'consumer_key' => 'string', @@ -43352,31 +43352,31 @@ 'signature_method=' => 'string', 'auth_type=' => 'int', ), - 'OAuth::disableDebug' => + 'oauth::disabledebug' => array ( 0 => 'bool', ), - 'OAuth::disableRedirects' => + 'oauth::disableredirects' => array ( 0 => 'bool', ), - 'OAuth::disableSSLChecks' => + 'oauth::disablesslchecks' => array ( 0 => 'bool', ), - 'OAuth::enableDebug' => + 'oauth::enabledebug' => array ( 0 => 'bool', ), - 'OAuth::enableRedirects' => + 'oauth::enableredirects' => array ( 0 => 'bool', ), - 'OAuth::enableSSLChecks' => + 'oauth::enablesslchecks' => array ( 0 => 'bool', ), - 'OAuth::fetch' => + 'oauth::fetch' => array ( 0 => 'mixed', 'protected_resource_url' => 'string', @@ -43384,14 +43384,14 @@ 'http_method=' => 'string', 'http_headers=' => 'array', ), - 'OAuth::generateSignature' => + 'oauth::generatesignature' => array ( 0 => 'string', 'http_method' => 'string', 'url' => 'string', 'extra_parameters=' => 'mixed', ), - 'OAuth::getAccessToken' => + 'oauth::getaccesstoken' => array ( 0 => 'array|false', 'access_token_url' => 'string', @@ -43399,84 +43399,84 @@ 'verifier_token=' => 'string', 'http_method=' => 'string', ), - 'OAuth::getCAPath' => + 'oauth::getcapath' => array ( 0 => 'array', ), - 'OAuth::getLastResponse' => + 'oauth::getlastresponse' => array ( 0 => 'string', ), - 'OAuth::getLastResponseHeaders' => + 'oauth::getlastresponseheaders' => array ( 0 => 'false|string', ), - 'OAuth::getLastResponseInfo' => + 'oauth::getlastresponseinfo' => array ( 0 => 'array', ), - 'OAuth::getRequestHeader' => + 'oauth::getrequestheader' => array ( 0 => 'false|string', 'http_method' => 'string', 'url' => 'string', 'extra_parameters=' => 'mixed', ), - 'OAuth::getRequestToken' => + 'oauth::getrequesttoken' => array ( 0 => 'array|false', 'request_token_url' => 'string', 'callback_url=' => 'string', 'http_method=' => 'string', ), - 'OAuth::setAuthType' => + 'oauth::setauthtype' => array ( 0 => 'bool', 'auth_type' => 'int', ), - 'OAuth::setCAPath' => + 'oauth::setcapath' => array ( 0 => 'mixed', 'ca_path=' => 'string', 'ca_info=' => 'string', ), - 'OAuth::setNonce' => + 'oauth::setnonce' => array ( 0 => 'mixed', 'nonce' => 'string', ), - 'OAuth::setRequestEngine' => + 'oauth::setrequestengine' => array ( 0 => 'void', 'reqengine' => 'int', ), - 'OAuth::setRSACertificate' => + 'oauth::setrsacertificate' => array ( 0 => 'mixed', 'cert' => 'string', ), - 'OAuth::setSSLChecks' => + 'oauth::setsslchecks' => array ( 0 => 'bool', 'sslcheck' => 'int', ), - 'OAuth::setTimeout' => + 'oauth::settimeout' => array ( 0 => 'void', 'timeout' => 'int', ), - 'OAuth::setTimestamp' => + 'oauth::settimestamp' => array ( 0 => 'mixed', 'timestamp' => 'string', ), - 'OAuth::setToken' => + 'oauth::settoken' => array ( 0 => 'bool', 'token' => 'string', 'token_secret' => 'string', ), - 'OAuth::setVersion' => + 'oauth::setversion' => array ( 0 => 'bool', 'version' => 'string', @@ -43493,83 +43493,83 @@ 0 => 'string', 'uri' => 'string', ), - 'OAuthProvider::__construct' => + 'oauthprovider::__construct' => array ( 0 => 'void', 'params_array=' => 'array', ), - 'OAuthProvider::addRequiredParameter' => + 'oauthprovider::addrequiredparameter' => array ( 0 => 'bool', 'req_params' => 'string', ), - 'OAuthProvider::callconsumerHandler' => + 'oauthprovider::callconsumerhandler' => array ( 0 => 'void', ), - 'OAuthProvider::callTimestampNonceHandler' => + 'oauthprovider::calltimestampnoncehandler' => array ( 0 => 'void', ), - 'OAuthProvider::calltokenHandler' => + 'oauthprovider::calltokenhandler' => array ( 0 => 'void', ), - 'OAuthProvider::checkOAuthRequest' => + 'oauthprovider::checkoauthrequest' => array ( 0 => 'void', 'uri=' => 'string', 'method=' => 'string', ), - 'OAuthProvider::consumerHandler' => + 'oauthprovider::consumerhandler' => array ( 0 => 'void', 'callback_function' => 'callable', ), - 'OAuthProvider::generateToken' => + 'oauthprovider::generatetoken' => array ( 0 => 'string', 'size' => 'int', 'strong=' => 'bool', ), - 'OAuthProvider::is2LeggedEndpoint' => + 'oauthprovider::is2leggedendpoint' => array ( 0 => 'void', 'params_array' => 'mixed', ), - 'OAuthProvider::isRequestTokenEndpoint' => + 'oauthprovider::isrequesttokenendpoint' => array ( 0 => 'void', 'will_issue_request_token' => 'bool', ), - 'OAuthProvider::removeRequiredParameter' => + 'oauthprovider::removerequiredparameter' => array ( 0 => 'bool', 'req_params' => 'string', ), - 'OAuthProvider::reportProblem' => + 'oauthprovider::reportproblem' => array ( 0 => 'string', 'oauthexception' => 'string', 'send_headers=' => 'bool', ), - 'OAuthProvider::setParam' => + 'oauthprovider::setparam' => array ( 0 => 'bool', 'param_key' => 'string', 'param_val=' => 'mixed', ), - 'OAuthProvider::setRequestTokenPath' => + 'oauthprovider::setrequesttokenpath' => array ( 0 => 'bool', 'path' => 'string', ), - 'OAuthProvider::timestampNonceHandler' => + 'oauthprovider::timestampnoncehandler' => array ( 0 => 'void', 'callback_function' => 'callable', ), - 'OAuthProvider::tokenHandler' => + 'oauthprovider::tokenhandler' => array ( 0 => 'void', 'callback_function' => 'callable', @@ -43700,40 +43700,40 @@ 0 => 'bool', 'connection' => 'resource', ), - 'OCICollection::append' => + 'ocicollection::append' => array ( 0 => 'bool', 'value' => 'mixed', ), - 'OCICollection::assign' => + 'ocicollection::assign' => array ( 0 => 'bool', 'from' => 'OCI_Collection', ), - 'OCICollection::assignElem' => + 'ocicollection::assignelem' => array ( 0 => 'bool', 'index' => 'int', 'value' => 'mixed', ), - 'OCICollection::free' => + 'ocicollection::free' => array ( 0 => 'bool', ), - 'OCICollection::getElem' => + 'ocicollection::getelem' => array ( 0 => 'mixed', 'index' => 'int', ), - 'OCICollection::max' => + 'ocicollection::max' => array ( 0 => 'false|int', ), - 'OCICollection::size' => + 'ocicollection::size' => array ( 0 => 'false|int', ), - 'OCICollection::trim' => + 'ocicollection::trim' => array ( 0 => 'bool', 'num' => 'int', @@ -43915,111 +43915,111 @@ 0 => 'void', 'onoff' => 'bool', ), - 'OCILob::append' => + 'ocilob::append' => array ( 0 => 'bool', 'lob_from' => 'OCILob', ), - 'OCILob::close' => + 'ocilob::close' => array ( 0 => 'bool', ), - 'OCILob::eof' => + 'ocilob::eof' => array ( 0 => 'bool', ), - 'OCILob::erase' => + 'ocilob::erase' => array ( 0 => 'false|int', 'offset=' => 'int', 'length=' => 'int', ), - 'OCILob::export' => + 'ocilob::export' => array ( 0 => 'bool', 'filename' => 'string', 'start=' => 'int', 'length=' => 'int', ), - 'OCILob::flush' => + 'ocilob::flush' => array ( 0 => 'bool', 'flag=' => 'int', ), - 'OCILob::free' => + 'ocilob::free' => array ( 0 => 'bool', ), - 'OCILob::getbuffering' => + 'ocilob::getbuffering' => array ( 0 => 'bool', ), - 'OCILob::import' => + 'ocilob::import' => array ( 0 => 'bool', 'filename' => 'string', ), - 'OCILob::load' => + 'ocilob::load' => array ( 0 => 'false|string', ), - 'OCILob::read' => + 'ocilob::read' => array ( 0 => 'false|string', 'length' => 'int', ), - 'OCILob::rewind' => + 'ocilob::rewind' => array ( 0 => 'bool', ), - 'OCILob::save' => + 'ocilob::save' => array ( 0 => 'bool', 'data' => 'string', 'offset=' => 'int', ), - 'OCILob::savefile' => + 'ocilob::savefile' => array ( 0 => 'bool', 'filename' => 'mixed', ), - 'OCILob::seek' => + 'ocilob::seek' => array ( 0 => 'bool', 'offset' => 'int', 'whence=' => 'int', ), - 'OCILob::setbuffering' => + 'ocilob::setbuffering' => array ( 0 => 'bool', 'on_off' => 'bool', ), - 'OCILob::size' => + 'ocilob::size' => array ( 0 => 'false|int', ), - 'OCILob::tell' => + 'ocilob::tell' => array ( 0 => 'false|int', ), - 'OCILob::truncate' => + 'ocilob::truncate' => array ( 0 => 'bool', 'length=' => 'int', ), - 'OCILob::write' => + 'ocilob::write' => array ( 0 => 'false|int', 'data' => 'string', 'length=' => 'int', ), - 'OCILob::writeTemporary' => + 'ocilob::writetemporary' => array ( 0 => 'bool', 'data' => 'string', 'lob_type=' => 'int', ), - 'OCILob::writetofile' => + 'ocilob::writetofile' => array ( 0 => 'bool', 'filename' => 'mixed', @@ -45164,105 +45164,105 @@ 0 => 'int<0, 255>', 'character' => 'string', ), - 'OuterIterator::current' => + 'outeriterator::current' => array ( 0 => 'mixed', ), - 'OuterIterator::getInnerIterator' => + 'outeriterator::getinneriterator' => array ( 0 => 'Iterator|null', ), - 'OuterIterator::key' => + 'outeriterator::key' => array ( 0 => 'int|string', ), - 'OuterIterator::next' => + 'outeriterator::next' => array ( 0 => 'void', ), - 'OuterIterator::rewind' => + 'outeriterator::rewind' => array ( 0 => 'void', ), - 'OuterIterator::valid' => + 'outeriterator::valid' => array ( 0 => 'bool', ), - 'OutOfBoundsException::__construct' => + 'outofboundsexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'OutOfBoundsException::__toString' => + 'outofboundsexception::__tostring' => array ( 0 => 'string', ), - 'OutOfBoundsException::getCode' => + 'outofboundsexception::getcode' => array ( 0 => 'int', ), - 'OutOfBoundsException::getFile' => + 'outofboundsexception::getfile' => array ( 0 => 'string', ), - 'OutOfBoundsException::getLine' => + 'outofboundsexception::getline' => array ( 0 => 'int', ), - 'OutOfBoundsException::getMessage' => + 'outofboundsexception::getmessage' => array ( 0 => 'string', ), - 'OutOfBoundsException::getPrevious' => + 'outofboundsexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'OutOfBoundsException::getTrace' => + 'outofboundsexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'OutOfBoundsException::getTraceAsString' => + 'outofboundsexception::gettraceasstring' => array ( 0 => 'string', ), - 'OutOfRangeException::__construct' => + 'outofrangeexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'OutOfRangeException::__toString' => + 'outofrangeexception::__tostring' => array ( 0 => 'string', ), - 'OutOfRangeException::getCode' => + 'outofrangeexception::getcode' => array ( 0 => 'int', ), - 'OutOfRangeException::getFile' => + 'outofrangeexception::getfile' => array ( 0 => 'string', ), - 'OutOfRangeException::getLine' => + 'outofrangeexception::getline' => array ( 0 => 'int', ), - 'OutOfRangeException::getMessage' => + 'outofrangeexception::getmessage' => array ( 0 => 'string', ), - 'OutOfRangeException::getPrevious' => + 'outofrangeexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'OutOfRangeException::getTrace' => + 'outofrangeexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'OutOfRangeException::getTraceAsString' => + 'outofrangeexception::gettraceasstring' => array ( 0 => 'string', ), @@ -45335,63 +45335,63 @@ array ( 0 => 'bool', ), - 'outputformatObj::getOption' => + 'outputformatobj::getoption' => array ( 0 => 'string', 'property_name' => 'string', ), - 'outputformatObj::set' => + 'outputformatobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'outputformatObj::setOption' => + 'outputformatobj::setoption' => array ( 0 => 'void', 'property_name' => 'string', 'new_value' => 'string', ), - 'outputformatObj::validate' => + 'outputformatobj::validate' => array ( 0 => 'int', ), - 'OverflowException::__construct' => + 'overflowexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'OverflowException::__toString' => + 'overflowexception::__tostring' => array ( 0 => 'string', ), - 'OverflowException::getCode' => + 'overflowexception::getcode' => array ( 0 => 'int', ), - 'OverflowException::getFile' => + 'overflowexception::getfile' => array ( 0 => 'string', ), - 'OverflowException::getLine' => + 'overflowexception::getline' => array ( 0 => 'int', ), - 'OverflowException::getMessage' => + 'overflowexception::getmessage' => array ( 0 => 'string', ), - 'OverflowException::getPrevious' => + 'overflowexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'OverflowException::getTrace' => + 'overflowexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'OverflowException::getTraceAsString' => + 'overflowexception::gettraceasstring' => array ( 0 => 'string', ), @@ -45407,36 +45407,36 @@ 'function_args' => 'string', 'function_code' => 'string', ), - 'OwsrequestObj::__construct' => + 'owsrequestobj::__construct' => array ( 0 => 'void', ), - 'OwsrequestObj::addParameter' => + 'owsrequestobj::addparameter' => array ( 0 => 'int', 'name' => 'string', 'value' => 'string', ), - 'OwsrequestObj::getName' => + 'owsrequestobj::getname' => array ( 0 => 'string', 'index' => 'int', ), - 'OwsrequestObj::getValue' => + 'owsrequestobj::getvalue' => array ( 0 => 'string', 'index' => 'int', ), - 'OwsrequestObj::getValueByName' => + 'owsrequestobj::getvaluebyname' => array ( 0 => 'string', 'name' => 'string', ), - 'OwsrequestObj::loadParams' => + 'owsrequestobj::loadparams' => array ( 0 => 'int', ), - 'OwsrequestObj::setParameter' => + 'owsrequestobj::setparameter' => array ( 0 => 'int', 'name' => 'string', @@ -45448,11 +45448,11 @@ 'format' => 'string', '...values=' => 'mixed', ), - 'parallel\\Future::done' => + 'parallel\\future::done' => array ( 0 => 'bool', ), - 'parallel\\Future::select' => + 'parallel\\future::select' => array ( 0 => 'mixed', '&resolving' => 'array', @@ -45461,320 +45461,320 @@ '&w_timedout=' => 'array', 'timeout=' => 'int', ), - 'parallel\\Future::value' => + 'parallel\\future::value' => array ( 0 => 'mixed', 'timeout=' => 'int', ), - 'parallel\\Runtime::__construct' => + 'parallel\\runtime::__construct' => array ( 0 => 'void', 'arg' => 'array|string', ), - 'parallel\\Runtime::__construct\'1' => + 'parallel\\runtime::__construct\'1' => array ( 0 => 'void', 'bootstrap' => 'string', 'configuration' => 'array', ), - 'parallel\\Runtime::close' => + 'parallel\\runtime::close' => array ( 0 => 'void', ), - 'parallel\\Runtime::kill' => + 'parallel\\runtime::kill' => array ( 0 => 'void', ), - 'parallel\\Runtime::run' => + 'parallel\\runtime::run' => array ( 0 => 'null|parallel\\Future', 'closure' => 'Closure', 'args=' => 'array', ), - 'ParentIterator::__construct' => + 'parentiterator::__construct' => array ( 0 => 'void', 'iterator' => 'RecursiveIterator', ), - 'ParentIterator::accept' => + 'parentiterator::accept' => array ( 0 => 'bool', ), - 'ParentIterator::getChildren' => + 'parentiterator::getchildren' => array ( 0 => 'ParentIterator|null', ), - 'ParentIterator::hasChildren' => + 'parentiterator::haschildren' => array ( 0 => 'bool', ), - 'ParentIterator::next' => + 'parentiterator::next' => array ( 0 => 'void', ), - 'ParentIterator::rewind' => + 'parentiterator::rewind' => array ( 0 => 'void', ), - 'ParentIterator::valid' => + 'parentiterator::valid' => array ( 0 => 'bool', ), - 'Parle\\Lexer::advance' => + 'parle\\lexer::advance' => array ( 0 => 'void', ), - 'Parle\\Lexer::build' => + 'parle\\lexer::build' => array ( 0 => 'void', ), - 'Parle\\Lexer::callout' => + 'parle\\lexer::callout' => array ( 0 => 'void', 'id' => 'int', 'callback' => 'callable', ), - 'Parle\\Lexer::consume' => + 'parle\\lexer::consume' => array ( 0 => 'void', 'data' => 'string', ), - 'Parle\\Lexer::dump' => + 'parle\\lexer::dump' => array ( 0 => 'void', ), - 'Parle\\Lexer::getToken' => + 'parle\\lexer::gettoken' => array ( 0 => 'Parle\\Token', ), - 'Parle\\Lexer::insertMacro' => + 'parle\\lexer::insertmacro' => array ( 0 => 'void', 'name' => 'string', 'regex' => 'string', ), - 'Parle\\Lexer::push' => + 'parle\\lexer::push' => array ( 0 => 'void', 'regex' => 'string', 'id' => 'int', ), - 'Parle\\Lexer::reset' => + 'parle\\lexer::reset' => array ( 0 => 'void', 'pos' => 'int', ), - 'Parle\\Parser::advance' => + 'parle\\parser::advance' => array ( 0 => 'void', ), - 'Parle\\Parser::build' => + 'parle\\parser::build' => array ( 0 => 'void', ), - 'Parle\\Parser::consume' => + 'parle\\parser::consume' => array ( 0 => 'void', 'data' => 'string', 'lexer' => 'Parle\\Lexer', ), - 'Parle\\Parser::dump' => + 'parle\\parser::dump' => array ( 0 => 'void', ), - 'Parle\\Parser::errorInfo' => + 'parle\\parser::errorinfo' => array ( 0 => 'Parle\\ErrorInfo', ), - 'Parle\\Parser::left' => + 'parle\\parser::left' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\Parser::nonassoc' => + 'parle\\parser::nonassoc' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\Parser::precedence' => + 'parle\\parser::precedence' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\Parser::push' => + 'parle\\parser::push' => array ( 0 => 'int', 'name' => 'string', 'rule' => 'string', ), - 'Parle\\Parser::reset' => + 'parle\\parser::reset' => array ( 0 => 'void', 'tokenId' => 'int', ), - 'Parle\\Parser::right' => + 'parle\\parser::right' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\Parser::sigil' => + 'parle\\parser::sigil' => array ( 0 => 'string', 'idx' => 'array', ), - 'Parle\\Parser::token' => + 'parle\\parser::token' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\Parser::tokenId' => + 'parle\\parser::tokenid' => array ( 0 => 'int', 'token' => 'string', ), - 'Parle\\Parser::trace' => + 'parle\\parser::trace' => array ( 0 => 'string', ), - 'Parle\\Parser::validate' => + 'parle\\parser::validate' => array ( 0 => 'bool', 'data' => 'string', 'lexer' => 'Parle\\Lexer', ), - 'Parle\\RLexer::advance' => + 'parle\\rlexer::advance' => array ( 0 => 'void', ), - 'Parle\\RLexer::build' => + 'parle\\rlexer::build' => array ( 0 => 'void', ), - 'Parle\\RLexer::callout' => + 'parle\\rlexer::callout' => array ( 0 => 'void', 'id' => 'int', 'callback' => 'callable', ), - 'Parle\\RLexer::consume' => + 'parle\\rlexer::consume' => array ( 0 => 'void', 'data' => 'string', ), - 'Parle\\RLexer::dump' => + 'parle\\rlexer::dump' => array ( 0 => 'void', ), - 'Parle\\RLexer::getToken' => + 'parle\\rlexer::gettoken' => array ( 0 => 'Parle\\Token', ), - 'parle\\rlexer::insertMacro' => + 'parle\\rlexer::insertmacro' => array ( 0 => 'void', 'name' => 'string', 'regex' => 'string', ), - 'Parle\\RLexer::push' => + 'parle\\rlexer::push' => array ( 0 => 'void', 'state' => 'string', 'regex' => 'string', 'newState' => 'string', ), - 'Parle\\RLexer::pushState' => + 'parle\\rlexer::pushstate' => array ( 0 => 'int', 'state' => 'string', ), - 'Parle\\RLexer::reset' => + 'parle\\rlexer::reset' => array ( 0 => 'void', 'pos' => 'int', ), - 'Parle\\RParser::advance' => + 'parle\\rparser::advance' => array ( 0 => 'void', ), - 'Parle\\RParser::build' => + 'parle\\rparser::build' => array ( 0 => 'void', ), - 'Parle\\RParser::consume' => + 'parle\\rparser::consume' => array ( 0 => 'void', 'data' => 'string', 'lexer' => 'Parle\\Lexer', ), - 'Parle\\RParser::dump' => + 'parle\\rparser::dump' => array ( 0 => 'void', ), - 'Parle\\RParser::errorInfo' => + 'parle\\rparser::errorinfo' => array ( 0 => 'Parle\\ErrorInfo', ), - 'Parle\\RParser::left' => + 'parle\\rparser::left' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\RParser::nonassoc' => + 'parle\\rparser::nonassoc' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\RParser::precedence' => + 'parle\\rparser::precedence' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\RParser::push' => + 'parle\\rparser::push' => array ( 0 => 'int', 'name' => 'string', 'rule' => 'string', ), - 'Parle\\RParser::reset' => + 'parle\\rparser::reset' => array ( 0 => 'void', 'tokenId' => 'int', ), - 'Parle\\RParser::right' => + 'parle\\rparser::right' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\RParser::sigil' => + 'parle\\rparser::sigil' => array ( 0 => 'string', 'idx' => 'array', ), - 'Parle\\RParser::token' => + 'parle\\rparser::token' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\RParser::tokenId' => + 'parle\\rparser::tokenid' => array ( 0 => 'int', 'token' => 'string', ), - 'Parle\\RParser::trace' => + 'parle\\rparser::trace' => array ( 0 => 'string', ), - 'Parle\\RParser::validate' => + 'parle\\rparser::validate' => array ( 0 => 'bool', 'data' => 'string', 'lexer' => 'Parle\\Lexer', ), - 'Parle\\Stack::pop' => + 'parle\\stack::pop' => array ( 0 => 'void', ), - 'Parle\\Stack::push' => + 'parle\\stack::push' => array ( 0 => 'void', 'item' => 'mixed', @@ -45805,42 +45805,42 @@ 'url' => 'string', 'component=' => 'int', ), - 'ParseError::__construct' => + 'parseerror::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'ParseError::__toString' => + 'parseerror::__tostring' => array ( 0 => 'string', ), - 'ParseError::getCode' => + 'parseerror::getcode' => array ( 0 => 'int', ), - 'ParseError::getFile' => + 'parseerror::getfile' => array ( 0 => 'string', ), - 'ParseError::getLine' => + 'parseerror::getline' => array ( 0 => 'int', ), - 'ParseError::getMessage' => + 'parseerror::getmessage' => array ( 0 => 'string', ), - 'ParseError::getPrevious' => + 'parseerror::getprevious' => array ( 0 => 'Throwable|null', ), - 'ParseError::getTrace' => + 'parseerror::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'ParseError::getTraceAsString' => + 'parseerror::gettraceasstring' => array ( 0 => 'string', ), @@ -46051,13 +46051,13 @@ 0 => 'int', 'status' => 'int', ), - 'PDF_activate_item' => + 'pdf_activate_item' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'id' => 'int', ), - 'PDF_add_launchlink' => + 'pdf_add_launchlink' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46067,7 +46067,7 @@ 'ury' => 'float', 'filename' => 'string', ), - 'PDF_add_locallink' => + 'pdf_add_locallink' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46078,14 +46078,14 @@ 'page' => 'int', 'dest' => 'string', ), - 'PDF_add_nameddest' => + 'pdf_add_nameddest' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'name' => 'string', 'optlist' => 'string', ), - 'PDF_add_note' => + 'pdf_add_note' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46098,7 +46098,7 @@ 'icon' => 'string', 'open' => 'int', ), - 'PDF_add_pdflink' => + 'pdf_add_pdflink' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46110,7 +46110,7 @@ 'page' => 'int', 'dest' => 'string', ), - 'PDF_add_table_cell' => + 'pdf_add_table_cell' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -46120,7 +46120,7 @@ 'text' => 'string', 'optlist' => 'string', ), - 'PDF_add_textflow' => + 'pdf_add_textflow' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -46128,13 +46128,13 @@ 'text' => 'string', 'optlist' => 'string', ), - 'PDF_add_thumbnail' => + 'pdf_add_thumbnail' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'image' => 'int', ), - 'PDF_add_weblink' => + 'pdf_add_weblink' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46144,7 +46144,7 @@ 'upperrighty' => 'float', 'url' => 'string', ), - 'PDF_arc' => + 'pdf_arc' => array ( 0 => 'bool', 'p' => 'resource', @@ -46154,7 +46154,7 @@ 'alpha' => 'float', 'beta' => 'float', ), - 'PDF_arcn' => + 'pdf_arcn' => array ( 0 => 'bool', 'p' => 'resource', @@ -46164,7 +46164,7 @@ 'alpha' => 'float', 'beta' => 'float', ), - 'PDF_attach_file' => + 'pdf_attach_file' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46178,14 +46178,14 @@ 'mimetype' => 'string', 'icon' => 'string', ), - 'PDF_begin_document' => + 'pdf_begin_document' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'filename' => 'string', 'optlist' => 'string', ), - 'PDF_begin_font' => + 'pdf_begin_font' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46198,7 +46198,7 @@ 'f' => 'float', 'optlist' => 'string', ), - 'PDF_begin_glyph' => + 'pdf_begin_glyph' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46209,27 +46209,27 @@ 'urx' => 'float', 'ury' => 'float', ), - 'PDF_begin_item' => + 'pdf_begin_item' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'tag' => 'string', 'optlist' => 'string', ), - 'PDF_begin_layer' => + 'pdf_begin_layer' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'layer' => 'int', ), - 'PDF_begin_page' => + 'pdf_begin_page' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'width' => 'float', 'height' => 'float', ), - 'PDF_begin_page_ext' => + 'pdf_begin_page_ext' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46237,7 +46237,7 @@ 'height' => 'float', 'optlist' => 'string', ), - 'PDF_begin_pattern' => + 'pdf_begin_pattern' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -46247,14 +46247,14 @@ 'ystep' => 'float', 'painttype' => 'int', ), - 'PDF_begin_template' => + 'pdf_begin_template' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'width' => 'float', 'height' => 'float', ), - 'PDF_begin_template_ext' => + 'pdf_begin_template_ext' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -46262,7 +46262,7 @@ 'height' => 'float', 'optlist' => 'string', ), - 'PDF_circle' => + 'pdf_circle' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46270,50 +46270,50 @@ 'y' => 'float', 'r' => 'float', ), - 'PDF_clip' => + 'pdf_clip' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_close' => + 'pdf_close' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_close_image' => + 'pdf_close_image' => array ( 0 => 'bool', 'p' => 'resource', 'image' => 'int', ), - 'PDF_close_pdi' => + 'pdf_close_pdi' => array ( 0 => 'bool', 'p' => 'resource', 'doc' => 'int', ), - 'PDF_close_pdi_page' => + 'pdf_close_pdi_page' => array ( 0 => 'bool', 'p' => 'resource', 'page' => 'int', ), - 'PDF_closepath' => + 'pdf_closepath' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_closepath_fill_stroke' => + 'pdf_closepath_fill_stroke' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_closepath_stroke' => + 'pdf_closepath_stroke' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_concat' => + 'pdf_concat' => array ( 0 => 'bool', 'p' => 'resource', @@ -46324,27 +46324,27 @@ 'e' => 'float', 'f' => 'float', ), - 'PDF_continue_text' => + 'pdf_continue_text' => array ( 0 => 'bool', 'p' => 'resource', 'text' => 'string', ), - 'PDF_create_3dview' => + 'pdf_create_3dview' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'username' => 'string', 'optlist' => 'string', ), - 'PDF_create_action' => + 'pdf_create_action' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'type' => 'string', 'optlist' => 'string', ), - 'PDF_create_annotation' => + 'pdf_create_annotation' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46355,14 +46355,14 @@ 'type' => 'string', 'optlist' => 'string', ), - 'PDF_create_bookmark' => + 'pdf_create_bookmark' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'text' => 'string', 'optlist' => 'string', ), - 'PDF_create_field' => + 'pdf_create_field' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46374,20 +46374,20 @@ 'type' => 'string', 'optlist' => 'string', ), - 'PDF_create_fieldgroup' => + 'pdf_create_fieldgroup' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'name' => 'string', 'optlist' => 'string', ), - 'PDF_create_gstate' => + 'pdf_create_gstate' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'optlist' => 'string', ), - 'PDF_create_pvf' => + 'pdf_create_pvf' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46395,14 +46395,14 @@ 'data' => 'string', 'optlist' => 'string', ), - 'PDF_create_textflow' => + 'pdf_create_textflow' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'text' => 'string', 'optlist' => 'string', ), - 'PDF_curveto' => + 'pdf_curveto' => array ( 0 => 'bool', 'p' => 'resource', @@ -46413,38 +46413,38 @@ 'x3' => 'float', 'y3' => 'float', ), - 'PDF_define_layer' => + 'pdf_define_layer' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'name' => 'string', 'optlist' => 'string', ), - 'PDF_delete' => + 'pdf_delete' => array ( 0 => 'bool', 'pdfdoc' => 'resource', ), - 'PDF_delete_pvf' => + 'pdf_delete_pvf' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'filename' => 'string', ), - 'PDF_delete_table' => + 'pdf_delete_table' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'table' => 'int', 'optlist' => 'string', ), - 'PDF_delete_textflow' => + 'pdf_delete_textflow' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'textflow' => 'int', ), - 'PDF_encoding_set_char' => + 'pdf_encoding_set_char' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46453,65 +46453,65 @@ 'glyphname' => 'string', 'uv' => 'int', ), - 'PDF_end_document' => + 'pdf_end_document' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'optlist' => 'string', ), - 'PDF_end_font' => + 'pdf_end_font' => array ( 0 => 'bool', 'pdfdoc' => 'resource', ), - 'PDF_end_glyph' => + 'pdf_end_glyph' => array ( 0 => 'bool', 'pdfdoc' => 'resource', ), - 'PDF_end_item' => + 'pdf_end_item' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'id' => 'int', ), - 'PDF_end_layer' => + 'pdf_end_layer' => array ( 0 => 'bool', 'pdfdoc' => 'resource', ), - 'PDF_end_page' => + 'pdf_end_page' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_end_page_ext' => + 'pdf_end_page_ext' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'optlist' => 'string', ), - 'PDF_end_pattern' => + 'pdf_end_pattern' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_end_template' => + 'pdf_end_template' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_endpath' => + 'pdf_endpath' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_fill' => + 'pdf_fill' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_fill_imageblock' => + 'pdf_fill_imageblock' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -46520,7 +46520,7 @@ 'image' => 'int', 'optlist' => 'string', ), - 'PDF_fill_pdfblock' => + 'pdf_fill_pdfblock' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -46529,12 +46529,12 @@ 'contents' => 'int', 'optlist' => 'string', ), - 'PDF_fill_stroke' => + 'pdf_fill_stroke' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_fill_textblock' => + 'pdf_fill_textblock' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -46543,7 +46543,7 @@ 'text' => 'string', 'optlist' => 'string', ), - 'PDF_findfont' => + 'pdf_findfont' => array ( 0 => 'int', 'p' => 'resource', @@ -46551,7 +46551,7 @@ 'encoding' => 'string', 'embed' => 'int', ), - 'PDF_fit_image' => + 'pdf_fit_image' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46560,7 +46560,7 @@ 'y' => 'float', 'optlist' => 'string', ), - 'PDF_fit_pdi_page' => + 'pdf_fit_pdi_page' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46569,7 +46569,7 @@ 'y' => 'float', 'optlist' => 'string', ), - 'PDF_fit_table' => + 'pdf_fit_table' => array ( 0 => 'string', 'pdfdoc' => 'resource', @@ -46580,7 +46580,7 @@ 'ury' => 'float', 'optlist' => 'string', ), - 'PDF_fit_textflow' => + 'pdf_fit_textflow' => array ( 0 => 'string', 'pdfdoc' => 'resource', @@ -46591,7 +46591,7 @@ 'ury' => 'float', 'optlist' => 'string', ), - 'PDF_fit_textline' => + 'pdf_fit_textline' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46600,42 +46600,42 @@ 'y' => 'float', 'optlist' => 'string', ), - 'PDF_get_apiname' => + 'pdf_get_apiname' => array ( 0 => 'string', 'pdfdoc' => 'resource', ), - 'PDF_get_buffer' => + 'pdf_get_buffer' => array ( 0 => 'string', 'p' => 'resource', ), - 'PDF_get_errmsg' => + 'pdf_get_errmsg' => array ( 0 => 'string', 'pdfdoc' => 'resource', ), - 'PDF_get_errnum' => + 'pdf_get_errnum' => array ( 0 => 'int', 'pdfdoc' => 'resource', ), - 'PDF_get_majorversion' => + 'pdf_get_majorversion' => array ( 0 => 'int', ), - 'PDF_get_minorversion' => + 'pdf_get_minorversion' => array ( 0 => 'int', ), - 'PDF_get_parameter' => + 'pdf_get_parameter' => array ( 0 => 'string', 'p' => 'resource', 'key' => 'string', 'modifier' => 'float', ), - 'PDF_get_pdi_parameter' => + 'pdf_get_pdi_parameter' => array ( 0 => 'string', 'p' => 'resource', @@ -46644,7 +46644,7 @@ 'page' => 'int', 'reserved' => 'int', ), - 'PDF_get_pdi_value' => + 'pdf_get_pdi_value' => array ( 0 => 'float', 'p' => 'resource', @@ -46653,14 +46653,14 @@ 'page' => 'int', 'reserved' => 'int', ), - 'PDF_get_value' => + 'pdf_get_value' => array ( 0 => 'float', 'p' => 'resource', 'key' => 'string', 'modifier' => 'float', ), - 'PDF_info_font' => + 'pdf_info_font' => array ( 0 => 'float', 'pdfdoc' => 'resource', @@ -46668,7 +46668,7 @@ 'keyword' => 'string', 'optlist' => 'string', ), - 'PDF_info_matchbox' => + 'pdf_info_matchbox' => array ( 0 => 'float', 'pdfdoc' => 'resource', @@ -46676,21 +46676,21 @@ 'num' => 'int', 'keyword' => 'string', ), - 'PDF_info_table' => + 'pdf_info_table' => array ( 0 => 'float', 'pdfdoc' => 'resource', 'table' => 'int', 'keyword' => 'string', ), - 'PDF_info_textflow' => + 'pdf_info_textflow' => array ( 0 => 'float', 'pdfdoc' => 'resource', 'textflow' => 'int', 'keyword' => 'string', ), - 'PDF_info_textline' => + 'pdf_info_textline' => array ( 0 => 'float', 'pdfdoc' => 'resource', @@ -46698,26 +46698,26 @@ 'keyword' => 'string', 'optlist' => 'string', ), - 'PDF_initgraphics' => + 'pdf_initgraphics' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_lineto' => + 'pdf_lineto' => array ( 0 => 'bool', 'p' => 'resource', 'x' => 'float', 'y' => 'float', ), - 'PDF_load_3ddata' => + 'pdf_load_3ddata' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'filename' => 'string', 'optlist' => 'string', ), - 'PDF_load_font' => + 'pdf_load_font' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -46725,14 +46725,14 @@ 'encoding' => 'string', 'optlist' => 'string', ), - 'PDF_load_iccprofile' => + 'pdf_load_iccprofile' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'profilename' => 'string', 'optlist' => 'string', ), - 'PDF_load_image' => + 'pdf_load_image' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -46740,24 +46740,24 @@ 'filename' => 'string', 'optlist' => 'string', ), - 'PDF_makespotcolor' => + 'pdf_makespotcolor' => array ( 0 => 'int', 'p' => 'resource', 'spotname' => 'string', ), - 'PDF_moveto' => + 'pdf_moveto' => array ( 0 => 'bool', 'p' => 'resource', 'x' => 'float', 'y' => 'float', ), - 'PDF_new' => + 'pdf_new' => array ( 0 => 'resource', ), - 'PDF_open_ccitt' => + 'pdf_open_ccitt' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -46768,13 +46768,13 @@ 'k' => 'int', 'blackls1' => 'int', ), - 'PDF_open_file' => + 'pdf_open_file' => array ( 0 => 'bool', 'p' => 'resource', 'filename' => 'string', ), - 'PDF_open_image' => + 'pdf_open_image' => array ( 0 => 'int', 'p' => 'resource', @@ -46788,7 +46788,7 @@ 'bpc' => 'int', 'params' => 'string', ), - 'PDF_open_image_file' => + 'pdf_open_image_file' => array ( 0 => 'int', 'p' => 'resource', @@ -46797,13 +46797,13 @@ 'stringparam' => 'string', 'intparam' => 'int', ), - 'PDF_open_memory_image' => + 'pdf_open_memory_image' => array ( 0 => 'int', 'p' => 'resource', 'image' => 'resource', ), - 'PDF_open_pdi' => + 'pdf_open_pdi' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -46811,14 +46811,14 @@ 'optlist' => 'string', 'length' => 'int', ), - 'PDF_open_pdi_document' => + 'pdf_open_pdi_document' => array ( 0 => 'int', 'p' => 'resource', 'filename' => 'string', 'optlist' => 'string', ), - 'PDF_open_pdi_page' => + 'pdf_open_pdi_page' => array ( 0 => 'int', 'p' => 'resource', @@ -46826,14 +46826,14 @@ 'pagenumber' => 'int', 'optlist' => 'string', ), - 'PDF_pcos_get_number' => + 'pdf_pcos_get_number' => array ( 0 => 'float', 'p' => 'resource', 'doc' => 'int', 'path' => 'string', ), - 'PDF_pcos_get_stream' => + 'pdf_pcos_get_stream' => array ( 0 => 'string', 'p' => 'resource', @@ -46841,14 +46841,14 @@ 'optlist' => 'string', 'path' => 'string', ), - 'PDF_pcos_get_string' => + 'pdf_pcos_get_string' => array ( 0 => 'string', 'p' => 'resource', 'doc' => 'int', 'path' => 'string', ), - 'PDF_place_image' => + 'pdf_place_image' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46857,7 +46857,7 @@ 'y' => 'float', 'scale' => 'float', ), - 'PDF_place_pdi_page' => + 'pdf_place_pdi_page' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -46867,7 +46867,7 @@ 'sx' => 'float', 'sy' => 'float', ), - 'PDF_process_pdi' => + 'pdf_process_pdi' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -46875,7 +46875,7 @@ 'page' => 'int', 'optlist' => 'string', ), - 'PDF_rect' => + 'pdf_rect' => array ( 0 => 'bool', 'p' => 'resource', @@ -46884,36 +46884,36 @@ 'width' => 'float', 'height' => 'float', ), - 'PDF_restore' => + 'pdf_restore' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_resume_page' => + 'pdf_resume_page' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'optlist' => 'string', ), - 'PDF_rotate' => + 'pdf_rotate' => array ( 0 => 'bool', 'p' => 'resource', 'phi' => 'float', ), - 'PDF_save' => + 'pdf_save' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_scale' => + 'pdf_scale' => array ( 0 => 'bool', 'p' => 'resource', 'sx' => 'float', 'sy' => 'float', ), - 'PDF_set_border_color' => + 'pdf_set_border_color' => array ( 0 => 'bool', 'p' => 'resource', @@ -46921,62 +46921,62 @@ 'green' => 'float', 'blue' => 'float', ), - 'PDF_set_border_dash' => + 'pdf_set_border_dash' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'black' => 'float', 'white' => 'float', ), - 'PDF_set_border_style' => + 'pdf_set_border_style' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'style' => 'string', 'width' => 'float', ), - 'PDF_set_gstate' => + 'pdf_set_gstate' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'gstate' => 'int', ), - 'PDF_set_info' => + 'pdf_set_info' => array ( 0 => 'bool', 'p' => 'resource', 'key' => 'string', 'value' => 'string', ), - 'PDF_set_layer_dependency' => + 'pdf_set_layer_dependency' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'type' => 'string', 'optlist' => 'string', ), - 'PDF_set_parameter' => + 'pdf_set_parameter' => array ( 0 => 'bool', 'p' => 'resource', 'key' => 'string', 'value' => 'string', ), - 'PDF_set_text_pos' => + 'pdf_set_text_pos' => array ( 0 => 'bool', 'p' => 'resource', 'x' => 'float', 'y' => 'float', ), - 'PDF_set_value' => + 'pdf_set_value' => array ( 0 => 'bool', 'p' => 'resource', 'key' => 'string', 'value' => 'float', ), - 'PDF_setcolor' => + 'pdf_setcolor' => array ( 0 => 'bool', 'p' => 'resource', @@ -46987,69 +46987,69 @@ 'c3' => 'float', 'c4' => 'float', ), - 'PDF_setdash' => + 'pdf_setdash' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'b' => 'float', 'w' => 'float', ), - 'PDF_setdashpattern' => + 'pdf_setdashpattern' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'optlist' => 'string', ), - 'PDF_setflat' => + 'pdf_setflat' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'flatness' => 'float', ), - 'PDF_setfont' => + 'pdf_setfont' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'font' => 'int', 'fontsize' => 'float', ), - 'PDF_setgray' => + 'pdf_setgray' => array ( 0 => 'bool', 'p' => 'resource', 'g' => 'float', ), - 'PDF_setgray_fill' => + 'pdf_setgray_fill' => array ( 0 => 'bool', 'p' => 'resource', 'g' => 'float', ), - 'PDF_setgray_stroke' => + 'pdf_setgray_stroke' => array ( 0 => 'bool', 'p' => 'resource', 'g' => 'float', ), - 'PDF_setlinecap' => + 'pdf_setlinecap' => array ( 0 => 'bool', 'p' => 'resource', 'linecap' => 'int', ), - 'PDF_setlinejoin' => + 'pdf_setlinejoin' => array ( 0 => 'bool', 'p' => 'resource', 'value' => 'int', ), - 'PDF_setlinewidth' => + 'pdf_setlinewidth' => array ( 0 => 'bool', 'p' => 'resource', 'width' => 'float', ), - 'PDF_setmatrix' => + 'pdf_setmatrix' => array ( 0 => 'bool', 'p' => 'resource', @@ -47060,13 +47060,13 @@ 'e' => 'float', 'f' => 'float', ), - 'PDF_setmiterlimit' => + 'pdf_setmiterlimit' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'miter' => 'float', ), - 'PDF_setrgbcolor' => + 'pdf_setrgbcolor' => array ( 0 => 'bool', 'p' => 'resource', @@ -47074,7 +47074,7 @@ 'green' => 'float', 'blue' => 'float', ), - 'PDF_setrgbcolor_fill' => + 'pdf_setrgbcolor_fill' => array ( 0 => 'bool', 'p' => 'resource', @@ -47082,7 +47082,7 @@ 'green' => 'float', 'blue' => 'float', ), - 'PDF_setrgbcolor_stroke' => + 'pdf_setrgbcolor_stroke' => array ( 0 => 'bool', 'p' => 'resource', @@ -47090,7 +47090,7 @@ 'green' => 'float', 'blue' => 'float', ), - 'PDF_shading' => + 'pdf_shading' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -47105,26 +47105,26 @@ 'c4' => 'float', 'optlist' => 'string', ), - 'PDF_shading_pattern' => + 'pdf_shading_pattern' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'shading' => 'int', 'optlist' => 'string', ), - 'PDF_shfill' => + 'pdf_shfill' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'shading' => 'int', ), - 'PDF_show' => + 'pdf_show' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'text' => 'string', ), - 'PDF_show_boxed' => + 'pdf_show_boxed' => array ( 0 => 'int', 'p' => 'resource', @@ -47136,7 +47136,7 @@ 'mode' => 'string', 'feature' => 'string', ), - 'PDF_show_xy' => + 'pdf_show_xy' => array ( 0 => 'bool', 'p' => 'resource', @@ -47144,14 +47144,14 @@ 'x' => 'float', 'y' => 'float', ), - 'PDF_skew' => + 'pdf_skew' => array ( 0 => 'bool', 'p' => 'resource', 'alpha' => 'float', 'beta' => 'float', ), - 'PDF_stringwidth' => + 'pdf_stringwidth' => array ( 0 => 'float', 'p' => 'resource', @@ -47159,50 +47159,50 @@ 'font' => 'int', 'fontsize' => 'float', ), - 'PDF_stroke' => + 'pdf_stroke' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_suspend_page' => + 'pdf_suspend_page' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'optlist' => 'string', ), - 'PDF_translate' => + 'pdf_translate' => array ( 0 => 'bool', 'p' => 'resource', 'tx' => 'float', 'ty' => 'float', ), - 'PDF_utf16_to_utf8' => + 'pdf_utf16_to_utf8' => array ( 0 => 'string', 'pdfdoc' => 'resource', 'utf16string' => 'string', ), - 'PDF_utf32_to_utf16' => + 'pdf_utf32_to_utf16' => array ( 0 => 'string', 'pdfdoc' => 'resource', 'utf32string' => 'string', 'ordering' => 'string', ), - 'PDF_utf8_to_utf16' => + 'pdf_utf8_to_utf16' => array ( 0 => 'string', 'pdfdoc' => 'resource', 'utf8string' => 'string', 'ordering' => 'string', ), - 'PDFlib::activate_item' => + 'pdflib::activate_item' => array ( 0 => 'bool', 'id' => 'mixed', ), - 'PDFlib::add_launchlink' => + 'pdflib::add_launchlink' => array ( 0 => 'bool', 'llx' => 'float', @@ -47211,7 +47211,7 @@ 'ury' => 'float', 'filename' => 'string', ), - 'PDFlib::add_locallink' => + 'pdflib::add_locallink' => array ( 0 => 'bool', 'lowerleftx' => 'float', @@ -47221,13 +47221,13 @@ 'page' => 'int', 'dest' => 'string', ), - 'PDFlib::add_nameddest' => + 'pdflib::add_nameddest' => array ( 0 => 'bool', 'name' => 'string', 'optlist' => 'string', ), - 'PDFlib::add_note' => + 'pdflib::add_note' => array ( 0 => 'bool', 'llx' => 'float', @@ -47239,7 +47239,7 @@ 'icon' => 'string', 'open' => 'int', ), - 'PDFlib::add_pdflink' => + 'pdflib::add_pdflink' => array ( 0 => 'bool', 'bottom_left_x' => 'float', @@ -47250,7 +47250,7 @@ 'page' => 'int', 'dest' => 'string', ), - 'PDFlib::add_table_cell' => + 'pdflib::add_table_cell' => array ( 0 => 'int', 'table' => 'int', @@ -47259,19 +47259,19 @@ 'text' => 'string', 'optlist' => 'string', ), - 'PDFlib::add_textflow' => + 'pdflib::add_textflow' => array ( 0 => 'int', 'textflow' => 'int', 'text' => 'string', 'optlist' => 'string', ), - 'PDFlib::add_thumbnail' => + 'pdflib::add_thumbnail' => array ( 0 => 'bool', 'image' => 'int', ), - 'PDFlib::add_weblink' => + 'pdflib::add_weblink' => array ( 0 => 'bool', 'lowerleftx' => 'float', @@ -47280,7 +47280,7 @@ 'upperrighty' => 'float', 'url' => 'string', ), - 'PDFlib::arc' => + 'pdflib::arc' => array ( 0 => 'bool', 'x' => 'float', @@ -47289,7 +47289,7 @@ 'alpha' => 'float', 'beta' => 'float', ), - 'PDFlib::arcn' => + 'pdflib::arcn' => array ( 0 => 'bool', 'x' => 'float', @@ -47298,7 +47298,7 @@ 'alpha' => 'float', 'beta' => 'float', ), - 'PDFlib::attach_file' => + 'pdflib::attach_file' => array ( 0 => 'bool', 'llx' => 'float', @@ -47311,13 +47311,13 @@ 'mimetype' => 'string', 'icon' => 'string', ), - 'PDFlib::begin_document' => + 'pdflib::begin_document' => array ( 0 => 'int', 'filename' => 'string', 'optlist' => 'string', ), - 'PDFlib::begin_font' => + 'pdflib::begin_font' => array ( 0 => 'bool', 'filename' => 'string', @@ -47329,7 +47329,7 @@ 'f' => 'float', 'optlist' => 'string', ), - 'PDFlib::begin_glyph' => + 'pdflib::begin_glyph' => array ( 0 => 'bool', 'glyphname' => 'string', @@ -47339,31 +47339,31 @@ 'urx' => 'float', 'ury' => 'float', ), - 'PDFlib::begin_item' => + 'pdflib::begin_item' => array ( 0 => 'int', 'tag' => 'string', 'optlist' => 'string', ), - 'PDFlib::begin_layer' => + 'pdflib::begin_layer' => array ( 0 => 'bool', 'layer' => 'int', ), - 'PDFlib::begin_page' => + 'pdflib::begin_page' => array ( 0 => 'bool', 'width' => 'float', 'height' => 'float', ), - 'PDFlib::begin_page_ext' => + 'pdflib::begin_page_ext' => array ( 0 => 'bool', 'width' => 'float', 'height' => 'float', 'optlist' => 'string', ), - 'PDFlib::begin_pattern' => + 'pdflib::begin_pattern' => array ( 0 => 'int', 'width' => 'float', @@ -47372,62 +47372,62 @@ 'ystep' => 'float', 'painttype' => 'int', ), - 'PDFlib::begin_template' => + 'pdflib::begin_template' => array ( 0 => 'int', 'width' => 'float', 'height' => 'float', ), - 'PDFlib::begin_template_ext' => + 'pdflib::begin_template_ext' => array ( 0 => 'int', 'width' => 'float', 'height' => 'float', 'optlist' => 'string', ), - 'PDFlib::circle' => + 'pdflib::circle' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', 'r' => 'float', ), - 'PDFlib::clip' => + 'pdflib::clip' => array ( 0 => 'bool', ), - 'PDFlib::close' => + 'pdflib::close' => array ( 0 => 'bool', ), - 'PDFlib::close_image' => + 'pdflib::close_image' => array ( 0 => 'bool', 'image' => 'int', ), - 'PDFlib::close_pdi' => + 'pdflib::close_pdi' => array ( 0 => 'bool', 'doc' => 'int', ), - 'PDFlib::close_pdi_page' => + 'pdflib::close_pdi_page' => array ( 0 => 'bool', 'page' => 'int', ), - 'PDFlib::closepath' => + 'pdflib::closepath' => array ( 0 => 'bool', ), - 'PDFlib::closepath_fill_stroke' => + 'pdflib::closepath_fill_stroke' => array ( 0 => 'bool', ), - 'PDFlib::closepath_stroke' => + 'pdflib::closepath_stroke' => array ( 0 => 'bool', ), - 'PDFlib::concat' => + 'pdflib::concat' => array ( 0 => 'bool', 'a' => 'float', @@ -47437,24 +47437,24 @@ 'e' => 'float', 'f' => 'float', ), - 'PDFlib::continue_text' => + 'pdflib::continue_text' => array ( 0 => 'bool', 'text' => 'string', ), - 'PDFlib::create_3dview' => + 'pdflib::create_3dview' => array ( 0 => 'int', 'username' => 'string', 'optlist' => 'string', ), - 'PDFlib::create_action' => + 'pdflib::create_action' => array ( 0 => 'int', 'type' => 'string', 'optlist' => 'string', ), - 'PDFlib::create_annotation' => + 'pdflib::create_annotation' => array ( 0 => 'bool', 'llx' => 'float', @@ -47464,13 +47464,13 @@ 'type' => 'string', 'optlist' => 'string', ), - 'PDFlib::create_bookmark' => + 'pdflib::create_bookmark' => array ( 0 => 'int', 'text' => 'string', 'optlist' => 'string', ), - 'PDFlib::create_field' => + 'pdflib::create_field' => array ( 0 => 'bool', 'llx' => 'float', @@ -47481,31 +47481,31 @@ 'type' => 'string', 'optlist' => 'string', ), - 'PDFlib::create_fieldgroup' => + 'pdflib::create_fieldgroup' => array ( 0 => 'bool', 'name' => 'string', 'optlist' => 'string', ), - 'PDFlib::create_gstate' => + 'pdflib::create_gstate' => array ( 0 => 'int', 'optlist' => 'string', ), - 'PDFlib::create_pvf' => + 'pdflib::create_pvf' => array ( 0 => 'bool', 'filename' => 'string', 'data' => 'string', 'optlist' => 'string', ), - 'PDFlib::create_textflow' => + 'pdflib::create_textflow' => array ( 0 => 'int', 'text' => 'string', 'optlist' => 'string', ), - 'PDFlib::curveto' => + 'pdflib::curveto' => array ( 0 => 'bool', 'x1' => 'float', @@ -47515,33 +47515,33 @@ 'x3' => 'float', 'y3' => 'float', ), - 'PDFlib::define_layer' => + 'pdflib::define_layer' => array ( 0 => 'int', 'name' => 'string', 'optlist' => 'string', ), - 'PDFlib::delete' => + 'pdflib::delete' => array ( 0 => 'bool', ), - 'PDFlib::delete_pvf' => + 'pdflib::delete_pvf' => array ( 0 => 'int', 'filename' => 'string', ), - 'PDFlib::delete_table' => + 'pdflib::delete_table' => array ( 0 => 'bool', 'table' => 'int', 'optlist' => 'string', ), - 'PDFlib::delete_textflow' => + 'pdflib::delete_textflow' => array ( 0 => 'bool', 'textflow' => 'int', ), - 'PDFlib::encoding_set_char' => + 'pdflib::encoding_set_char' => array ( 0 => 'bool', 'encoding' => 'string', @@ -47549,58 +47549,58 @@ 'glyphname' => 'string', 'uv' => 'int', ), - 'PDFlib::end_document' => + 'pdflib::end_document' => array ( 0 => 'bool', 'optlist' => 'string', ), - 'PDFlib::end_font' => + 'pdflib::end_font' => array ( 0 => 'bool', ), - 'PDFlib::end_glyph' => + 'pdflib::end_glyph' => array ( 0 => 'bool', ), - 'PDFlib::end_item' => + 'pdflib::end_item' => array ( 0 => 'bool', 'id' => 'int', ), - 'PDFlib::end_layer' => + 'pdflib::end_layer' => array ( 0 => 'bool', ), - 'PDFlib::end_page' => + 'pdflib::end_page' => array ( 0 => 'bool', 'p' => 'mixed', ), - 'PDFlib::end_page_ext' => + 'pdflib::end_page_ext' => array ( 0 => 'bool', 'optlist' => 'string', ), - 'PDFlib::end_pattern' => + 'pdflib::end_pattern' => array ( 0 => 'bool', 'p' => 'mixed', ), - 'PDFlib::end_template' => + 'pdflib::end_template' => array ( 0 => 'bool', 'p' => 'mixed', ), - 'PDFlib::endpath' => + 'pdflib::endpath' => array ( 0 => 'bool', 'p' => 'mixed', ), - 'PDFlib::fill' => + 'pdflib::fill' => array ( 0 => 'bool', ), - 'PDFlib::fill_imageblock' => + 'pdflib::fill_imageblock' => array ( 0 => 'int', 'page' => 'int', @@ -47608,7 +47608,7 @@ 'image' => 'int', 'optlist' => 'string', ), - 'PDFlib::fill_pdfblock' => + 'pdflib::fill_pdfblock' => array ( 0 => 'int', 'page' => 'int', @@ -47616,11 +47616,11 @@ 'contents' => 'int', 'optlist' => 'string', ), - 'PDFlib::fill_stroke' => + 'pdflib::fill_stroke' => array ( 0 => 'bool', ), - 'PDFlib::fill_textblock' => + 'pdflib::fill_textblock' => array ( 0 => 'int', 'page' => 'int', @@ -47628,14 +47628,14 @@ 'text' => 'string', 'optlist' => 'string', ), - 'PDFlib::findfont' => + 'pdflib::findfont' => array ( 0 => 'int', 'fontname' => 'string', 'encoding' => 'string', 'embed' => 'int', ), - 'PDFlib::fit_image' => + 'pdflib::fit_image' => array ( 0 => 'bool', 'image' => 'int', @@ -47643,7 +47643,7 @@ 'y' => 'float', 'optlist' => 'string', ), - 'PDFlib::fit_pdi_page' => + 'pdflib::fit_pdi_page' => array ( 0 => 'bool', 'page' => 'int', @@ -47651,7 +47651,7 @@ 'y' => 'float', 'optlist' => 'string', ), - 'PDFlib::fit_table' => + 'pdflib::fit_table' => array ( 0 => 'string', 'table' => 'int', @@ -47661,7 +47661,7 @@ 'ury' => 'float', 'optlist' => 'string', ), - 'PDFlib::fit_textflow' => + 'pdflib::fit_textflow' => array ( 0 => 'string', 'textflow' => 'int', @@ -47671,7 +47671,7 @@ 'ury' => 'float', 'optlist' => 'string', ), - 'PDFlib::fit_textline' => + 'pdflib::fit_textline' => array ( 0 => 'bool', 'text' => 'string', @@ -47679,37 +47679,37 @@ 'y' => 'float', 'optlist' => 'string', ), - 'PDFlib::get_apiname' => + 'pdflib::get_apiname' => array ( 0 => 'string', ), - 'PDFlib::get_buffer' => + 'pdflib::get_buffer' => array ( 0 => 'string', ), - 'PDFlib::get_errmsg' => + 'pdflib::get_errmsg' => array ( 0 => 'string', ), - 'PDFlib::get_errnum' => + 'pdflib::get_errnum' => array ( 0 => 'int', ), - 'PDFlib::get_majorversion' => + 'pdflib::get_majorversion' => array ( 0 => 'int', ), - 'PDFlib::get_minorversion' => + 'pdflib::get_minorversion' => array ( 0 => 'int', ), - 'PDFlib::get_parameter' => + 'pdflib::get_parameter' => array ( 0 => 'string', 'key' => 'string', 'modifier' => 'float', ), - 'PDFlib::get_pdi_parameter' => + 'pdflib::get_pdi_parameter' => array ( 0 => 'string', 'key' => 'string', @@ -47717,7 +47717,7 @@ 'page' => 'int', 'reserved' => 'int', ), - 'PDFlib::get_pdi_value' => + 'pdflib::get_pdi_value' => array ( 0 => 'float', 'key' => 'string', @@ -47725,93 +47725,93 @@ 'page' => 'int', 'reserved' => 'int', ), - 'PDFlib::get_value' => + 'pdflib::get_value' => array ( 0 => 'float', 'key' => 'string', 'modifier' => 'float', ), - 'PDFlib::info_font' => + 'pdflib::info_font' => array ( 0 => 'float', 'font' => 'int', 'keyword' => 'string', 'optlist' => 'string', ), - 'PDFlib::info_matchbox' => + 'pdflib::info_matchbox' => array ( 0 => 'float', 'boxname' => 'string', 'num' => 'int', 'keyword' => 'string', ), - 'PDFlib::info_table' => + 'pdflib::info_table' => array ( 0 => 'float', 'table' => 'int', 'keyword' => 'string', ), - 'PDFlib::info_textflow' => + 'pdflib::info_textflow' => array ( 0 => 'float', 'textflow' => 'int', 'keyword' => 'string', ), - 'PDFlib::info_textline' => + 'pdflib::info_textline' => array ( 0 => 'float', 'text' => 'string', 'keyword' => 'string', 'optlist' => 'string', ), - 'PDFlib::initgraphics' => + 'pdflib::initgraphics' => array ( 0 => 'bool', ), - 'PDFlib::lineto' => + 'pdflib::lineto' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'PDFlib::load_3ddata' => + 'pdflib::load_3ddata' => array ( 0 => 'int', 'filename' => 'string', 'optlist' => 'string', ), - 'PDFlib::load_font' => + 'pdflib::load_font' => array ( 0 => 'int', 'fontname' => 'string', 'encoding' => 'string', 'optlist' => 'string', ), - 'PDFlib::load_iccprofile' => + 'pdflib::load_iccprofile' => array ( 0 => 'int', 'profilename' => 'string', 'optlist' => 'string', ), - 'PDFlib::load_image' => + 'pdflib::load_image' => array ( 0 => 'int', 'imagetype' => 'string', 'filename' => 'string', 'optlist' => 'string', ), - 'PDFlib::makespotcolor' => + 'pdflib::makespotcolor' => array ( 0 => 'int', 'spotname' => 'string', ), - 'PDFlib::moveto' => + 'pdflib::moveto' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'PDFlib::open_ccitt' => + 'pdflib::open_ccitt' => array ( 0 => 'int', 'filename' => 'string', @@ -47821,12 +47821,12 @@ 'k' => 'int', 'Blackls1' => 'int', ), - 'PDFlib::open_file' => + 'pdflib::open_file' => array ( 0 => 'bool', 'filename' => 'string', ), - 'PDFlib::open_image' => + 'pdflib::open_image' => array ( 0 => 'int', 'imagetype' => 'string', @@ -47839,7 +47839,7 @@ 'bpc' => 'int', 'params' => 'string', ), - 'PDFlib::open_image_file' => + 'pdflib::open_image_file' => array ( 0 => 'int', 'imagetype' => 'string', @@ -47847,51 +47847,51 @@ 'stringparam' => 'string', 'intparam' => 'int', ), - 'PDFlib::open_memory_image' => + 'pdflib::open_memory_image' => array ( 0 => 'int', 'image' => 'resource', ), - 'PDFlib::open_pdi' => + 'pdflib::open_pdi' => array ( 0 => 'int', 'filename' => 'string', 'optlist' => 'string', 'length' => 'int', ), - 'PDFlib::open_pdi_document' => + 'pdflib::open_pdi_document' => array ( 0 => 'int', 'filename' => 'string', 'optlist' => 'string', ), - 'PDFlib::open_pdi_page' => + 'pdflib::open_pdi_page' => array ( 0 => 'int', 'doc' => 'int', 'pagenumber' => 'int', 'optlist' => 'string', ), - 'PDFlib::pcos_get_number' => + 'pdflib::pcos_get_number' => array ( 0 => 'float', 'doc' => 'int', 'path' => 'string', ), - 'PDFlib::pcos_get_stream' => + 'pdflib::pcos_get_stream' => array ( 0 => 'string', 'doc' => 'int', 'optlist' => 'string', 'path' => 'string', ), - 'PDFlib::pcos_get_string' => + 'pdflib::pcos_get_string' => array ( 0 => 'string', 'doc' => 'int', 'path' => 'string', ), - 'PDFlib::place_image' => + 'pdflib::place_image' => array ( 0 => 'bool', 'image' => 'int', @@ -47899,7 +47899,7 @@ 'y' => 'float', 'scale' => 'float', ), - 'PDFlib::place_pdi_page' => + 'pdflib::place_pdi_page' => array ( 0 => 'bool', 'page' => 'int', @@ -47908,14 +47908,14 @@ 'sx' => 'float', 'sy' => 'float', ), - 'PDFlib::process_pdi' => + 'pdflib::process_pdi' => array ( 0 => 'int', 'doc' => 'int', 'page' => 'int', 'optlist' => 'string', ), - 'PDFlib::rect' => + 'pdflib::rect' => array ( 0 => 'bool', 'x' => 'float', @@ -47923,87 +47923,87 @@ 'width' => 'float', 'height' => 'float', ), - 'PDFlib::restore' => + 'pdflib::restore' => array ( 0 => 'bool', 'p' => 'mixed', ), - 'PDFlib::resume_page' => + 'pdflib::resume_page' => array ( 0 => 'bool', 'optlist' => 'string', ), - 'PDFlib::rotate' => + 'pdflib::rotate' => array ( 0 => 'bool', 'phi' => 'float', ), - 'PDFlib::save' => + 'pdflib::save' => array ( 0 => 'bool', 'p' => 'mixed', ), - 'PDFlib::scale' => + 'pdflib::scale' => array ( 0 => 'bool', 'sx' => 'float', 'sy' => 'float', ), - 'PDFlib::set_border_color' => + 'pdflib::set_border_color' => array ( 0 => 'bool', 'red' => 'float', 'green' => 'float', 'blue' => 'float', ), - 'PDFlib::set_border_dash' => + 'pdflib::set_border_dash' => array ( 0 => 'bool', 'black' => 'float', 'white' => 'float', ), - 'PDFlib::set_border_style' => + 'pdflib::set_border_style' => array ( 0 => 'bool', 'style' => 'string', 'width' => 'float', ), - 'PDFlib::set_gstate' => + 'pdflib::set_gstate' => array ( 0 => 'bool', 'gstate' => 'int', ), - 'PDFlib::set_info' => + 'pdflib::set_info' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'PDFlib::set_layer_dependency' => + 'pdflib::set_layer_dependency' => array ( 0 => 'bool', 'type' => 'string', 'optlist' => 'string', ), - 'PDFlib::set_parameter' => + 'pdflib::set_parameter' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'PDFlib::set_text_pos' => + 'pdflib::set_text_pos' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'PDFlib::set_value' => + 'pdflib::set_value' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'float', ), - 'PDFlib::setcolor' => + 'pdflib::setcolor' => array ( 0 => 'bool', 'fstype' => 'string', @@ -48013,59 +48013,59 @@ 'c3' => 'float', 'c4' => 'float', ), - 'PDFlib::setdash' => + 'pdflib::setdash' => array ( 0 => 'bool', 'b' => 'float', 'w' => 'float', ), - 'PDFlib::setdashpattern' => + 'pdflib::setdashpattern' => array ( 0 => 'bool', 'optlist' => 'string', ), - 'PDFlib::setflat' => + 'pdflib::setflat' => array ( 0 => 'bool', 'flatness' => 'float', ), - 'PDFlib::setfont' => + 'pdflib::setfont' => array ( 0 => 'bool', 'font' => 'int', 'fontsize' => 'float', ), - 'PDFlib::setgray' => + 'pdflib::setgray' => array ( 0 => 'bool', 'g' => 'float', ), - 'PDFlib::setgray_fill' => + 'pdflib::setgray_fill' => array ( 0 => 'bool', 'g' => 'float', ), - 'PDFlib::setgray_stroke' => + 'pdflib::setgray_stroke' => array ( 0 => 'bool', 'g' => 'float', ), - 'PDFlib::setlinecap' => + 'pdflib::setlinecap' => array ( 0 => 'bool', 'linecap' => 'int', ), - 'PDFlib::setlinejoin' => + 'pdflib::setlinejoin' => array ( 0 => 'bool', 'value' => 'int', ), - 'PDFlib::setlinewidth' => + 'pdflib::setlinewidth' => array ( 0 => 'bool', 'width' => 'float', ), - 'PDFlib::setmatrix' => + 'pdflib::setmatrix' => array ( 0 => 'bool', 'a' => 'float', @@ -48075,33 +48075,33 @@ 'e' => 'float', 'f' => 'float', ), - 'PDFlib::setmiterlimit' => + 'pdflib::setmiterlimit' => array ( 0 => 'bool', 'miter' => 'float', ), - 'PDFlib::setrgbcolor' => + 'pdflib::setrgbcolor' => array ( 0 => 'bool', 'red' => 'float', 'green' => 'float', 'blue' => 'float', ), - 'PDFlib::setrgbcolor_fill' => + 'pdflib::setrgbcolor_fill' => array ( 0 => 'bool', 'red' => 'float', 'green' => 'float', 'blue' => 'float', ), - 'PDFlib::setrgbcolor_stroke' => + 'pdflib::setrgbcolor_stroke' => array ( 0 => 'bool', 'red' => 'float', 'green' => 'float', 'blue' => 'float', ), - 'PDFlib::shading' => + 'pdflib::shading' => array ( 0 => 'int', 'shtype' => 'string', @@ -48115,23 +48115,23 @@ 'c4' => 'float', 'optlist' => 'string', ), - 'PDFlib::shading_pattern' => + 'pdflib::shading_pattern' => array ( 0 => 'int', 'shading' => 'int', 'optlist' => 'string', ), - 'PDFlib::shfill' => + 'pdflib::shfill' => array ( 0 => 'bool', 'shading' => 'int', ), - 'PDFlib::show' => + 'pdflib::show' => array ( 0 => 'bool', 'text' => 'string', ), - 'PDFlib::show_boxed' => + 'pdflib::show_boxed' => array ( 0 => 'int', 'text' => 'string', @@ -48142,60 +48142,60 @@ 'mode' => 'string', 'feature' => 'string', ), - 'PDFlib::show_xy' => + 'pdflib::show_xy' => array ( 0 => 'bool', 'text' => 'string', 'x' => 'float', 'y' => 'float', ), - 'PDFlib::skew' => + 'pdflib::skew' => array ( 0 => 'bool', 'alpha' => 'float', 'beta' => 'float', ), - 'PDFlib::stringwidth' => + 'pdflib::stringwidth' => array ( 0 => 'float', 'text' => 'string', 'font' => 'int', 'fontsize' => 'float', ), - 'PDFlib::stroke' => + 'pdflib::stroke' => array ( 0 => 'bool', 'p' => 'mixed', ), - 'PDFlib::suspend_page' => + 'pdflib::suspend_page' => array ( 0 => 'bool', 'optlist' => 'string', ), - 'PDFlib::translate' => + 'pdflib::translate' => array ( 0 => 'bool', 'tx' => 'float', 'ty' => 'float', ), - 'PDFlib::utf16_to_utf8' => + 'pdflib::utf16_to_utf8' => array ( 0 => 'string', 'utf16string' => 'string', ), - 'PDFlib::utf32_to_utf16' => + 'pdflib::utf32_to_utf16' => array ( 0 => 'string', 'utf32string' => 'string', 'ordering' => 'string', ), - 'PDFlib::utf8_to_utf16' => + 'pdflib::utf8_to_utf16' => array ( 0 => 'string', 'utf8string' => 'string', 'ordering' => 'string', ), - 'PDO::__construct' => + 'pdo::__construct' => array ( 0 => 'void', 'dsn' => 'string', @@ -48203,53 +48203,53 @@ 'password=' => 'null|string', 'options=' => 'array|null', ), - 'PDO::beginTransaction' => + 'pdo::begintransaction' => array ( 0 => 'bool', ), - 'PDO::commit' => + 'pdo::commit' => array ( 0 => 'bool', ), - 'PDO::cubrid_schema' => + 'pdo::cubrid_schema' => array ( 0 => 'array', 'schema_type' => 'int', 'table_name=' => 'string', 'col_name=' => 'string', ), - 'PDO::errorCode' => + 'pdo::errorcode' => array ( 0 => 'null|string', ), - 'PDO::errorInfo' => + 'pdo::errorinfo' => array ( 0 => 'array{0: null|string, 1: int|null, 2: null|string, 3?: mixed, 4?: mixed}', ), - 'PDO::exec' => + 'pdo::exec' => array ( 0 => 'false|int', 'statement' => 'string', ), - 'PDO::getAttribute' => + 'pdo::getattribute' => array ( 0 => 'mixed', 'attribute' => 'int', ), - 'PDO::getAvailableDrivers' => + 'pdo::getavailabledrivers' => array ( 0 => 'array', ), - 'PDO::inTransaction' => + 'pdo::intransaction' => array ( 0 => 'bool', ), - 'PDO::lastInsertId' => + 'pdo::lastinsertid' => array ( 0 => 'string', 'name=' => 'null|string', ), - 'PDO::pgsqlCopyFromArray' => + 'pdo::pgsqlcopyfromarray' => array ( 0 => 'bool', 'table_name' => 'string', @@ -48258,7 +48258,7 @@ 'null_as' => 'string', 'fields' => 'string', ), - 'PDO::pgsqlCopyFromFile' => + 'pdo::pgsqlcopyfromfile' => array ( 0 => 'bool', 'table_name' => 'string', @@ -48267,7 +48267,7 @@ 'null_as' => 'string', 'fields' => 'string', ), - 'PDO::pgsqlCopyToArray' => + 'pdo::pgsqlcopytoarray' => array ( 0 => 'array', 'table_name' => 'string', @@ -48275,7 +48275,7 @@ 'null_as' => 'string', 'fields' => 'string', ), - 'PDO::pgsqlCopyToFile' => + 'pdo::pgsqlcopytofile' => array ( 0 => 'bool', 'table_name' => 'string', @@ -48284,50 +48284,50 @@ 'null_as' => 'string', 'fields' => 'string', ), - 'PDO::pgsqlGetNotify' => + 'pdo::pgsqlgetnotify' => array ( 0 => 'array{message: string, payload?: string, pid: int}|false', 'result_type=' => 'PDO::FETCH_*', 'ms_timeout=' => 'int', ), - 'PDO::pgsqlGetPid' => + 'pdo::pgsqlgetpid' => array ( 0 => 'int', ), - 'PDO::pgsqlLOBCreate' => + 'pdo::pgsqllobcreate' => array ( 0 => 'string', ), - 'PDO::pgsqlLOBOpen' => + 'pdo::pgsqllobopen' => array ( 0 => 'resource', 'oid' => 'string', 'mode=' => 'string', ), - 'PDO::pgsqlLOBUnlink' => + 'pdo::pgsqllobunlink' => array ( 0 => 'bool', 'oid' => 'string', ), - 'PDO::prepare' => + 'pdo::prepare' => array ( 0 => 'PDOStatement|false', 'query' => 'string', 'options=' => 'array', ), - 'PDO::query' => + 'pdo::query' => array ( 0 => 'PDOStatement|false', 'query' => 'string', ), - 'PDO::query\'1' => + 'pdo::query\'1' => array ( 0 => 'PDOStatement|false', 'query' => 'string', 'fetch_column' => 'int', 'colno=' => 'int', ), - 'PDO::query\'2' => + 'pdo::query\'2' => array ( 0 => 'PDOStatement|false', 'query' => 'string', @@ -48335,30 +48335,30 @@ 'classname' => 'string', 'constructorArgs' => 'array', ), - 'PDO::query\'3' => + 'pdo::query\'3' => array ( 0 => 'PDOStatement|false', 'query' => 'string', 'fetch_into' => 'int', 'object' => 'object', ), - 'PDO::quote' => + 'pdo::quote' => array ( 0 => 'false|string', 'string' => 'string', 'type=' => 'int', ), - 'PDO::rollBack' => + 'pdo::rollback' => array ( 0 => 'bool', ), - 'PDO::setAttribute' => + 'pdo::setattribute' => array ( 0 => 'bool', 'attribute' => 'int', 'value' => 'mixed', ), - 'PDO::sqliteCreateAggregate' => + 'pdo::sqlitecreateaggregate' => array ( 0 => 'bool', 'function_name' => 'string', @@ -48366,13 +48366,13 @@ 'finalize_func' => 'callable', 'num_args=' => 'int', ), - 'PDO::sqliteCreateCollation' => + 'pdo::sqlitecreatecollation' => array ( 0 => 'bool', 'name' => 'string', 'callback' => 'callable', ), - 'PDO::sqliteCreateFunction' => + 'pdo::sqlitecreatefunction' => array ( 0 => 'bool', 'function_name' => 'string', @@ -48383,35 +48383,35 @@ array ( 0 => 'array', ), - 'PDOException::getCode' => + 'pdoexception::getcode' => array ( 0 => 'int|string', ), - 'PDOException::getFile' => + 'pdoexception::getfile' => array ( 0 => 'string', ), - 'PDOException::getLine' => + 'pdoexception::getline' => array ( 0 => 'int', ), - 'PDOException::getMessage' => + 'pdoexception::getmessage' => array ( 0 => 'string', ), - 'PDOException::getPrevious' => + 'pdoexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'PDOException::getTrace' => + 'pdoexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'PDOException::getTraceAsString' => + 'pdoexception::gettraceasstring' => array ( 0 => 'string', ), - 'PDOStatement::bindColumn' => + 'pdostatement::bindcolumn' => array ( 0 => 'bool', 'column' => 'int|string', @@ -48420,7 +48420,7 @@ 'maxLength=' => 'int', 'driverOptions=' => 'mixed', ), - 'PDOStatement::bindParam' => + 'pdostatement::bindparam' => array ( 0 => 'bool', 'param' => 'int|string', @@ -48429,87 +48429,87 @@ 'maxLength=' => 'int', 'driverOptions=' => 'mixed', ), - 'PDOStatement::bindValue' => + 'pdostatement::bindvalue' => array ( 0 => 'bool', 'param' => 'int|string', 'value' => 'mixed', 'type=' => 'int', ), - 'PDOStatement::closeCursor' => + 'pdostatement::closecursor' => array ( 0 => 'bool', ), - 'PDOStatement::columnCount' => + 'pdostatement::columncount' => array ( 0 => 'int', ), - 'PDOStatement::debugDumpParams' => + 'pdostatement::debugdumpparams' => array ( 0 => 'bool|null', ), - 'PDOStatement::errorCode' => + 'pdostatement::errorcode' => array ( 0 => 'null|string', ), - 'PDOStatement::errorInfo' => + 'pdostatement::errorinfo' => array ( 0 => 'array{0: null|string, 1: int|null, 2: null|string, 3?: mixed, 4?: mixed}', ), - 'PDOStatement::execute' => + 'pdostatement::execute' => array ( 0 => 'bool', 'params=' => 'array|null', ), - 'PDOStatement::fetch' => + 'pdostatement::fetch' => array ( 0 => 'mixed', 'mode=' => 'int', 'cursorOrientation=' => 'int', 'cursorOffset=' => 'int', ), - 'PDOStatement::fetchAll' => + 'pdostatement::fetchall' => array ( 0 => 'array', 'mode=' => 'int', '...args=' => 'mixed', ), - 'PDOStatement::fetchColumn' => + 'pdostatement::fetchcolumn' => array ( 0 => 'mixed', 'column=' => 'int', ), - 'PDOStatement::fetchObject' => + 'pdostatement::fetchobject' => array ( 0 => 'false|object', 'class=' => 'class-string|null', 'constructorArgs=' => 'array', ), - 'PDOStatement::getAttribute' => + 'pdostatement::getattribute' => array ( 0 => 'mixed', 'name' => 'int', ), - 'PDOStatement::getColumnMeta' => + 'pdostatement::getcolumnmeta' => array ( 0 => 'array|false', 'column' => 'int', ), - 'PDOStatement::nextRowset' => + 'pdostatement::nextrowset' => array ( 0 => 'bool', ), - 'PDOStatement::rowCount' => + 'pdostatement::rowcount' => array ( 0 => 'int', ), - 'PDOStatement::setAttribute' => + 'pdostatement::setattribute' => array ( 0 => 'bool', 'attribute' => 'int', 'value' => 'mixed', ), - 'PDOStatement::setFetchMode' => + 'pdostatement::setfetchmode' => array ( 0 => 'true', 'mode' => 'int', @@ -49178,281 +49178,281 @@ 0 => 'array', 'connection=' => 'PgSql\\Connection|null', ), - 'Phar::__construct' => + 'phar::__construct' => array ( 0 => 'void', 'filename' => 'string', 'flags=' => 'int', 'alias=' => 'null|string', ), - 'Phar::addEmptyDir' => + 'phar::addemptydir' => array ( 0 => 'void', 'directory' => 'string', ), - 'Phar::addFile' => + 'phar::addfile' => array ( 0 => 'void', 'filename' => 'string', 'localName=' => 'null|string', ), - 'Phar::addFromString' => + 'phar::addfromstring' => array ( 0 => 'void', 'localName' => 'string', 'contents' => 'string', ), - 'Phar::apiVersion' => + 'phar::apiversion' => array ( 0 => 'string', ), - 'Phar::buildFromDirectory' => + 'phar::buildfromdirectory' => array ( 0 => 'array', 'directory' => 'string', 'pattern=' => 'string', ), - 'Phar::buildFromIterator' => + 'phar::buildfromiterator' => array ( 0 => 'array', 'iterator' => 'Traversable', 'baseDirectory=' => 'null|string', ), - 'Phar::canCompress' => + 'phar::cancompress' => array ( 0 => 'bool', 'compression=' => 'int', ), - 'Phar::canWrite' => + 'phar::canwrite' => array ( 0 => 'bool', ), - 'Phar::compress' => + 'phar::compress' => array ( 0 => 'Phar|null', 'compression' => 'int', 'extension=' => 'null|string', ), - 'Phar::compressFiles' => + 'phar::compressfiles' => array ( 0 => 'void', 'compression' => 'int', ), - 'Phar::convertToData' => + 'phar::converttodata' => array ( 0 => 'PharData|null', 'format=' => 'int|null', 'compression=' => 'int|null', 'extension=' => 'null|string', ), - 'Phar::convertToExecutable' => + 'phar::converttoexecutable' => array ( 0 => 'Phar|null', 'format=' => 'int|null', 'compression=' => 'int|null', 'extension=' => 'null|string', ), - 'Phar::copy' => + 'phar::copy' => array ( 0 => 'true', 'from' => 'string', 'to' => 'string', ), - 'Phar::count' => + 'phar::count' => array ( 0 => 'int', 'mode=' => 'int', ), - 'Phar::createDefaultStub' => + 'phar::createdefaultstub' => array ( 0 => 'string', 'index=' => 'null|string', 'webIndex=' => 'null|string', ), - 'Phar::decompress' => + 'phar::decompress' => array ( 0 => 'Phar|null', 'extension=' => 'null|string', ), - 'Phar::decompressFiles' => + 'phar::decompressfiles' => array ( 0 => 'true', ), - 'Phar::delete' => + 'phar::delete' => array ( 0 => 'true', 'localName' => 'string', ), - 'Phar::delMetadata' => + 'phar::delmetadata' => array ( 0 => 'true', ), - 'Phar::extractTo' => + 'phar::extractto' => array ( 0 => 'bool', 'directory' => 'string', 'files=' => 'array|null|string', 'overwrite=' => 'bool', ), - 'Phar::getAlias' => + 'phar::getalias' => array ( 0 => 'null|string', ), - 'Phar::getMetadata' => + 'phar::getmetadata' => array ( 0 => 'mixed', 'unserializeOptions=' => 'array', ), - 'Phar::getModified' => + 'phar::getmodified' => array ( 0 => 'bool', ), - 'Phar::getPath' => + 'phar::getpath' => array ( 0 => 'string', ), - 'Phar::getSignature' => + 'phar::getsignature' => array ( 0 => 'array{hash: string, hash_type: string}', ), - 'Phar::getStub' => + 'phar::getstub' => array ( 0 => 'string', ), - 'Phar::getSupportedCompression' => + 'phar::getsupportedcompression' => array ( 0 => 'array', ), - 'Phar::getSupportedSignatures' => + 'phar::getsupportedsignatures' => array ( 0 => 'array', ), - 'Phar::getVersion' => + 'phar::getversion' => array ( 0 => 'string', ), - 'Phar::hasMetadata' => + 'phar::hasmetadata' => array ( 0 => 'bool', ), - 'Phar::interceptFileFuncs' => + 'phar::interceptfilefuncs' => array ( 0 => 'void', ), - 'Phar::isBuffering' => + 'phar::isbuffering' => array ( 0 => 'bool', ), - 'Phar::isCompressed' => + 'phar::iscompressed' => array ( 0 => 'false|int', ), - 'Phar::isFileFormat' => + 'phar::isfileformat' => array ( 0 => 'bool', 'format' => 'int', ), - 'Phar::isValidPharFilename' => + 'phar::isvalidpharfilename' => array ( 0 => 'bool', 'filename' => 'string', 'executable=' => 'bool', ), - 'Phar::isWritable' => + 'phar::iswritable' => array ( 0 => 'bool', ), - 'Phar::loadPhar' => + 'phar::loadphar' => array ( 0 => 'bool', 'filename' => 'string', 'alias=' => 'null|string', ), - 'Phar::mapPhar' => + 'phar::mapphar' => array ( 0 => 'bool', 'alias=' => 'null|string', 'offset=' => 'int', ), - 'Phar::mount' => + 'phar::mount' => array ( 0 => 'void', 'pharPath' => 'string', 'externalPath' => 'string', ), - 'Phar::mungServer' => + 'phar::mungserver' => array ( 0 => 'void', 'variables' => 'list', ), - 'Phar::offsetExists' => + 'phar::offsetexists' => array ( 0 => 'bool', 'localName' => 'string', ), - 'Phar::offsetGet' => + 'phar::offsetget' => array ( 0 => 'PharFileInfo', 'localName' => 'string', ), - 'Phar::offsetSet' => + 'phar::offsetset' => array ( 0 => 'void', 'localName' => 'string', 'value' => 'resource|string', ), - 'Phar::offsetUnset' => + 'phar::offsetunset' => array ( 0 => 'void', 'localName' => 'string', ), - 'Phar::running' => + 'phar::running' => array ( 0 => 'string', 'returnPhar=' => 'bool', ), - 'Phar::setAlias' => + 'phar::setalias' => array ( 0 => 'true', 'alias' => 'string', ), - 'Phar::setDefaultStub' => + 'phar::setdefaultstub' => array ( 0 => 'true', 'index=' => 'null|string', 'webIndex=' => 'null|string', ), - 'Phar::setMetadata' => + 'phar::setmetadata' => array ( 0 => 'void', 'metadata' => 'mixed', ), - 'Phar::setSignatureAlgorithm' => + 'phar::setsignaturealgorithm' => array ( 0 => 'void', 'algo' => 'int', 'privateKey=' => 'null|string', ), - 'Phar::setStub' => + 'phar::setstub' => array ( 0 => 'true', 'stub' => 'string', 'length=' => 'int', ), - 'Phar::startBuffering' => + 'phar::startbuffering' => array ( 0 => 'void', ), - 'Phar::stopBuffering' => + 'phar::stopbuffering' => array ( 0 => 'void', ), - 'Phar::unlinkArchive' => + 'phar::unlinkarchive' => array ( 0 => 'true', 'filename' => 'string', ), - 'Phar::webPhar' => + 'phar::webphar' => array ( 0 => 'void', 'alias=' => 'null|string', @@ -49461,7 +49461,7 @@ 'mimeTypes=' => 'array', 'rewrite=' => 'callable|null', ), - 'PharData::__construct' => + 'phardata::__construct' => array ( 0 => 'void', 'filename' => 'string', @@ -49469,202 +49469,202 @@ 'alias=' => 'null|string', 'format=' => 'int', ), - 'PharData::addEmptyDir' => + 'phardata::addemptydir' => array ( 0 => 'void', 'directory' => 'string', ), - 'PharData::addFile' => + 'phardata::addfile' => array ( 0 => 'void', 'filename' => 'string', 'localName=' => 'null|string', ), - 'PharData::addFromString' => + 'phardata::addfromstring' => array ( 0 => 'void', 'localName' => 'string', 'contents' => 'string', ), - 'PharData::buildFromDirectory' => + 'phardata::buildfromdirectory' => array ( 0 => 'array', 'directory' => 'string', 'pattern=' => 'string', ), - 'PharData::buildFromIterator' => + 'phardata::buildfromiterator' => array ( 0 => 'array', 'iterator' => 'Traversable', 'baseDirectory=' => 'null|string', ), - 'PharData::compress' => + 'phardata::compress' => array ( 0 => 'PharData|null', 'compression' => 'int', 'extension=' => 'null|string', ), - 'PharData::compressFiles' => + 'phardata::compressfiles' => array ( 0 => 'void', 'compression' => 'int', ), - 'PharData::convertToData' => + 'phardata::converttodata' => array ( 0 => 'PharData|null', 'format=' => 'int|null', 'compression=' => 'int|null', 'extension=' => 'null|string', ), - 'PharData::convertToExecutable' => + 'phardata::converttoexecutable' => array ( 0 => 'Phar|null', 'format=' => 'int|null', 'compression=' => 'int|null', 'extension=' => 'null|string', ), - 'PharData::copy' => + 'phardata::copy' => array ( 0 => 'true', 'from' => 'string', 'to' => 'string', ), - 'PharData::decompress' => + 'phardata::decompress' => array ( 0 => 'PharData|null', 'extension=' => 'null|string', ), - 'PharData::decompressFiles' => + 'phardata::decompressfiles' => array ( 0 => 'true', ), - 'PharData::delete' => + 'phardata::delete' => array ( 0 => 'true', 'localName' => 'string', ), - 'PharData::delMetadata' => + 'phardata::delmetadata' => array ( 0 => 'true', ), - 'PharData::extractTo' => + 'phardata::extractto' => array ( 0 => 'bool', 'directory' => 'string', 'files=' => 'array|null|string', 'overwrite=' => 'bool', ), - 'PharData::isWritable' => + 'phardata::iswritable' => array ( 0 => 'bool', ), - 'PharData::offsetExists' => + 'phardata::offsetexists' => array ( 0 => 'bool', 'localName' => 'string', ), - 'PharData::offsetGet' => + 'phardata::offsetget' => array ( 0 => 'PharFileInfo', 'localName' => 'string', ), - 'PharData::offsetSet' => + 'phardata::offsetset' => array ( 0 => 'void', 'localName' => 'string', 'value' => 'string', ), - 'PharData::offsetUnset' => + 'phardata::offsetunset' => array ( 0 => 'void', 'localName' => 'string', ), - 'PharData::setAlias' => + 'phardata::setalias' => array ( 0 => 'bool', 'alias' => 'string', ), - 'PharData::setDefaultStub' => + 'phardata::setdefaultstub' => array ( 0 => 'bool', 'index=' => 'null|string', 'webIndex=' => 'null|string', ), - 'PharData::setMetadata' => + 'phardata::setmetadata' => array ( 0 => 'void', 'metadata' => 'mixed', ), - 'PharData::setSignatureAlgorithm' => + 'phardata::setsignaturealgorithm' => array ( 0 => 'void', 'algo' => 'int', 'privateKey=' => 'null|string', ), - 'PharData::setStub' => + 'phardata::setstub' => array ( 0 => 'true', 'stub' => 'string', 'length=' => 'int', ), - 'PharFileInfo::__construct' => + 'pharfileinfo::__construct' => array ( 0 => 'void', 'filename' => 'string', ), - 'PharFileInfo::chmod' => + 'pharfileinfo::chmod' => array ( 0 => 'void', 'perms' => 'int', ), - 'PharFileInfo::compress' => + 'pharfileinfo::compress' => array ( 0 => 'true', 'compression' => 'int', ), - 'PharFileInfo::decompress' => + 'pharfileinfo::decompress' => array ( 0 => 'true', ), - 'PharFileInfo::delMetadata' => + 'pharfileinfo::delmetadata' => array ( 0 => 'true', ), - 'PharFileInfo::getCompressedSize' => + 'pharfileinfo::getcompressedsize' => array ( 0 => 'int', ), - 'PharFileInfo::getContent' => + 'pharfileinfo::getcontent' => array ( 0 => 'string', ), - 'PharFileInfo::getCRC32' => + 'pharfileinfo::getcrc32' => array ( 0 => 'int', ), - 'PharFileInfo::getMetadata' => + 'pharfileinfo::getmetadata' => array ( 0 => 'mixed', 'unserializeOptions=' => 'array', ), - 'PharFileInfo::getPharFlags' => + 'pharfileinfo::getpharflags' => array ( 0 => 'int', ), - 'PharFileInfo::hasMetadata' => + 'pharfileinfo::hasmetadata' => array ( 0 => 'bool', ), - 'PharFileInfo::isCompressed' => + 'pharfileinfo::iscompressed' => array ( 0 => 'bool', 'compression=' => 'int|null', ), - 'PharFileInfo::isCRCChecked' => + 'pharfileinfo::iscrcchecked' => array ( 0 => 'bool', ), - 'PharFileInfo::setMetadata' => + 'pharfileinfo::setmetadata' => array ( 0 => 'void', 'metadata' => 'mixed', @@ -49782,11 +49782,11 @@ '&rw_consumed' => 'int', 'closing' => 'bool', ), - 'php_user_filter::onClose' => + 'php_user_filter::onclose' => array ( 0 => 'void', ), - 'php_user_filter::onCreate' => + 'php_user_filter::oncreate' => array ( 0 => 'bool', ), @@ -49855,22 +49855,22 @@ 0 => 'true', 'flags=' => 'int', ), - 'PhpToken::tokenize' => + 'phptoken::tokenize' => array ( 0 => 'list', 'code' => 'string', 'flags=' => 'int', ), - 'PhpToken::is' => + 'phptoken::is' => array ( 0 => 'bool', 'kind' => 'array|int|string', ), - 'PhpToken::isIgnorable' => + 'phptoken::isignorable' => array ( 0 => 'bool', ), - 'PhpToken::getTokenName' => + 'phptoken::gettokenname' => array ( 0 => 'null|string', ), @@ -49879,90 +49879,90 @@ 0 => 'false|string', 'extension=' => 'null|string', ), - 'pht\\AtomicInteger::__construct' => + 'pht\\atomicinteger::__construct' => array ( 0 => 'void', 'value=' => 'int', ), - 'pht\\AtomicInteger::dec' => + 'pht\\atomicinteger::dec' => array ( 0 => 'void', ), - 'pht\\AtomicInteger::get' => + 'pht\\atomicinteger::get' => array ( 0 => 'int', ), - 'pht\\AtomicInteger::inc' => + 'pht\\atomicinteger::inc' => array ( 0 => 'void', ), - 'pht\\AtomicInteger::lock' => + 'pht\\atomicinteger::lock' => array ( 0 => 'void', ), - 'pht\\AtomicInteger::set' => + 'pht\\atomicinteger::set' => array ( 0 => 'void', 'value' => 'int', ), - 'pht\\AtomicInteger::unlock' => + 'pht\\atomicinteger::unlock' => array ( 0 => 'void', ), - 'pht\\HashTable::lock' => + 'pht\\hashtable::lock' => array ( 0 => 'void', ), - 'pht\\HashTable::size' => + 'pht\\hashtable::size' => array ( 0 => 'int', ), - 'pht\\HashTable::unlock' => + 'pht\\hashtable::unlock' => array ( 0 => 'void', ), - 'pht\\Queue::front' => + 'pht\\queue::front' => array ( 0 => 'mixed', ), - 'pht\\Queue::lock' => + 'pht\\queue::lock' => array ( 0 => 'void', ), - 'pht\\Queue::pop' => + 'pht\\queue::pop' => array ( 0 => 'mixed', ), - 'pht\\Queue::push' => + 'pht\\queue::push' => array ( 0 => 'void', 'value' => 'mixed', ), - 'pht\\Queue::size' => + 'pht\\queue::size' => array ( 0 => 'int', ), - 'pht\\Queue::unlock' => + 'pht\\queue::unlock' => array ( 0 => 'void', ), - 'pht\\Runnable::run' => + 'pht\\runnable::run' => array ( 0 => 'void', ), - 'pht\\thread::addClassTask' => + 'pht\\thread::addclasstask' => array ( 0 => 'void', 'className' => 'string', '...ctorArgs=' => 'mixed', ), - 'pht\\thread::addFileTask' => + 'pht\\thread::addfiletask' => array ( 0 => 'void', 'fileName' => 'string', '...globals=' => 'mixed', ), - 'pht\\thread::addFunctionTask' => + 'pht\\thread::addfunctiontask' => array ( 0 => 'void', 'func' => 'callable', @@ -49976,7 +49976,7 @@ array ( 0 => 'void', ), - 'pht\\thread::taskCount' => + 'pht\\thread::taskcount' => array ( 0 => 'int', ), @@ -49988,60 +49988,60 @@ array ( 0 => 'void', ), - 'pht\\Vector::__construct' => + 'pht\\vector::__construct' => array ( 0 => 'void', 'size=' => 'int', 'value=' => 'mixed', ), - 'pht\\Vector::deleteAt' => + 'pht\\vector::deleteat' => array ( 0 => 'void', 'offset' => 'int', ), - 'pht\\Vector::insertAt' => + 'pht\\vector::insertat' => array ( 0 => 'void', 'value' => 'mixed', 'offset' => 'int', ), - 'pht\\Vector::lock' => + 'pht\\vector::lock' => array ( 0 => 'void', ), - 'pht\\Vector::pop' => + 'pht\\vector::pop' => array ( 0 => 'mixed', ), - 'pht\\Vector::push' => + 'pht\\vector::push' => array ( 0 => 'void', 'value' => 'mixed', ), - 'pht\\Vector::resize' => + 'pht\\vector::resize' => array ( 0 => 'void', 'size' => 'int', 'value=' => 'mixed', ), - 'pht\\Vector::shift' => + 'pht\\vector::shift' => array ( 0 => 'mixed', ), - 'pht\\Vector::size' => + 'pht\\vector::size' => array ( 0 => 'int', ), - 'pht\\Vector::unlock' => + 'pht\\vector::unlock' => array ( 0 => 'void', ), - 'pht\\Vector::unshift' => + 'pht\\vector::unshift' => array ( 0 => 'void', 'value' => 'mixed', ), - 'pht\\Vector::updateAt' => + 'pht\\vector::updateat' => array ( 0 => 'void', 'value' => 'mixed', @@ -50051,27 +50051,27 @@ array ( 0 => 'float', ), - 'pointObj::__construct' => + 'pointobj::__construct' => array ( 0 => 'void', ), - 'pointObj::distanceToLine' => + 'pointobj::distancetoline' => array ( 0 => 'float', 'p1' => 'pointObj', 'p2' => 'pointObj', ), - 'pointObj::distanceToPoint' => + 'pointobj::distancetopoint' => array ( 0 => 'float', 'poPoint' => 'pointObj', ), - 'pointObj::distanceToShape' => + 'pointobj::distancetoshape' => array ( 0 => 'float', 'shape' => 'shapeObj', ), - 'pointObj::draw' => + 'pointobj::draw' => array ( 0 => 'int', 'map' => 'mapObj', @@ -50080,24 +50080,24 @@ 'class_index' => 'int', 'text' => 'string', ), - 'pointObj::ms_newPointObj' => + 'pointobj::ms_newpointobj' => array ( 0 => 'pointObj', ), - 'pointObj::project' => + 'pointobj::project' => array ( 0 => 'int', 'in' => 'projectionObj', 'out' => 'projectionObj', ), - 'pointObj::setXY' => + 'pointobj::setxy' => array ( 0 => 'int', 'x' => 'float', 'y' => 'float', 'm' => 'float', ), - 'pointObj::setXYZ' => + 'pointobj::setxyz' => array ( 0 => 'int', 'x' => 'float', @@ -50105,33 +50105,33 @@ 'z' => 'float', 'm' => 'float', ), - 'Pool::__construct' => + 'pool::__construct' => array ( 0 => 'void', 'size' => 'int', 'class' => 'string', 'ctor=' => 'array', ), - 'Pool::collect' => + 'pool::collect' => array ( 0 => 'int', 'collector=' => 'callable', ), - 'Pool::resize' => + 'pool::resize' => array ( 0 => 'void', 'size' => 'int', ), - 'Pool::shutdown' => + 'pool::shutdown' => array ( 0 => 'void', ), - 'Pool::submit' => + 'pool::submit' => array ( 0 => 'int', 'task' => 'Threaded', ), - 'Pool::submitTo' => + 'pool::submitto' => array ( 0 => 'int', 'worker' => 'int', @@ -50327,13 +50327,13 @@ array ( 0 => 'array{domainname: string, machine: string, nodename: string, release: string, sysname: string, version: string}|false', ), - 'Postal\\Expand::expand_address' => + 'postal\\expand::expand_address' => array ( 0 => 'array', 'address' => 'string', 'options=' => 'array', ), - 'Postal\\Parser::parse_address' => + 'postal\\parser::parse_address' => array ( 0 => 'array', 'address' => 'string', @@ -50519,16 +50519,16 @@ 'process' => 'resource', 'signal=' => 'int', ), - 'projectionObj::__construct' => + 'projectionobj::__construct' => array ( 0 => 'void', 'projectionString' => 'string', ), - 'projectionObj::getUnits' => + 'projectionobj::getunits' => array ( 0 => 'int', ), - 'projectionObj::ms_newProjectionObj' => + 'projectionobj::ms_newprojectionobj' => array ( 0 => 'projectionObj', 'projectionString' => 'string', @@ -51397,264 +51397,264 @@ 0 => 'QDomDocument', 'doc' => 'string', ), - 'querymapObj::convertToString' => + 'querymapobj::converttostring' => array ( 0 => 'string', ), - 'querymapObj::free' => + 'querymapobj::free' => array ( 0 => 'void', ), - 'querymapObj::set' => + 'querymapobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'querymapObj::updateFromString' => + 'querymapobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', ), - 'QuickHashIntHash::__construct' => + 'quickhashinthash::__construct' => array ( 0 => 'void', 'size' => 'int', 'options=' => 'int', ), - 'QuickHashIntHash::add' => + 'quickhashinthash::add' => array ( 0 => 'bool', 'key' => 'int', 'value=' => 'int', ), - 'QuickHashIntHash::delete' => + 'quickhashinthash::delete' => array ( 0 => 'bool', 'key' => 'int', ), - 'QuickHashIntHash::exists' => + 'quickhashinthash::exists' => array ( 0 => 'bool', 'key' => 'int', ), - 'QuickHashIntHash::get' => + 'quickhashinthash::get' => array ( 0 => 'int', 'key' => 'int', ), - 'QuickHashIntHash::getSize' => + 'quickhashinthash::getsize' => array ( 0 => 'int', ), - 'QuickHashIntHash::loadFromFile' => + 'quickhashinthash::loadfromfile' => array ( 0 => 'QuickHashIntHash', 'filename' => 'string', 'options=' => 'int', ), - 'QuickHashIntHash::loadFromString' => + 'quickhashinthash::loadfromstring' => array ( 0 => 'QuickHashIntHash', 'contents' => 'string', 'options=' => 'int', ), - 'QuickHashIntHash::saveToFile' => + 'quickhashinthash::savetofile' => array ( 0 => 'void', 'filename' => 'string', ), - 'QuickHashIntHash::saveToString' => + 'quickhashinthash::savetostring' => array ( 0 => 'string', ), - 'QuickHashIntHash::set' => + 'quickhashinthash::set' => array ( 0 => 'bool', 'key' => 'int', 'value' => 'int', ), - 'QuickHashIntHash::update' => + 'quickhashinthash::update' => array ( 0 => 'bool', 'key' => 'int', 'value' => 'int', ), - 'QuickHashIntSet::__construct' => + 'quickhashintset::__construct' => array ( 0 => 'void', 'size' => 'int', 'options=' => 'int', ), - 'QuickHashIntSet::add' => + 'quickhashintset::add' => array ( 0 => 'bool', 'key' => 'int', ), - 'QuickHashIntSet::delete' => + 'quickhashintset::delete' => array ( 0 => 'bool', 'key' => 'int', ), - 'QuickHashIntSet::exists' => + 'quickhashintset::exists' => array ( 0 => 'bool', 'key' => 'int', ), - 'QuickHashIntSet::getSize' => + 'quickhashintset::getsize' => array ( 0 => 'int', ), - 'QuickHashIntSet::loadFromFile' => + 'quickhashintset::loadfromfile' => array ( 0 => 'QuickHashIntSet', 'filename' => 'string', 'size=' => 'int', 'options=' => 'int', ), - 'QuickHashIntSet::loadFromString' => + 'quickhashintset::loadfromstring' => array ( 0 => 'QuickHashIntSet', 'contents' => 'string', 'size=' => 'int', 'options=' => 'int', ), - 'QuickHashIntSet::saveToFile' => + 'quickhashintset::savetofile' => array ( 0 => 'void', 'filename' => 'string', ), - 'QuickHashIntSet::saveToString' => + 'quickhashintset::savetostring' => array ( 0 => 'string', ), - 'QuickHashIntStringHash::__construct' => + 'quickhashintstringhash::__construct' => array ( 0 => 'void', 'size' => 'int', 'options=' => 'int', ), - 'QuickHashIntStringHash::add' => + 'quickhashintstringhash::add' => array ( 0 => 'bool', 'key' => 'int', 'value' => 'string', ), - 'QuickHashIntStringHash::delete' => + 'quickhashintstringhash::delete' => array ( 0 => 'bool', 'key' => 'int', ), - 'QuickHashIntStringHash::exists' => + 'quickhashintstringhash::exists' => array ( 0 => 'bool', 'key' => 'int', ), - 'QuickHashIntStringHash::get' => + 'quickhashintstringhash::get' => array ( 0 => 'mixed', 'key' => 'int', ), - 'QuickHashIntStringHash::getSize' => + 'quickhashintstringhash::getsize' => array ( 0 => 'int', ), - 'QuickHashIntStringHash::loadFromFile' => + 'quickhashintstringhash::loadfromfile' => array ( 0 => 'QuickHashIntStringHash', 'filename' => 'string', 'size=' => 'int', 'options=' => 'int', ), - 'QuickHashIntStringHash::loadFromString' => + 'quickhashintstringhash::loadfromstring' => array ( 0 => 'QuickHashIntStringHash', 'contents' => 'string', 'size=' => 'int', 'options=' => 'int', ), - 'QuickHashIntStringHash::saveToFile' => + 'quickhashintstringhash::savetofile' => array ( 0 => 'void', 'filename' => 'string', ), - 'QuickHashIntStringHash::saveToString' => + 'quickhashintstringhash::savetostring' => array ( 0 => 'string', ), - 'QuickHashIntStringHash::set' => + 'quickhashintstringhash::set' => array ( 0 => 'int', 'key' => 'int', 'value' => 'string', ), - 'QuickHashIntStringHash::update' => + 'quickhashintstringhash::update' => array ( 0 => 'bool', 'key' => 'int', 'value' => 'string', ), - 'QuickHashStringIntHash::__construct' => + 'quickhashstringinthash::__construct' => array ( 0 => 'void', 'size' => 'int', 'options=' => 'int', ), - 'QuickHashStringIntHash::add' => + 'quickhashstringinthash::add' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'int', ), - 'QuickHashStringIntHash::delete' => + 'quickhashstringinthash::delete' => array ( 0 => 'bool', 'key' => 'string', ), - 'QuickHashStringIntHash::exists' => + 'quickhashstringinthash::exists' => array ( 0 => 'bool', 'key' => 'string', ), - 'QuickHashStringIntHash::get' => + 'quickhashstringinthash::get' => array ( 0 => 'mixed', 'key' => 'string', ), - 'QuickHashStringIntHash::getSize' => + 'quickhashstringinthash::getsize' => array ( 0 => 'int', ), - 'QuickHashStringIntHash::loadFromFile' => + 'quickhashstringinthash::loadfromfile' => array ( 0 => 'QuickHashStringIntHash', 'filename' => 'string', 'size=' => 'int', 'options=' => 'int', ), - 'QuickHashStringIntHash::loadFromString' => + 'quickhashstringinthash::loadfromstring' => array ( 0 => 'QuickHashStringIntHash', 'contents' => 'string', 'size=' => 'int', 'options=' => 'int', ), - 'QuickHashStringIntHash::saveToFile' => + 'quickhashstringinthash::savetofile' => array ( 0 => 'void', 'filename' => 'string', ), - 'QuickHashStringIntHash::saveToString' => + 'quickhashstringinthash::savetostring' => array ( 0 => 'string', ), - 'QuickHashStringIntHash::set' => + 'quickhashstringinthash::set' => array ( 0 => 'int', 'key' => 'string', 'value' => 'int', ), - 'QuickHashStringIntHash::update' => + 'quickhashstringinthash::update' => array ( 0 => 'bool', 'key' => 'string', @@ -51876,42 +51876,42 @@ 'end' => 'float|int|string', 'step=' => 'float|int<1, max>', ), - 'RangeException::__construct' => + 'rangeexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'RangeException::__toString' => + 'rangeexception::__tostring' => array ( 0 => 'string', ), - 'RangeException::getCode' => + 'rangeexception::getcode' => array ( 0 => 'int', ), - 'RangeException::getFile' => + 'rangeexception::getfile' => array ( 0 => 'string', ), - 'RangeException::getLine' => + 'rangeexception::getline' => array ( 0 => 'int', ), - 'RangeException::getMessage' => + 'rangeexception::getmessage' => array ( 0 => 'string', ), - 'RangeException::getPrevious' => + 'rangeexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'RangeException::getTrace' => + 'rangeexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'RangeException::getTraceAsString' => + 'rangeexception::gettraceasstring' => array ( 0 => 'string', ), @@ -51963,52 +51963,52 @@ array ( 0 => 'string', ), - 'RarArchive::__toString' => + 'rararchive::__tostring' => array ( 0 => 'string', ), - 'RarArchive::close' => + 'rararchive::close' => array ( 0 => 'bool', ), - 'RarArchive::getComment' => + 'rararchive::getcomment' => array ( 0 => 'null|string', ), - 'RarArchive::getEntries' => + 'rararchive::getentries' => array ( 0 => 'array|false', ), - 'RarArchive::getEntry' => + 'rararchive::getentry' => array ( 0 => 'RarEntry|false', 'entryname' => 'string', ), - 'RarArchive::isBroken' => + 'rararchive::isbroken' => array ( 0 => 'bool', ), - 'RarArchive::isSolid' => + 'rararchive::issolid' => array ( 0 => 'bool', ), - 'RarArchive::open' => + 'rararchive::open' => array ( 0 => 'RarArchive|false', 'filename' => 'string', 'password=' => 'string', 'volume_callback=' => 'callable', ), - 'RarArchive::setAllowBroken' => + 'rararchive::setallowbroken' => array ( 0 => 'bool', 'allow_broken' => 'bool', ), - 'RarEntry::__toString' => + 'rarentry::__tostring' => array ( 0 => 'string', ), - 'RarEntry::extract' => + 'rarentry::extract' => array ( 0 => 'bool', 'dir' => 'string', @@ -52016,88 +52016,88 @@ 'password=' => 'string', 'extended_data=' => 'bool', ), - 'RarEntry::getAttr' => + 'rarentry::getattr' => array ( 0 => 'false|int', ), - 'RarEntry::getCrc' => + 'rarentry::getcrc' => array ( 0 => 'false|string', ), - 'RarEntry::getFileTime' => + 'rarentry::getfiletime' => array ( 0 => 'false|string', ), - 'RarEntry::getHostOs' => + 'rarentry::gethostos' => array ( 0 => 'false|int', ), - 'RarEntry::getMethod' => + 'rarentry::getmethod' => array ( 0 => 'false|int', ), - 'RarEntry::getName' => + 'rarentry::getname' => array ( 0 => 'false|string', ), - 'RarEntry::getPackedSize' => + 'rarentry::getpackedsize' => array ( 0 => 'false|int', ), - 'RarEntry::getStream' => + 'rarentry::getstream' => array ( 0 => 'false|resource', 'password=' => 'string', ), - 'RarEntry::getUnpackedSize' => + 'rarentry::getunpackedsize' => array ( 0 => 'false|int', ), - 'RarEntry::getVersion' => + 'rarentry::getversion' => array ( 0 => 'false|int', ), - 'RarEntry::isDirectory' => + 'rarentry::isdirectory' => array ( 0 => 'bool', ), - 'RarEntry::isEncrypted' => + 'rarentry::isencrypted' => array ( 0 => 'bool', ), - 'RarException::getCode' => + 'rarexception::getcode' => array ( 0 => 'int', ), - 'RarException::getFile' => + 'rarexception::getfile' => array ( 0 => 'string', ), - 'RarException::getLine' => + 'rarexception::getline' => array ( 0 => 'int', ), - 'RarException::getMessage' => + 'rarexception::getmessage' => array ( 0 => 'string', ), - 'RarException::getPrevious' => + 'rarexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'RarException::getTrace' => + 'rarexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'RarException::getTraceAsString' => + 'rarexception::gettraceasstring' => array ( 0 => 'string', ), - 'RarException::isUsingExceptions' => + 'rarexception::isusingexceptions' => array ( 0 => 'bool', ), - 'RarException::setUsingExceptions' => + 'rarexception::setusingexceptions' => array ( 0 => 'RarEntry', 'using_exceptions' => 'bool', @@ -52228,11 +52228,11 @@ 'request' => 'string', 'string' => 'string', ), - 'rectObj::__construct' => + 'rectobj::__construct' => array ( 0 => 'void', ), - 'rectObj::draw' => + 'rectobj::draw' => array ( 0 => 'int', 'map' => 'mapObj', @@ -52241,29 +52241,29 @@ 'class_index' => 'int', 'text' => 'string', ), - 'rectObj::fit' => + 'rectobj::fit' => array ( 0 => 'float', 'width' => 'int', 'height' => 'int', ), - 'rectObj::ms_newRectObj' => + 'rectobj::ms_newrectobj' => array ( 0 => 'rectObj', ), - 'rectObj::project' => + 'rectobj::project' => array ( 0 => 'int', 'in' => 'projectionObj', 'out' => 'projectionObj', ), - 'rectObj::set' => + 'rectobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'rectObj::setextent' => + 'rectobj::setextent' => array ( 0 => 'void', 'minx' => 'float', @@ -52271,583 +52271,583 @@ 'maxx' => 'float', 'maxy' => 'float', ), - 'RecursiveArrayIterator::__construct' => + 'recursivearrayiterator::__construct' => array ( 0 => 'void', 'array=' => 'array|object', 'flags=' => 'int', ), - 'RecursiveArrayIterator::append' => + 'recursivearrayiterator::append' => array ( 0 => 'void', 'value' => 'mixed', ), - 'RecursiveArrayIterator::asort' => + 'recursivearrayiterator::asort' => array ( 0 => 'true', 'flags=' => 'int', ), - 'RecursiveArrayIterator::count' => + 'recursivearrayiterator::count' => array ( 0 => 'int', ), - 'RecursiveArrayIterator::current' => + 'recursivearrayiterator::current' => array ( 0 => 'mixed', ), - 'RecursiveArrayIterator::getArrayCopy' => + 'recursivearrayiterator::getarraycopy' => array ( 0 => 'array', ), - 'RecursiveArrayIterator::getChildren' => + 'recursivearrayiterator::getchildren' => array ( 0 => 'RecursiveArrayIterator|null', ), - 'RecursiveArrayIterator::getFlags' => + 'recursivearrayiterator::getflags' => array ( 0 => 'int', ), - 'RecursiveArrayIterator::hasChildren' => + 'recursivearrayiterator::haschildren' => array ( 0 => 'bool', ), - 'RecursiveArrayIterator::key' => + 'recursivearrayiterator::key' => array ( 0 => 'int|null|string', ), - 'RecursiveArrayIterator::ksort' => + 'recursivearrayiterator::ksort' => array ( 0 => 'true', 'flags=' => 'int', ), - 'RecursiveArrayIterator::natcasesort' => + 'recursivearrayiterator::natcasesort' => array ( 0 => 'true', ), - 'RecursiveArrayIterator::natsort' => + 'recursivearrayiterator::natsort' => array ( 0 => 'true', ), - 'RecursiveArrayIterator::next' => + 'recursivearrayiterator::next' => array ( 0 => 'void', ), - 'RecursiveArrayIterator::offsetExists' => + 'recursivearrayiterator::offsetexists' => array ( 0 => 'bool', 'key' => 'int|string', ), - 'RecursiveArrayIterator::offsetGet' => + 'recursivearrayiterator::offsetget' => array ( 0 => 'mixed', 'key' => 'int|string', ), - 'RecursiveArrayIterator::offsetSet' => + 'recursivearrayiterator::offsetset' => array ( 0 => 'void', 'key' => 'int|null|string', 'value' => 'string', ), - 'RecursiveArrayIterator::offsetUnset' => + 'recursivearrayiterator::offsetunset' => array ( 0 => 'void', 'key' => 'int|string', ), - 'RecursiveArrayIterator::rewind' => + 'recursivearrayiterator::rewind' => array ( 0 => 'void', ), - 'RecursiveArrayIterator::seek' => + 'recursivearrayiterator::seek' => array ( 0 => 'void', 'offset' => 'int', ), - 'RecursiveArrayIterator::serialize' => + 'recursivearrayiterator::serialize' => array ( 0 => 'string', ), - 'RecursiveArrayIterator::setFlags' => + 'recursivearrayiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'RecursiveArrayIterator::uasort' => + 'recursivearrayiterator::uasort' => array ( 0 => 'true', 'callback' => 'callable(mixed, mixed):int', ), - 'RecursiveArrayIterator::uksort' => + 'recursivearrayiterator::uksort' => array ( 0 => 'true', 'callback' => 'callable(mixed, mixed):int', ), - 'RecursiveArrayIterator::unserialize' => + 'recursivearrayiterator::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'RecursiveArrayIterator::valid' => + 'recursivearrayiterator::valid' => array ( 0 => 'bool', ), - 'RecursiveCachingIterator::__construct' => + 'recursivecachingiterator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', 'flags=' => 'int', ), - 'RecursiveCachingIterator::__toString' => + 'recursivecachingiterator::__tostring' => array ( 0 => 'string', ), - 'RecursiveCachingIterator::count' => + 'recursivecachingiterator::count' => array ( 0 => 'int', ), - 'RecursiveCachingIterator::current' => + 'recursivecachingiterator::current' => array ( 0 => 'void', ), - 'RecursiveCachingIterator::getCache' => + 'recursivecachingiterator::getcache' => array ( 0 => 'array', ), - 'RecursiveCachingIterator::getChildren' => + 'recursivecachingiterator::getchildren' => array ( 0 => 'RecursiveCachingIterator|null', ), - 'RecursiveCachingIterator::getFlags' => + 'recursivecachingiterator::getflags' => array ( 0 => 'int', ), - 'RecursiveCachingIterator::getInnerIterator' => + 'recursivecachingiterator::getinneriterator' => array ( 0 => 'Iterator|null', ), - 'RecursiveCachingIterator::hasChildren' => + 'recursivecachingiterator::haschildren' => array ( 0 => 'bool', ), - 'RecursiveCachingIterator::hasNext' => + 'recursivecachingiterator::hasnext' => array ( 0 => 'bool', ), - 'RecursiveCachingIterator::key' => + 'recursivecachingiterator::key' => array ( 0 => 'scalar', ), - 'RecursiveCachingIterator::next' => + 'recursivecachingiterator::next' => array ( 0 => 'void', ), - 'RecursiveCachingIterator::offsetExists' => + 'recursivecachingiterator::offsetexists' => array ( 0 => 'bool', 'key' => 'string', ), - 'RecursiveCachingIterator::offsetGet' => + 'recursivecachingiterator::offsetget' => array ( 0 => 'string', 'key' => 'string', ), - 'RecursiveCachingIterator::offsetSet' => + 'recursivecachingiterator::offsetset' => array ( 0 => 'void', 'key' => 'string', 'value' => 'string', ), - 'RecursiveCachingIterator::offsetUnset' => + 'recursivecachingiterator::offsetunset' => array ( 0 => 'void', 'key' => 'string', ), - 'RecursiveCachingIterator::rewind' => + 'recursivecachingiterator::rewind' => array ( 0 => 'void', ), - 'RecursiveCachingIterator::setFlags' => + 'recursivecachingiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'RecursiveCachingIterator::valid' => + 'recursivecachingiterator::valid' => array ( 0 => 'bool', ), - 'RecursiveCallbackFilterIterator::__construct' => + 'recursivecallbackfilteriterator::__construct' => array ( 0 => 'void', 'iterator' => 'RecursiveIterator', 'callback' => 'callable(mixed, mixed=, mixed=):bool', ), - 'RecursiveCallbackFilterIterator::accept' => + 'recursivecallbackfilteriterator::accept' => array ( 0 => 'bool', ), - 'RecursiveCallbackFilterIterator::current' => + 'recursivecallbackfilteriterator::current' => array ( 0 => 'mixed', ), - 'RecursiveCallbackFilterIterator::getChildren' => + 'recursivecallbackfilteriterator::getchildren' => array ( 0 => 'RecursiveCallbackFilterIterator', ), - 'RecursiveCallbackFilterIterator::getInnerIterator' => + 'recursivecallbackfilteriterator::getinneriterator' => array ( 0 => 'Iterator|null', ), - 'RecursiveCallbackFilterIterator::hasChildren' => + 'recursivecallbackfilteriterator::haschildren' => array ( 0 => 'bool', ), - 'RecursiveCallbackFilterIterator::key' => + 'recursivecallbackfilteriterator::key' => array ( 0 => 'scalar', ), - 'RecursiveCallbackFilterIterator::next' => + 'recursivecallbackfilteriterator::next' => array ( 0 => 'void', ), - 'RecursiveCallbackFilterIterator::rewind' => + 'recursivecallbackfilteriterator::rewind' => array ( 0 => 'void', ), - 'RecursiveCallbackFilterIterator::valid' => + 'recursivecallbackfilteriterator::valid' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::__construct' => + 'recursivedirectoryiterator::__construct' => array ( 0 => 'void', 'directory' => 'string', 'flags=' => 'int', ), - 'RecursiveDirectoryIterator::__toString' => + 'recursivedirectoryiterator::__tostring' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::current' => + 'recursivedirectoryiterator::current' => array ( 0 => 'FilesystemIterator|SplFileInfo|string', ), - 'RecursiveDirectoryIterator::getATime' => + 'recursivedirectoryiterator::getatime' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getBasename' => + 'recursivedirectoryiterator::getbasename' => array ( 0 => 'string', 'suffix=' => 'string', ), - 'RecursiveDirectoryIterator::getChildren' => + 'recursivedirectoryiterator::getchildren' => array ( 0 => 'RecursiveDirectoryIterator', ), - 'RecursiveDirectoryIterator::getCTime' => + 'recursivedirectoryiterator::getctime' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getExtension' => + 'recursivedirectoryiterator::getextension' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::getFileInfo' => + 'recursivedirectoryiterator::getfileinfo' => array ( 0 => 'SplFileInfo', 'class=' => 'class-string|null', ), - 'RecursiveDirectoryIterator::getFilename' => + 'recursivedirectoryiterator::getfilename' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::getFlags' => + 'recursivedirectoryiterator::getflags' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getGroup' => + 'recursivedirectoryiterator::getgroup' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getInode' => + 'recursivedirectoryiterator::getinode' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getLinkTarget' => + 'recursivedirectoryiterator::getlinktarget' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::getMTime' => + 'recursivedirectoryiterator::getmtime' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getOwner' => + 'recursivedirectoryiterator::getowner' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getPath' => + 'recursivedirectoryiterator::getpath' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::getPathInfo' => + 'recursivedirectoryiterator::getpathinfo' => array ( 0 => 'SplFileInfo|null', 'class=' => 'class-string|null', ), - 'RecursiveDirectoryIterator::getPathname' => + 'recursivedirectoryiterator::getpathname' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::getPerms' => + 'recursivedirectoryiterator::getperms' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getRealPath' => + 'recursivedirectoryiterator::getrealpath' => array ( 0 => 'non-falsy-string', ), - 'RecursiveDirectoryIterator::getSize' => + 'recursivedirectoryiterator::getsize' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getSubPath' => + 'recursivedirectoryiterator::getsubpath' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::getSubPathname' => + 'recursivedirectoryiterator::getsubpathname' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::getType' => + 'recursivedirectoryiterator::gettype' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::hasChildren' => + 'recursivedirectoryiterator::haschildren' => array ( 0 => 'bool', 'allowLinks=' => 'bool', ), - 'RecursiveDirectoryIterator::isDir' => + 'recursivedirectoryiterator::isdir' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::isDot' => + 'recursivedirectoryiterator::isdot' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::isExecutable' => + 'recursivedirectoryiterator::isexecutable' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::isFile' => + 'recursivedirectoryiterator::isfile' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::isLink' => + 'recursivedirectoryiterator::islink' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::isReadable' => + 'recursivedirectoryiterator::isreadable' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::isWritable' => + 'recursivedirectoryiterator::iswritable' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::key' => + 'recursivedirectoryiterator::key' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::next' => + 'recursivedirectoryiterator::next' => array ( 0 => 'void', ), - 'RecursiveDirectoryIterator::openFile' => + 'recursivedirectoryiterator::openfile' => array ( 0 => 'SplFileObject', 'mode=' => 'string', 'useIncludePath=' => 'bool', 'context=' => 'null|resource', ), - 'RecursiveDirectoryIterator::rewind' => + 'recursivedirectoryiterator::rewind' => array ( 0 => 'void', ), - 'RecursiveDirectoryIterator::seek' => + 'recursivedirectoryiterator::seek' => array ( 0 => 'void', 'offset' => 'int', ), - 'RecursiveDirectoryIterator::setFileClass' => + 'recursivedirectoryiterator::setfileclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'RecursiveDirectoryIterator::setFlags' => + 'recursivedirectoryiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'RecursiveDirectoryIterator::setInfoClass' => + 'recursivedirectoryiterator::setinfoclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'RecursiveDirectoryIterator::valid' => + 'recursivedirectoryiterator::valid' => array ( 0 => 'bool', ), - 'RecursiveFilterIterator::__construct' => + 'recursivefilteriterator::__construct' => array ( 0 => 'void', 'iterator' => 'RecursiveIterator', ), - 'RecursiveFilterIterator::accept' => + 'recursivefilteriterator::accept' => array ( 0 => 'bool', ), - 'RecursiveFilterIterator::current' => + 'recursivefilteriterator::current' => array ( 0 => 'mixed', ), - 'RecursiveFilterIterator::getChildren' => + 'recursivefilteriterator::getchildren' => array ( 0 => 'RecursiveFilterIterator|null', ), - 'RecursiveFilterIterator::getInnerIterator' => + 'recursivefilteriterator::getinneriterator' => array ( 0 => 'Iterator|null', ), - 'RecursiveFilterIterator::hasChildren' => + 'recursivefilteriterator::haschildren' => array ( 0 => 'bool', ), - 'RecursiveFilterIterator::key' => + 'recursivefilteriterator::key' => array ( 0 => 'mixed', ), - 'RecursiveFilterIterator::next' => + 'recursivefilteriterator::next' => array ( 0 => 'void', ), - 'RecursiveFilterIterator::rewind' => + 'recursivefilteriterator::rewind' => array ( 0 => 'void', ), - 'RecursiveFilterIterator::valid' => + 'recursivefilteriterator::valid' => array ( 0 => 'bool', ), - 'RecursiveIterator::__construct' => + 'recursiveiterator::__construct' => array ( 0 => 'void', ), - 'RecursiveIterator::current' => + 'recursiveiterator::current' => array ( 0 => 'mixed', ), - 'RecursiveIterator::getChildren' => + 'recursiveiterator::getchildren' => array ( 0 => 'RecursiveIterator|null', ), - 'RecursiveIterator::hasChildren' => + 'recursiveiterator::haschildren' => array ( 0 => 'bool', ), - 'RecursiveIterator::key' => + 'recursiveiterator::key' => array ( 0 => 'int|string', ), - 'RecursiveIterator::next' => + 'recursiveiterator::next' => array ( 0 => 'void', ), - 'RecursiveIterator::rewind' => + 'recursiveiterator::rewind' => array ( 0 => 'void', ), - 'RecursiveIterator::valid' => + 'recursiveiterator::valid' => array ( 0 => 'bool', ), - 'RecursiveIteratorIterator::__construct' => + 'recursiveiteratoriterator::__construct' => array ( 0 => 'void', 'iterator' => 'IteratorAggregate|RecursiveIterator', 'mode=' => 'int', 'flags=' => 'int', ), - 'RecursiveIteratorIterator::beginChildren' => + 'recursiveiteratoriterator::beginchildren' => array ( 0 => 'void', ), - 'RecursiveIteratorIterator::beginIteration' => + 'recursiveiteratoriterator::beginiteration' => array ( 0 => 'void', ), - 'RecursiveIteratorIterator::callGetChildren' => + 'recursiveiteratoriterator::callgetchildren' => array ( 0 => 'RecursiveIterator|null', ), - 'RecursiveIteratorIterator::callHasChildren' => + 'recursiveiteratoriterator::callhaschildren' => array ( 0 => 'bool', ), - 'RecursiveIteratorIterator::current' => + 'recursiveiteratoriterator::current' => array ( 0 => 'mixed', ), - 'RecursiveIteratorIterator::endChildren' => + 'recursiveiteratoriterator::endchildren' => array ( 0 => 'void', ), - 'RecursiveIteratorIterator::endIteration' => + 'recursiveiteratoriterator::enditeration' => array ( 0 => 'void', ), - 'RecursiveIteratorIterator::getDepth' => + 'recursiveiteratoriterator::getdepth' => array ( 0 => 'int', ), - 'RecursiveIteratorIterator::getInnerIterator' => + 'recursiveiteratoriterator::getinneriterator' => array ( 0 => 'RecursiveIterator', ), - 'RecursiveIteratorIterator::getMaxDepth' => + 'recursiveiteratoriterator::getmaxdepth' => array ( 0 => 'false|int', ), - 'RecursiveIteratorIterator::getSubIterator' => + 'recursiveiteratoriterator::getsubiterator' => array ( 0 => 'RecursiveIterator|null', 'level=' => 'int|null', ), - 'RecursiveIteratorIterator::key' => + 'recursiveiteratoriterator::key' => array ( 0 => 'mixed', ), - 'RecursiveIteratorIterator::next' => + 'recursiveiteratoriterator::next' => array ( 0 => 'void', ), - 'RecursiveIteratorIterator::nextElement' => + 'recursiveiteratoriterator::nextelement' => array ( 0 => 'void', ), - 'RecursiveIteratorIterator::rewind' => + 'recursiveiteratoriterator::rewind' => array ( 0 => 'void', ), - 'RecursiveIteratorIterator::setMaxDepth' => + 'recursiveiteratoriterator::setmaxdepth' => array ( 0 => 'void', 'maxDepth=' => 'int', ), - 'RecursiveIteratorIterator::valid' => + 'recursiveiteratoriterator::valid' => array ( 0 => 'bool', ), - 'RecursiveRegexIterator::__construct' => + 'recursiveregexiterator::__construct' => array ( 0 => 'void', 'iterator' => 'RecursiveIterator', @@ -52856,74 +52856,74 @@ 'flags=' => 'int', 'pregFlags=' => 'int', ), - 'RecursiveRegexIterator::accept' => + 'recursiveregexiterator::accept' => array ( 0 => 'bool', ), - 'RecursiveRegexIterator::current' => + 'recursiveregexiterator::current' => array ( 0 => 'mixed', ), - 'RecursiveRegexIterator::getChildren' => + 'recursiveregexiterator::getchildren' => array ( 0 => 'RecursiveRegexIterator', ), - 'RecursiveRegexIterator::getFlags' => + 'recursiveregexiterator::getflags' => array ( 0 => 'int', ), - 'RecursiveRegexIterator::getInnerIterator' => + 'recursiveregexiterator::getinneriterator' => array ( 0 => 'Iterator|null', ), - 'RecursiveRegexIterator::getMode' => + 'recursiveregexiterator::getmode' => array ( 0 => 'int', ), - 'RecursiveRegexIterator::getPregFlags' => + 'recursiveregexiterator::getpregflags' => array ( 0 => 'int', ), - 'RecursiveRegexIterator::getRegex' => + 'recursiveregexiterator::getregex' => array ( 0 => 'string', ), - 'RecursiveRegexIterator::hasChildren' => + 'recursiveregexiterator::haschildren' => array ( 0 => 'bool', ), - 'RecursiveRegexIterator::key' => + 'recursiveregexiterator::key' => array ( 0 => 'mixed', ), - 'RecursiveRegexIterator::next' => + 'recursiveregexiterator::next' => array ( 0 => 'void', ), - 'RecursiveRegexIterator::rewind' => + 'recursiveregexiterator::rewind' => array ( 0 => 'void', ), - 'RecursiveRegexIterator::setFlags' => + 'recursiveregexiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'RecursiveRegexIterator::setMode' => + 'recursiveregexiterator::setmode' => array ( 0 => 'void', 'mode' => 'int', ), - 'RecursiveRegexIterator::setPregFlags' => + 'recursiveregexiterator::setpregflags' => array ( 0 => 'void', 'pregFlags' => 'int', ), - 'RecursiveRegexIterator::valid' => + 'recursiveregexiterator::valid' => array ( 0 => 'bool', ), - 'RecursiveTreeIterator::__construct' => + 'recursivetreeiterator::__construct' => array ( 0 => 'void', 'iterator' => 'IteratorAggregate|RecursiveIterator', @@ -52931,147 +52931,147 @@ 'cachingIteratorFlags=' => 'int', 'mode=' => 'int', ), - 'RecursiveTreeIterator::beginChildren' => + 'recursivetreeiterator::beginchildren' => array ( 0 => 'void', ), - 'RecursiveTreeIterator::beginIteration' => + 'recursivetreeiterator::beginiteration' => array ( 0 => 'void', ), - 'RecursiveTreeIterator::callGetChildren' => + 'recursivetreeiterator::callgetchildren' => array ( 0 => 'RecursiveIterator|null', ), - 'RecursiveTreeIterator::callHasChildren' => + 'recursivetreeiterator::callhaschildren' => array ( 0 => 'bool', ), - 'RecursiveTreeIterator::current' => + 'recursivetreeiterator::current' => array ( 0 => 'string', ), - 'RecursiveTreeIterator::endChildren' => + 'recursivetreeiterator::endchildren' => array ( 0 => 'void', ), - 'RecursiveTreeIterator::endIteration' => + 'recursivetreeiterator::enditeration' => array ( 0 => 'void', ), - 'RecursiveTreeIterator::getDepth' => + 'recursivetreeiterator::getdepth' => array ( 0 => 'int', ), - 'RecursiveTreeIterator::getEntry' => + 'recursivetreeiterator::getentry' => array ( 0 => 'string', ), - 'RecursiveTreeIterator::getInnerIterator' => + 'recursivetreeiterator::getinneriterator' => array ( 0 => 'RecursiveIterator', ), - 'RecursiveTreeIterator::getMaxDepth' => + 'recursivetreeiterator::getmaxdepth' => array ( 0 => 'false|int', ), - 'RecursiveTreeIterator::getPostfix' => + 'recursivetreeiterator::getpostfix' => array ( 0 => 'string', ), - 'RecursiveTreeIterator::getPrefix' => + 'recursivetreeiterator::getprefix' => array ( 0 => 'string', ), - 'RecursiveTreeIterator::getSubIterator' => + 'recursivetreeiterator::getsubiterator' => array ( 0 => 'RecursiveIterator|null', 'level=' => 'int|null', ), - 'RecursiveTreeIterator::key' => + 'recursivetreeiterator::key' => array ( 0 => 'string', ), - 'RecursiveTreeIterator::next' => + 'recursivetreeiterator::next' => array ( 0 => 'void', ), - 'RecursiveTreeIterator::nextElement' => + 'recursivetreeiterator::nextelement' => array ( 0 => 'void', ), - 'RecursiveTreeIterator::rewind' => + 'recursivetreeiterator::rewind' => array ( 0 => 'void', ), - 'RecursiveTreeIterator::setMaxDepth' => + 'recursivetreeiterator::setmaxdepth' => array ( 0 => 'void', 'maxDepth=' => 'int', ), - 'RecursiveTreeIterator::setPostfix' => + 'recursivetreeiterator::setpostfix' => array ( 0 => 'void', 'postfix' => 'string', ), - 'RecursiveTreeIterator::setPrefixPart' => + 'recursivetreeiterator::setprefixpart' => array ( 0 => 'void', 'part' => 'int', 'value' => 'string', ), - 'RecursiveTreeIterator::valid' => + 'recursivetreeiterator::valid' => array ( 0 => 'bool', ), - 'Redis::__construct' => + 'redis::__construct' => array ( 0 => 'void', ), - 'Redis::__destruct' => + 'redis::__destruct' => array ( 0 => 'void', ), - 'Redis::_prefix' => + 'redis::_prefix' => array ( 0 => 'string', 'value' => 'mixed', ), - 'Redis::_serialize' => + 'redis::_serialize' => array ( 0 => 'mixed', 'value' => 'mixed', ), - 'Redis::_unserialize' => + 'redis::_unserialize' => array ( 0 => 'mixed', 'value' => 'string', ), - 'Redis::append' => + 'redis::append' => array ( 0 => 'int', 'key' => 'string', 'value' => 'string', ), - 'Redis::auth' => + 'redis::auth' => array ( 0 => 'bool', 'password' => 'string', ), - 'Redis::bgRewriteAOF' => + 'redis::bgrewriteaof' => array ( 0 => 'bool', ), - 'Redis::bgSave' => + 'redis::bgsave' => array ( 0 => 'bool', ), - 'Redis::bitCount' => + 'redis::bitcount' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::bitOp' => + 'redis::bitop' => array ( 0 => 'int', 'operation' => 'string', @@ -53079,7 +53079,7 @@ 'key' => 'string', '...other_keys=' => 'string', ), - 'Redis::bitpos' => + 'redis::bitpos' => array ( 0 => 'int', 'key' => 'string', @@ -53087,66 +53087,66 @@ 'start=' => 'int', 'end=' => 'int', ), - 'Redis::blPop' => + 'redis::blpop' => array ( 0 => 'array', 'keys' => 'array', 'timeout' => 'int', ), - 'Redis::blPop\'1' => + 'redis::blpop\'1' => array ( 0 => 'array', 'key' => 'string', 'timeout_or_key' => 'int|string', '...extra_args' => 'int|string', ), - 'Redis::brPop' => + 'redis::brpop' => array ( 0 => 'array', 'keys' => 'array', 'timeout' => 'int', ), - 'Redis::brPop\'1' => + 'redis::brpop\'1' => array ( 0 => 'array', 'key' => 'string', 'timeout_or_key' => 'int|string', '...extra_args' => 'int|string', ), - 'Redis::brpoplpush' => + 'redis::brpoplpush' => array ( 0 => 'false|string', 'srcKey' => 'string', 'dstKey' => 'string', 'timeout' => 'int', ), - 'Redis::clearLastError' => + 'redis::clearlasterror' => array ( 0 => 'bool', ), - 'Redis::client' => + 'redis::client' => array ( 0 => 'mixed', 'command' => 'string', 'arg=' => 'string', ), - 'Redis::close' => + 'redis::close' => array ( 0 => 'bool', ), - 'Redis::command' => + 'redis::command' => array ( 0 => 'mixed', '...args' => 'mixed', ), - 'Redis::config' => + 'redis::config' => array ( 0 => 'string', 'operation' => 'string', 'key' => 'string', 'value=' => 'string', ), - 'Redis::connect' => + 'redis::connect' => array ( 0 => 'bool', 'host' => 'string', @@ -53156,133 +53156,133 @@ 'retry_interval=' => 'int|null', 'read_timeout=' => 'float', ), - 'Redis::dbSize' => + 'redis::dbsize' => array ( 0 => 'int', ), - 'Redis::debug' => + 'redis::debug' => array ( 0 => 'mixed', 'key' => 'mixed', ), - 'Redis::decr' => + 'redis::decr' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::decrBy' => + 'redis::decrby' => array ( 0 => 'int', 'key' => 'string', 'value' => 'int', ), - 'Redis::decrByFloat' => + 'redis::decrbyfloat' => array ( 0 => 'float', 'key' => 'string', 'value' => 'float', ), - 'Redis::del' => + 'redis::del' => array ( 0 => 'int', 'key' => 'string', '...args' => 'string', ), - 'Redis::del\'1' => + 'redis::del\'1' => array ( 0 => 'int', 'key' => 'array', ), - 'Redis::delete' => + 'redis::delete' => array ( 0 => 'int', 'key' => 'string', '...args' => 'string', ), - 'Redis::delete\'1' => + 'redis::delete\'1' => array ( 0 => 'int', 'key' => 'array', ), - 'Redis::discard' => + 'redis::discard' => array ( 0 => 'mixed', ), - 'Redis::dump' => + 'redis::dump' => array ( 0 => 'false|string', 'key' => 'string', ), - 'Redis::echo' => + 'redis::echo' => array ( 0 => 'string', 'message' => 'string', ), - 'Redis::eval' => + 'redis::eval' => array ( 0 => 'mixed', 'script' => 'mixed', 'args=' => 'mixed', 'numKeys=' => 'mixed', ), - 'Redis::evalSha' => + 'redis::evalsha' => array ( 0 => 'mixed', 'scriptSha' => 'string', 'args=' => 'array', 'numKeys=' => 'int', ), - 'Redis::evaluate' => + 'redis::evaluate' => array ( 0 => 'mixed', 'script' => 'string', 'args=' => 'array', 'numKeys=' => 'int', ), - 'Redis::evaluateSha' => + 'redis::evaluatesha' => array ( 0 => 'mixed', 'scriptSha' => 'string', 'args=' => 'array', 'numKeys=' => 'int', ), - 'Redis::exec' => + 'redis::exec' => array ( 0 => 'array', ), - 'Redis::exists' => + 'redis::exists' => array ( 0 => 'int', 'keys' => 'array|string', ), - 'Redis::exists\'1' => + 'redis::exists\'1' => array ( 0 => 'int', '...keys' => 'string', ), - 'Redis::expire' => + 'redis::expire' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', ), - 'Redis::expireAt' => + 'redis::expireat' => array ( 0 => 'bool', 'key' => 'string', 'expiry' => 'int', ), - 'Redis::flushAll' => + 'redis::flushall' => array ( 0 => 'bool', 'async=' => 'bool', ), - 'Redis::flushDb' => + 'redis::flushdb' => array ( 0 => 'bool', 'async=' => 'bool', ), - 'Redis::geoAdd' => + 'redis::geoadd' => array ( 0 => 'int', 'key' => 'string', @@ -53291,7 +53291,7 @@ 'member' => 'string', '...other_triples=' => 'float|int|string', ), - 'Redis::geoDist' => + 'redis::geodist' => array ( 0 => 'float', 'key' => 'string', @@ -53299,21 +53299,21 @@ 'member2' => 'string', 'unit=' => 'string', ), - 'Redis::geoHash' => + 'redis::geohash' => array ( 0 => 'array', 'key' => 'string', 'member' => 'string', '...other_members=' => 'string', ), - 'Redis::geoPos' => + 'redis::geopos' => array ( 0 => 'array', 'key' => 'string', 'member' => 'string', '...members=' => 'string', ), - 'Redis::geoRadius' => + 'redis::georadius' => array ( 0 => 'array|int', 'key' => 'string', @@ -53323,7 +53323,7 @@ 'unit' => 'float', 'options=' => 'array', ), - 'Redis::geoRadiusByMember' => + 'redis::georadiusbymember' => array ( 0 => 'array|int', 'key' => 'string', @@ -53332,142 +53332,142 @@ 'units' => 'string', 'options=' => 'array', ), - 'Redis::get' => + 'redis::get' => array ( 0 => 'false|string', 'key' => 'string', ), - 'Redis::getAuth' => + 'redis::getauth' => array ( 0 => 'false|null|string', ), - 'Redis::getBit' => + 'redis::getbit' => array ( 0 => 'int', 'key' => 'string', 'offset' => 'int', ), - 'Redis::getDBNum' => + 'redis::getdbnum' => array ( 0 => 'false|int', ), - 'Redis::getHost' => + 'redis::gethost' => array ( 0 => 'false|string', ), - 'Redis::getKeys' => + 'redis::getkeys' => array ( 0 => 'array', 'pattern' => 'string', ), - 'Redis::getLastError' => + 'redis::getlasterror' => array ( 0 => 'null|string', ), - 'Redis::getMode' => + 'redis::getmode' => array ( 0 => 'int', ), - 'Redis::getMultiple' => + 'redis::getmultiple' => array ( 0 => 'array', 'keys' => 'array', ), - 'Redis::getOption' => + 'redis::getoption' => array ( 0 => 'int', 'name' => 'int', ), - 'Redis::getPersistentID' => + 'redis::getpersistentid' => array ( 0 => 'false|null|string', ), - 'Redis::getPort' => + 'redis::getport' => array ( 0 => 'false|int', ), - 'Redis::getRange' => + 'redis::getrange' => array ( 0 => 'int', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'Redis::getReadTimeout' => + 'redis::getreadtimeout' => array ( 0 => 'false|float', ), - 'Redis::getSet' => + 'redis::getset' => array ( 0 => 'string', 'key' => 'string', 'string' => 'string', ), - 'Redis::getTimeout' => + 'redis::gettimeout' => array ( 0 => 'false|float', ), - 'Redis::hDel' => + 'redis::hdel' => array ( 0 => 'false|int', 'key' => 'string', 'hashKey1' => 'string', '...otherHashKeys=' => 'string', ), - 'Redis::hExists' => + 'redis::hexists' => array ( 0 => 'bool', 'key' => 'string', 'hashKey' => 'string', ), - 'Redis::hGet' => + 'redis::hget' => array ( 0 => 'false|string', 'key' => 'string', 'hashKey' => 'string', ), - 'Redis::hGetAll' => + 'redis::hgetall' => array ( 0 => 'array', 'key' => 'string', ), - 'Redis::hIncrBy' => + 'redis::hincrby' => array ( 0 => 'int', 'key' => 'string', 'hashKey' => 'string', 'value' => 'int', ), - 'Redis::hIncrByFloat' => + 'redis::hincrbyfloat' => array ( 0 => 'float', 'key' => 'string', 'field' => 'string', 'increment' => 'float', ), - 'Redis::hKeys' => + 'redis::hkeys' => array ( 0 => 'array', 'key' => 'string', ), - 'Redis::hLen' => + 'redis::hlen' => array ( 0 => 'false|int', 'key' => 'string', ), - 'Redis::hMGet' => + 'redis::hmget' => array ( 0 => 'array', 'key' => 'string', 'hashKeys' => 'array', ), - 'Redis::hMSet' => + 'redis::hmset' => array ( 0 => 'bool', 'key' => 'string', 'hashKeys' => 'array', ), - 'Redis::hScan' => + 'redis::hscan' => array ( 0 => 'array', 'key' => 'string', @@ -53475,86 +53475,86 @@ 'pattern=' => 'string', 'count=' => 'int', ), - 'Redis::hSet' => + 'redis::hset' => array ( 0 => 'false|int', 'key' => 'string', 'hashKey' => 'string', 'value' => 'string', ), - 'Redis::hSetNx' => + 'redis::hsetnx' => array ( 0 => 'bool', 'key' => 'string', 'hashKey' => 'string', 'value' => 'string', ), - 'Redis::hStrLen' => + 'redis::hstrlen' => array ( 0 => 'mixed', 'key' => 'mixed', 'member' => 'mixed', ), - 'Redis::hVals' => + 'redis::hvals' => array ( 0 => 'array', 'key' => 'string', ), - 'Redis::incr' => + 'redis::incr' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::incrBy' => + 'redis::incrby' => array ( 0 => 'int', 'key' => 'string', 'value' => 'int', ), - 'Redis::incrByFloat' => + 'redis::incrbyfloat' => array ( 0 => 'float', 'key' => 'string', 'value' => 'float', ), - 'Redis::info' => + 'redis::info' => array ( 0 => 'array', 'option=' => 'string', ), - 'Redis::isConnected' => + 'redis::isconnected' => array ( 0 => 'bool', ), - 'Redis::keys' => + 'redis::keys' => array ( 0 => 'array', 'pattern' => 'string', ), - 'Redis::lastSave' => + 'redis::lastsave' => array ( 0 => 'int', ), - 'Redis::lGet' => + 'redis::lget' => array ( 0 => 'string', 'key' => 'string', 'index' => 'int', ), - 'Redis::lGetRange' => + 'redis::lgetrange' => array ( 0 => 'array', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'Redis::lIndex' => + 'redis::lindex' => array ( 0 => 'false|string', 'key' => 'string', 'index' => 'int', ), - 'Redis::lInsert' => + 'redis::linsert' => array ( 0 => 'int', 'key' => 'string', @@ -53562,24 +53562,24 @@ 'pivot' => 'string', 'value' => 'string', ), - 'Redis::listTrim' => + 'redis::listtrim' => array ( 0 => 'mixed', 'key' => 'string', 'start' => 'int', 'stop' => 'int', ), - 'Redis::lLen' => + 'redis::llen' => array ( 0 => 'false|int', 'key' => 'string', ), - 'Redis::lPop' => + 'redis::lpop' => array ( 0 => 'false|string', 'key' => 'string', ), - 'Redis::lPush' => + 'redis::lpush' => array ( 0 => 'false|int', 'key' => 'string', @@ -53587,58 +53587,58 @@ 'value2=' => 'string', 'valueN=' => 'string', ), - 'Redis::lPushx' => + 'redis::lpushx' => array ( 0 => 'false|int', 'key' => 'string', 'value' => 'string', ), - 'Redis::lRange' => + 'redis::lrange' => array ( 0 => 'array', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'Redis::lRem' => + 'redis::lrem' => array ( 0 => 'false|int', 'key' => 'string', 'value' => 'string', 'count' => 'int', ), - 'Redis::lRemove' => + 'redis::lremove' => array ( 0 => 'int', 'key' => 'string', 'value' => 'string', 'count' => 'int', ), - 'Redis::lSet' => + 'redis::lset' => array ( 0 => 'bool', 'key' => 'string', 'index' => 'int', 'value' => 'string', ), - 'Redis::lSize' => + 'redis::lsize' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::lTrim' => + 'redis::ltrim' => array ( 0 => 'array|false', 'key' => 'string', 'start' => 'int', 'stop' => 'int', ), - 'Redis::mGet' => + 'redis::mget' => array ( 0 => 'array', 'keys' => 'array', ), - 'Redis::migrate' => + 'redis::migrate' => array ( 0 => 'bool', 'host' => 'string', @@ -53649,34 +53649,34 @@ 'copy=' => 'bool', 'replace=' => 'bool', ), - 'Redis::move' => + 'redis::move' => array ( 0 => 'bool', 'key' => 'string', 'dbindex' => 'int', ), - 'Redis::mSet' => + 'redis::mset' => array ( 0 => 'bool', 'pairs' => 'array', ), - 'Redis::mSetNx' => + 'redis::msetnx' => array ( 0 => 'bool', 'pairs' => 'array', ), - 'Redis::multi' => + 'redis::multi' => array ( 0 => 'Redis', 'mode=' => 'int', ), - 'Redis::object' => + 'redis::object' => array ( 0 => 'false|long|string', 'info' => 'string', 'key' => 'string', ), - 'Redis::open' => + 'redis::open' => array ( 0 => 'bool', 'host' => 'string', @@ -53686,7 +53686,7 @@ 'retry_interval=' => 'int|null', 'read_timeout=' => 'float', ), - 'Redis::pconnect' => + 'redis::pconnect' => array ( 0 => 'bool', 'host' => 'string', @@ -53695,49 +53695,49 @@ 'persistent_id=' => 'string', 'retry_interval=' => 'int|null', ), - 'Redis::persist' => + 'redis::persist' => array ( 0 => 'bool', 'key' => 'string', ), - 'Redis::pExpire' => + 'redis::pexpire' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', ), - 'Redis::pexpireAt' => + 'redis::pexpireat' => array ( 0 => 'bool', 'key' => 'string', 'expiry' => 'int', ), - 'Redis::pfAdd' => + 'redis::pfadd' => array ( 0 => 'bool', 'key' => 'string', 'elements' => 'array', ), - 'Redis::pfCount' => + 'redis::pfcount' => array ( 0 => 'int', 'key' => 'array|string', ), - 'Redis::pfMerge' => + 'redis::pfmerge' => array ( 0 => 'bool', 'destkey' => 'string', 'sourcekeys' => 'array', ), - 'Redis::ping' => + 'redis::ping' => array ( 0 => 'string', ), - 'Redis::pipeline' => + 'redis::pipeline' => array ( 0 => 'Redis', ), - 'Redis::popen' => + 'redis::popen' => array ( 0 => 'bool', 'host' => 'string', @@ -53746,98 +53746,98 @@ 'persistent_id=' => 'string', 'retry_interval=' => 'int|null', ), - 'Redis::psetex' => + 'redis::psetex' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', 'value' => 'string', ), - 'Redis::psubscribe' => + 'redis::psubscribe' => array ( 0 => 'mixed', 'patterns' => 'array', 'callback' => 'array|string', ), - 'Redis::pttl' => + 'redis::pttl' => array ( 0 => 'false|int', 'key' => 'string', ), - 'Redis::publish' => + 'redis::publish' => array ( 0 => 'int', 'channel' => 'string', 'message' => 'string', ), - 'Redis::pubsub' => + 'redis::pubsub' => array ( 0 => 'array|int', 'keyword' => 'string', 'argument=' => 'array|string', ), - 'Redis::punsubscribe' => + 'redis::punsubscribe' => array ( 0 => 'mixed', 'pattern' => 'string', '...other_patterns=' => 'string', ), - 'Redis::randomKey' => + 'redis::randomkey' => array ( 0 => 'string', ), - 'Redis::rawCommand' => + 'redis::rawcommand' => array ( 0 => 'mixed', 'command' => 'string', '...arguments=' => 'mixed', ), - 'Redis::rename' => + 'redis::rename' => array ( 0 => 'bool', 'srckey' => 'string', 'dstkey' => 'string', ), - 'Redis::renameKey' => + 'redis::renamekey' => array ( 0 => 'bool', 'srckey' => 'string', 'dstkey' => 'string', ), - 'Redis::renameNx' => + 'redis::renamenx' => array ( 0 => 'bool', 'srckey' => 'string', 'dstkey' => 'string', ), - 'Redis::resetStat' => + 'redis::resetstat' => array ( 0 => 'bool', ), - 'Redis::restore' => + 'redis::restore' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', 'value' => 'string', ), - 'Redis::role' => + 'redis::role' => array ( 0 => 'array', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'Redis::rPop' => + 'redis::rpop' => array ( 0 => 'false|string', 'key' => 'string', ), - 'Redis::rpoplpush' => + 'redis::rpoplpush' => array ( 0 => 'string', 'srcKey' => 'string', 'dstKey' => 'string', ), - 'Redis::rPush' => + 'redis::rpush' => array ( 0 => 'false|int', 'key' => 'string', @@ -53845,13 +53845,13 @@ 'value2=' => 'string', 'valueN=' => 'string', ), - 'Redis::rPushx' => + 'redis::rpushx' => array ( 0 => 'false|int', 'key' => 'string', 'value' => 'string', ), - 'Redis::sAdd' => + 'redis::sadd' => array ( 0 => 'false|int', 'key' => 'string', @@ -53859,183 +53859,183 @@ 'value2=' => 'string', 'valueN=' => 'string', ), - 'Redis::sAddArray' => + 'redis::saddarray' => array ( 0 => 'bool', 'key' => 'string', 'values' => 'array', ), - 'Redis::save' => + 'redis::save' => array ( 0 => 'bool', ), - 'Redis::scan' => + 'redis::scan' => array ( 0 => 'array|false', '&rw_iterator' => 'int|null', 'pattern=' => 'null|string', 'count=' => 'int|null', ), - 'Redis::sCard' => + 'redis::scard' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::sContains' => + 'redis::scontains' => array ( 0 => 'mixed', 'key' => 'string', 'value' => 'string', ), - 'Redis::script' => + 'redis::script' => array ( 0 => 'mixed', 'command' => 'string', '...args=' => 'mixed', ), - 'Redis::sDiff' => + 'redis::sdiff' => array ( 0 => 'array', 'key1' => 'string', '...other_keys=' => 'string', ), - 'Redis::sDiffStore' => + 'redis::sdiffstore' => array ( 0 => 'false|int', 'dstKey' => 'string', 'key' => 'string', '...other_keys=' => 'string', ), - 'Redis::select' => + 'redis::select' => array ( 0 => 'bool', 'dbindex' => 'int', ), - 'Redis::sendEcho' => + 'redis::sendecho' => array ( 0 => 'string', 'msg' => 'string', ), - 'Redis::set' => + 'redis::set' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'mixed', 'options=' => 'array', ), - 'Redis::set\'1' => + 'redis::set\'1' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'mixed', 'timeout=' => 'int', ), - 'Redis::setBit' => + 'redis::setbit' => array ( 0 => 'int', 'key' => 'string', 'offset' => 'int', 'value' => 'int', ), - 'Redis::setEx' => + 'redis::setex' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', 'value' => 'string', ), - 'Redis::setNx' => + 'redis::setnx' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'Redis::setOption' => + 'redis::setoption' => array ( 0 => 'bool', 'name' => 'int', 'value' => 'mixed', ), - 'Redis::setRange' => + 'redis::setrange' => array ( 0 => 'int', 'key' => 'string', 'offset' => 'int', 'end' => 'int', ), - 'Redis::setTimeout' => + 'redis::settimeout' => array ( 0 => 'mixed', 'key' => 'string', 'ttl' => 'int', ), - 'Redis::sGetMembers' => + 'redis::sgetmembers' => array ( 0 => 'mixed', 'key' => 'string', ), - 'Redis::sInter' => + 'redis::sinter' => array ( 0 => 'array|false', 'key' => 'string', '...other_keys=' => 'string', ), - 'Redis::sInterStore' => + 'redis::sinterstore' => array ( 0 => 'false|int', 'dstKey' => 'string', 'key' => 'string', '...other_keys=' => 'string', ), - 'Redis::sIsMember' => + 'redis::sismember' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'Redis::slave' => + 'redis::slave' => array ( 0 => 'bool', 'host' => 'string', 'port' => 'int', ), - 'Redis::slave\'1' => + 'redis::slave\'1' => array ( 0 => 'bool', 'host' => 'string', 'port' => 'int', ), - 'Redis::slaveof' => + 'redis::slaveof' => array ( 0 => 'bool', 'host=' => 'string', 'port=' => 'int', ), - 'Redis::slowLog' => + 'redis::slowlog' => array ( 0 => 'mixed', 'operation' => 'string', 'length=' => 'int', ), - 'Redis::sMembers' => + 'redis::smembers' => array ( 0 => 'array', 'key' => 'string', ), - 'Redis::sMove' => + 'redis::smove' => array ( 0 => 'bool', 'srcKey' => 'string', 'dstKey' => 'string', 'member' => 'string', ), - 'Redis::sort' => + 'redis::sort' => array ( 0 => 'array|int', 'key' => 'string', 'options=' => 'array', ), - 'Redis::sortAsc' => + 'redis::sortasc' => array ( 0 => 'array', 'key' => 'string', @@ -54045,7 +54045,7 @@ 'end=' => 'int', 'getList=' => 'bool', ), - 'Redis::sortAscAlpha' => + 'redis::sortascalpha' => array ( 0 => 'array', 'key' => 'string', @@ -54055,7 +54055,7 @@ 'end=' => 'int', 'getList=' => 'bool', ), - 'Redis::sortDesc' => + 'redis::sortdesc' => array ( 0 => 'array', 'key' => 'string', @@ -54065,7 +54065,7 @@ 'end=' => 'int', 'getList=' => 'bool', ), - 'Redis::sortDescAlpha' => + 'redis::sortdescalpha' => array ( 0 => 'array', 'key' => 'string', @@ -54075,32 +54075,32 @@ 'end=' => 'int', 'getList=' => 'bool', ), - 'Redis::sPop' => + 'redis::spop' => array ( 0 => 'false|string', 'key' => 'string', ), - 'Redis::sRandMember' => + 'redis::srandmember' => array ( 0 => 'array|false|string', 'key' => 'string', 'count=' => 'int', ), - 'Redis::sRem' => + 'redis::srem' => array ( 0 => 'int', 'key' => 'string', 'member1' => 'string', '...other_members=' => 'string', ), - 'Redis::sRemove' => + 'redis::sremove' => array ( 0 => 'int', 'key' => 'string', 'member1' => 'string', '...other_members=' => 'string', ), - 'Redis::sScan' => + 'redis::sscan' => array ( 0 => 'array|bool', 'key' => 'string', @@ -54108,103 +54108,103 @@ 'pattern=' => 'string', 'count=' => 'int', ), - 'Redis::sSize' => + 'redis::ssize' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::strLen' => + 'redis::strlen' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::subscribe' => + 'redis::subscribe' => array ( 0 => 'mixed|null', 'channels' => 'array', 'callback' => 'array|string', ), - 'Redis::substr' => + 'redis::substr' => array ( 0 => 'mixed', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'Redis::sUnion' => + 'redis::sunion' => array ( 0 => 'array', 'key' => 'string', '...other_keys=' => 'string', ), - 'Redis::sUnionStore' => + 'redis::sunionstore' => array ( 0 => 'int', 'dstKey' => 'string', 'key' => 'string', '...other_keys=' => 'string', ), - 'Redis::swapdb' => + 'redis::swapdb' => array ( 0 => 'bool', 'srcdb' => 'int', 'dstdb' => 'int', ), - 'Redis::time' => + 'redis::time' => array ( 0 => 'array', ), - 'Redis::ttl' => + 'redis::ttl' => array ( 0 => 'false|int', 'key' => 'string', ), - 'Redis::type' => + 'redis::type' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::unlink' => + 'redis::unlink' => array ( 0 => 'int', 'key' => 'string', '...args' => 'string', ), - 'Redis::unlink\'1' => + 'redis::unlink\'1' => array ( 0 => 'int', 'key' => 'array', ), - 'Redis::unsubscribe' => + 'redis::unsubscribe' => array ( 0 => 'mixed', 'channel' => 'string', '...other_channels=' => 'string', ), - 'Redis::unwatch' => + 'redis::unwatch' => array ( 0 => 'mixed', ), - 'Redis::wait' => + 'redis::wait' => array ( 0 => 'int', 'numSlaves' => 'int', 'timeout' => 'int', ), - 'Redis::watch' => + 'redis::watch' => array ( 0 => 'void', 'key' => 'string', '...other_keys=' => 'string', ), - 'Redis::xack' => + 'redis::xack' => array ( 0 => 'mixed', 'str_key' => 'string', 'str_group' => 'string', 'arr_ids' => 'array', ), - 'Redis::xadd' => + 'redis::xadd' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -54213,7 +54213,7 @@ 'i_maxlen=' => 'mixed', 'boo_approximate=' => 'mixed', ), - 'Redis::xclaim' => + 'redis::xclaim' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -54223,13 +54223,13 @@ 'arr_ids' => 'array', 'arr_opts=' => 'array', ), - 'Redis::xdel' => + 'redis::xdel' => array ( 0 => 'mixed', 'str_key' => 'string', 'arr_ids' => 'array', ), - 'Redis::xgroup' => + 'redis::xgroup' => array ( 0 => 'mixed', 'str_operation' => 'string', @@ -54238,19 +54238,19 @@ 'str_arg2=' => 'mixed', 'str_arg3=' => 'mixed', ), - 'Redis::xinfo' => + 'redis::xinfo' => array ( 0 => 'mixed', 'str_cmd' => 'string', 'str_key=' => 'string', 'str_group=' => 'string', ), - 'Redis::xlen' => + 'redis::xlen' => array ( 0 => 'mixed', 'key' => 'mixed', ), - 'Redis::xpending' => + 'redis::xpending' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -54260,7 +54260,7 @@ 'i_count=' => 'mixed', 'str_consumer=' => 'string', ), - 'Redis::xrange' => + 'redis::xrange' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -54268,14 +54268,14 @@ 'str_end' => 'mixed', 'i_count=' => 'mixed', ), - 'Redis::xread' => + 'redis::xread' => array ( 0 => 'mixed', 'arr_streams' => 'array', 'i_count=' => 'mixed', 'i_block=' => 'mixed', ), - 'Redis::xreadgroup' => + 'redis::xreadgroup' => array ( 0 => 'mixed', 'str_group' => 'string', @@ -54284,7 +54284,7 @@ 'i_count=' => 'mixed', 'i_block=' => 'mixed', ), - 'Redis::xrevrange' => + 'redis::xrevrange' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -54292,14 +54292,14 @@ 'str_end' => 'mixed', 'i_count=' => 'mixed', ), - 'Redis::xtrim' => + 'redis::xtrim' => array ( 0 => 'mixed', 'str_key' => 'string', 'i_maxlen' => 'mixed', 'boo_approximate=' => 'mixed', ), - 'Redis::zAdd' => + 'redis::zadd' => array ( 0 => 'int', 'key' => 'string', @@ -54310,7 +54310,7 @@ 'scoreN=' => 'float', 'valueN=' => 'string', ), - 'Redis::zAdd\'1' => + 'redis::zadd\'1' => array ( 0 => 'int', 'options' => 'array', @@ -54322,47 +54322,47 @@ 'scoreN=' => 'float', 'valueN=' => 'string', ), - 'Redis::zCard' => + 'redis::zcard' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::zCount' => + 'redis::zcount' => array ( 0 => 'int', 'key' => 'string', 'start' => 'string', 'end' => 'string', ), - 'Redis::zDelete' => + 'redis::zdelete' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', '...other_members=' => 'string', ), - 'Redis::zDeleteRangeByRank' => + 'redis::zdeleterangebyrank' => array ( 0 => 'mixed', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'Redis::zDeleteRangeByScore' => + 'redis::zdeleterangebyscore' => array ( 0 => 'mixed', 'key' => 'string', 'start' => 'float', 'end' => 'float', ), - 'Redis::zIncrBy' => + 'redis::zincrby' => array ( 0 => 'float', 'key' => 'string', 'value' => 'float', 'member' => 'string', ), - 'Redis::zInter' => + 'redis::zinter' => array ( 0 => 'int', 'Output' => 'string', @@ -54370,7 +54370,7 @@ 'Weights=' => 'array|null', 'aggregateFunction=' => 'string', ), - 'Redis::zInterStore' => + 'redis::zinterstore' => array ( 0 => 'int', 'Output' => 'string', @@ -54378,14 +54378,14 @@ 'Weights=' => 'array|null', 'aggregateFunction=' => 'string', ), - 'Redis::zLexCount' => + 'redis::zlexcount' => array ( 0 => 'int', 'key' => 'string', 'min' => 'string', 'max' => 'string', ), - 'Redis::zRange' => + 'redis::zrange' => array ( 0 => 'array', 'key' => 'string', @@ -54393,7 +54393,7 @@ 'end' => 'int', 'withscores=' => 'bool', ), - 'Redis::zRangeByLex' => + 'redis::zrangebylex' => array ( 0 => 'array|false', 'key' => 'string', @@ -54402,7 +54402,7 @@ 'offset=' => 'int', 'limit=' => 'int', ), - 'Redis::zRangeByScore' => + 'redis::zrangebyscore' => array ( 0 => 'array', 'key' => 'string', @@ -54410,62 +54410,62 @@ 'end' => 'int|string', 'options=' => 'array', ), - 'Redis::zRank' => + 'redis::zrank' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', ), - 'Redis::zRem' => + 'redis::zrem' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', '...other_members=' => 'string', ), - 'Redis::zRemove' => + 'redis::zremove' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', '...other_members=' => 'string', ), - 'Redis::zRemoveRangeByRank' => + 'redis::zremoverangebyrank' => array ( 0 => 'int', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'Redis::zRemoveRangeByScore' => + 'redis::zremoverangebyscore' => array ( 0 => 'int', 'key' => 'string', 'start' => 'float|string', 'end' => 'float|string', ), - 'Redis::zRemRangeByLex' => + 'redis::zremrangebylex' => array ( 0 => 'int', 'key' => 'string', 'min' => 'string', 'max' => 'string', ), - 'Redis::zRemRangeByRank' => + 'redis::zremrangebyrank' => array ( 0 => 'int', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'Redis::zRemRangeByScore' => + 'redis::zremrangebyscore' => array ( 0 => 'int', 'key' => 'string', 'start' => 'float|string', 'end' => 'float|string', ), - 'Redis::zReverseRange' => + 'redis::zreverserange' => array ( 0 => 'array', 'key' => 'string', @@ -54473,7 +54473,7 @@ 'end' => 'int', 'withscore=' => 'bool', ), - 'Redis::zRevRange' => + 'redis::zrevrange' => array ( 0 => 'array', 'key' => 'string', @@ -54481,7 +54481,7 @@ 'end' => 'int', 'withscore=' => 'bool', ), - 'Redis::zRevRangeByLex' => + 'redis::zrevrangebylex' => array ( 0 => 'array', 'key' => 'string', @@ -54490,7 +54490,7 @@ 'offset=' => 'int', 'limit=' => 'int', ), - 'Redis::zRevRangeByScore' => + 'redis::zrevrangebyscore' => array ( 0 => 'array', 'key' => 'string', @@ -54498,13 +54498,13 @@ 'end' => 'string', 'options=' => 'array', ), - 'Redis::zRevRank' => + 'redis::zrevrank' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', ), - 'Redis::zScan' => + 'redis::zscan' => array ( 0 => 'array|bool', 'key' => 'string', @@ -54512,18 +54512,18 @@ 'pattern=' => 'string', 'count=' => 'int', ), - 'Redis::zScore' => + 'redis::zscore' => array ( 0 => 'false|float', 'key' => 'string', 'member' => 'string', ), - 'Redis::zSize' => + 'redis::zsize' => array ( 0 => 'mixed', 'key' => 'string', ), - 'Redis::zUnion' => + 'redis::zunion' => array ( 0 => 'int', 'Output' => 'string', @@ -54531,7 +54531,7 @@ 'Weights=' => 'array|null', 'aggregateFunction=' => 'string', ), - 'Redis::zUnionStore' => + 'redis::zunionstore' => array ( 0 => 'int', 'Output' => 'string', @@ -54539,159 +54539,159 @@ 'Weights=' => 'array|null', 'aggregateFunction=' => 'string', ), - 'RedisArray::__call' => + 'redisarray::__call' => array ( 0 => 'mixed', 'function_name' => 'string', 'arguments' => 'array', ), - 'RedisArray::__construct' => + 'redisarray::__construct' => array ( 0 => 'void', 'name=' => 'string', 'hosts=' => 'array|null', 'opts=' => 'array|null', ), - 'RedisArray::_continuum' => + 'redisarray::_continuum' => array ( 0 => 'mixed', ), - 'RedisArray::_distributor' => + 'redisarray::_distributor' => array ( 0 => 'mixed', ), - 'RedisArray::_function' => + 'redisarray::_function' => array ( 0 => 'string', ), - 'RedisArray::_hosts' => + 'redisarray::_hosts' => array ( 0 => 'array', ), - 'RedisArray::_instance' => + 'redisarray::_instance' => array ( 0 => 'mixed', 'host' => 'mixed', ), - 'RedisArray::_rehash' => + 'redisarray::_rehash' => array ( 0 => 'mixed', 'callable=' => 'callable', ), - 'RedisArray::_target' => + 'redisarray::_target' => array ( 0 => 'string', 'key' => 'string', ), - 'RedisArray::bgsave' => + 'redisarray::bgsave' => array ( 0 => 'mixed', ), - 'RedisArray::del' => + 'redisarray::del' => array ( 0 => 'bool', 'key' => 'string', '...args' => 'string', ), - 'RedisArray::delete' => + 'redisarray::delete' => array ( 0 => 'bool', 'key' => 'string', '...args' => 'string', ), - 'RedisArray::delete\'1' => + 'redisarray::delete\'1' => array ( 0 => 'bool', 'key' => 'array', ), - 'RedisArray::discard' => + 'redisarray::discard' => array ( 0 => 'mixed', ), - 'RedisArray::exec' => + 'redisarray::exec' => array ( 0 => 'array', ), - 'RedisArray::flushAll' => + 'redisarray::flushall' => array ( 0 => 'bool', 'async=' => 'bool', ), - 'RedisArray::flushDb' => + 'redisarray::flushdb' => array ( 0 => 'bool', 'async=' => 'bool', ), - 'RedisArray::getMultiple' => + 'redisarray::getmultiple' => array ( 0 => 'mixed', 'keys' => 'mixed', ), - 'RedisArray::getOption' => + 'redisarray::getoption' => array ( 0 => 'mixed', 'opt' => 'mixed', ), - 'RedisArray::info' => + 'redisarray::info' => array ( 0 => 'array', ), - 'RedisArray::keys' => + 'redisarray::keys' => array ( 0 => 'array', 'pattern' => 'mixed', ), - 'RedisArray::mGet' => + 'redisarray::mget' => array ( 0 => 'array', 'keys' => 'array', ), - 'RedisArray::mSet' => + 'redisarray::mset' => array ( 0 => 'bool', 'pairs' => 'array', ), - 'RedisArray::multi' => + 'redisarray::multi' => array ( 0 => 'RedisArray', 'host' => 'string', 'mode=' => 'int', ), - 'RedisArray::ping' => + 'redisarray::ping' => array ( 0 => 'string', ), - 'RedisArray::save' => + 'redisarray::save' => array ( 0 => 'bool', ), - 'RedisArray::select' => + 'redisarray::select' => array ( 0 => 'mixed', 'index' => 'mixed', ), - 'RedisArray::setOption' => + 'redisarray::setoption' => array ( 0 => 'mixed', 'opt' => 'mixed', 'value' => 'mixed', ), - 'RedisArray::unlink' => + 'redisarray::unlink' => array ( 0 => 'int', 'key' => 'string', '...other_keys=' => 'string', ), - 'RedisArray::unlink\'1' => + 'redisarray::unlink\'1' => array ( 0 => 'int', 'key' => 'array', ), - 'RedisArray::unwatch' => + 'redisarray::unwatch' => array ( 0 => 'mixed', ), - 'RedisCluster::__construct' => + 'rediscluster::__construct' => array ( 0 => 'void', 'name' => 'null|string', @@ -54701,51 +54701,51 @@ 'persistent=' => 'bool', 'auth=' => 'null|string', ), - 'RedisCluster::_masters' => + 'rediscluster::_masters' => array ( 0 => 'array', ), - 'RedisCluster::_prefix' => + 'rediscluster::_prefix' => array ( 0 => 'string', 'value' => 'mixed', ), - 'RedisCluster::_redir' => + 'rediscluster::_redir' => array ( 0 => 'mixed', ), - 'RedisCluster::_serialize' => + 'rediscluster::_serialize' => array ( 0 => 'mixed', 'value' => 'mixed', ), - 'RedisCluster::_unserialize' => + 'rediscluster::_unserialize' => array ( 0 => 'mixed', 'value' => 'string', ), - 'RedisCluster::append' => + 'rediscluster::append' => array ( 0 => 'int', 'key' => 'string', 'value' => 'string', ), - 'RedisCluster::bgrewriteaof' => + 'rediscluster::bgrewriteaof' => array ( 0 => 'bool', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'RedisCluster::bgsave' => + 'rediscluster::bgsave' => array ( 0 => 'bool', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'RedisCluster::bitCount' => + 'rediscluster::bitcount' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::bitOp' => + 'rediscluster::bitop' => array ( 0 => 'int', 'operation' => 'string', @@ -54753,7 +54753,7 @@ 'key1' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::bitpos' => + 'rediscluster::bitpos' => array ( 0 => 'int', 'key' => 'string', @@ -54761,52 +54761,52 @@ 'start=' => 'int', 'end=' => 'int', ), - 'RedisCluster::blPop' => + 'rediscluster::blpop' => array ( 0 => 'array', 'keys' => 'array', 'timeout' => 'int', ), - 'RedisCluster::brPop' => + 'rediscluster::brpop' => array ( 0 => 'array', 'keys' => 'array', 'timeout' => 'int', ), - 'RedisCluster::brpoplpush' => + 'rediscluster::brpoplpush' => array ( 0 => 'false|string', 'srcKey' => 'string', 'dstKey' => 'string', 'timeout' => 'int', ), - 'RedisCluster::clearLastError' => + 'rediscluster::clearlasterror' => array ( 0 => 'bool', ), - 'RedisCluster::client' => + 'rediscluster::client' => array ( 0 => 'mixed', 'nodeParams' => 'array{0: string, 1: int}|string', 'subCmd=' => 'string', '...args=' => 'mixed', ), - 'RedisCluster::close' => + 'rediscluster::close' => array ( 0 => 'mixed', ), - 'RedisCluster::cluster' => + 'rediscluster::cluster' => array ( 0 => 'mixed', 'nodeParams' => 'array{0: string, 1: int}|string', 'command' => 'string', 'arguments=' => 'mixed', ), - 'RedisCluster::command' => + 'rediscluster::command' => array ( 0 => 'array|bool', ), - 'RedisCluster::config' => + 'rediscluster::config' => array ( 0 => 'array|bool', 'nodeParams' => 'array{0: string, 1: int}|string', @@ -54814,96 +54814,96 @@ 'key' => 'string', 'value=' => 'string', ), - 'RedisCluster::dbSize' => + 'rediscluster::dbsize' => array ( 0 => 'int', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'RedisCluster::decr' => + 'rediscluster::decr' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::decrBy' => + 'rediscluster::decrby' => array ( 0 => 'int', 'key' => 'string', 'value' => 'int', ), - 'RedisCluster::del' => + 'rediscluster::del' => array ( 0 => 'int', 'key' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::del\'1' => + 'rediscluster::del\'1' => array ( 0 => 'int', 'key' => 'array', ), - 'RedisCluster::discard' => + 'rediscluster::discard' => array ( 0 => 'mixed', ), - 'RedisCluster::dump' => + 'rediscluster::dump' => array ( 0 => 'false|string', 'key' => 'string', ), - 'RedisCluster::echo' => + 'rediscluster::echo' => array ( 0 => 'string', 'nodeParams' => 'array{0: string, 1: int}|string', 'msg' => 'string', ), - 'RedisCluster::eval' => + 'rediscluster::eval' => array ( 0 => 'mixed', 'script' => 'mixed', 'args=' => 'mixed', 'numKeys=' => 'mixed', ), - 'RedisCluster::evalSha' => + 'rediscluster::evalsha' => array ( 0 => 'mixed', 'scriptSha' => 'string', 'args=' => 'array', 'numKeys=' => 'int', ), - 'RedisCluster::exec' => + 'rediscluster::exec' => array ( 0 => 'array|null', ), - 'RedisCluster::exists' => + 'rediscluster::exists' => array ( 0 => 'bool', 'key' => 'string', ), - 'RedisCluster::expire' => + 'rediscluster::expire' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', ), - 'RedisCluster::expireAt' => + 'rediscluster::expireat' => array ( 0 => 'bool', 'key' => 'string', 'timestamp' => 'int', ), - 'RedisCluster::flushAll' => + 'rediscluster::flushall' => array ( 0 => 'bool', 'nodeParams' => 'array{0: string, 1: int}|string', 'async=' => 'bool', ), - 'RedisCluster::flushDB' => + 'rediscluster::flushdb' => array ( 0 => 'bool', 'nodeParams' => 'array{0: string, 1: int}|string', 'async=' => 'bool', ), - 'RedisCluster::geoAdd' => + 'rediscluster::geoadd' => array ( 0 => 'int', 'key' => 'string', @@ -54912,7 +54912,7 @@ 'member' => 'string', '...other_members=' => 'float|string', ), - 'RedisCluster::geoDist' => + 'rediscluster::geodist' => array ( 0 => 'mixed', 'key' => 'string', @@ -54920,21 +54920,21 @@ 'member2' => 'string', 'unit=' => 'string', ), - 'RedisCluster::geohash' => + 'rediscluster::geohash' => array ( 0 => 'array', 'key' => 'string', 'member' => 'string', '...other_members=' => 'string', ), - 'RedisCluster::geopos' => + 'rediscluster::geopos' => array ( 0 => 'array', 'key' => 'string', 'member' => 'string', '...other_members=' => 'string', ), - 'RedisCluster::geoRadius' => + 'rediscluster::georadius' => array ( 0 => 'mixed', 'key' => 'string', @@ -54944,7 +54944,7 @@ 'radiusUnit' => 'string', 'options=' => 'array', ), - 'RedisCluster::geoRadiusByMember' => + 'rediscluster::georadiusbymember' => array ( 0 => 'array', 'key' => 'string', @@ -54953,104 +54953,104 @@ 'radiusUnit' => 'string', 'options=' => 'array', ), - 'RedisCluster::get' => + 'rediscluster::get' => array ( 0 => 'false|string', 'key' => 'string', ), - 'RedisCluster::getBit' => + 'rediscluster::getbit' => array ( 0 => 'int', 'key' => 'string', 'offset' => 'int', ), - 'RedisCluster::getLastError' => + 'rediscluster::getlasterror' => array ( 0 => 'null|string', ), - 'RedisCluster::getMode' => + 'rediscluster::getmode' => array ( 0 => 'int', ), - 'RedisCluster::getOption' => + 'rediscluster::getoption' => array ( 0 => 'int', 'option' => 'int', ), - 'RedisCluster::getRange' => + 'rediscluster::getrange' => array ( 0 => 'string', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'RedisCluster::getSet' => + 'rediscluster::getset' => array ( 0 => 'string', 'key' => 'string', 'value' => 'string', ), - 'RedisCluster::hDel' => + 'rediscluster::hdel' => array ( 0 => 'false|int', 'key' => 'string', 'hashKey' => 'string', '...other_hashKeys=' => 'array', ), - 'RedisCluster::hExists' => + 'rediscluster::hexists' => array ( 0 => 'bool', 'key' => 'string', 'hashKey' => 'string', ), - 'RedisCluster::hGet' => + 'rediscluster::hget' => array ( 0 => 'false|string', 'key' => 'string', 'hashKey' => 'string', ), - 'RedisCluster::hGetAll' => + 'rediscluster::hgetall' => array ( 0 => 'array', 'key' => 'string', ), - 'RedisCluster::hIncrBy' => + 'rediscluster::hincrby' => array ( 0 => 'int', 'key' => 'string', 'hashKey' => 'string', 'value' => 'int', ), - 'RedisCluster::hIncrByFloat' => + 'rediscluster::hincrbyfloat' => array ( 0 => 'float', 'key' => 'string', 'field' => 'string', 'increment' => 'float', ), - 'RedisCluster::hKeys' => + 'rediscluster::hkeys' => array ( 0 => 'array', 'key' => 'string', ), - 'RedisCluster::hLen' => + 'rediscluster::hlen' => array ( 0 => 'false|int', 'key' => 'string', ), - 'RedisCluster::hMGet' => + 'rediscluster::hmget' => array ( 0 => 'array', 'key' => 'string', 'hashKeys' => 'array', ), - 'RedisCluster::hMSet' => + 'rediscluster::hmset' => array ( 0 => 'bool', 'key' => 'string', 'hashKeys' => 'array', ), - 'RedisCluster::hScan' => + 'rediscluster::hscan' => array ( 0 => 'array', 'key' => 'string', @@ -55058,77 +55058,77 @@ 'pattern=' => 'string', 'count=' => 'int', ), - 'RedisCluster::hSet' => + 'rediscluster::hset' => array ( 0 => 'int', 'key' => 'string', 'hashKey' => 'string', 'value' => 'string', ), - 'RedisCluster::hSetNx' => + 'rediscluster::hsetnx' => array ( 0 => 'bool', 'key' => 'string', 'hashKey' => 'string', 'value' => 'string', ), - 'RedisCluster::hStrlen' => + 'rediscluster::hstrlen' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', ), - 'RedisCluster::hVals' => + 'rediscluster::hvals' => array ( 0 => 'array', 'key' => 'string', ), - 'RedisCluster::incr' => + 'rediscluster::incr' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::incrBy' => + 'rediscluster::incrby' => array ( 0 => 'int', 'key' => 'string', 'value' => 'int', ), - 'RedisCluster::incrByFloat' => + 'rediscluster::incrbyfloat' => array ( 0 => 'float', 'key' => 'string', 'increment' => 'float', ), - 'RedisCluster::info' => + 'rediscluster::info' => array ( 0 => 'array', 'nodeParams' => 'array{0: string, 1: int}|string', 'option=' => 'string', ), - 'RedisCluster::keys' => + 'rediscluster::keys' => array ( 0 => 'array', 'pattern' => 'string', ), - 'RedisCluster::lastSave' => + 'rediscluster::lastsave' => array ( 0 => 'int', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'RedisCluster::lGet' => + 'rediscluster::lget' => array ( 0 => 'mixed', 'key' => 'string', 'index' => 'int', ), - 'RedisCluster::lIndex' => + 'rediscluster::lindex' => array ( 0 => 'false|string', 'key' => 'string', 'index' => 'int', ), - 'RedisCluster::lInsert' => + 'rediscluster::linsert' => array ( 0 => 'int', 'key' => 'string', @@ -55136,17 +55136,17 @@ 'pivot' => 'string', 'value' => 'string', ), - 'RedisCluster::lLen' => + 'rediscluster::llen' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::lPop' => + 'rediscluster::lpop' => array ( 0 => 'false|string', 'key' => 'string', ), - 'RedisCluster::lPush' => + 'rediscluster::lpush' => array ( 0 => 'false|int', 'key' => 'string', @@ -55154,189 +55154,189 @@ 'value2=' => 'string', 'valueN=' => 'string', ), - 'RedisCluster::lPushx' => + 'rediscluster::lpushx' => array ( 0 => 'false|int', 'key' => 'string', 'value' => 'string', ), - 'RedisCluster::lRange' => + 'rediscluster::lrange' => array ( 0 => 'array', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'RedisCluster::lRem' => + 'rediscluster::lrem' => array ( 0 => 'false|int', 'key' => 'string', 'value' => 'string', 'count' => 'int', ), - 'RedisCluster::lSet' => + 'rediscluster::lset' => array ( 0 => 'bool', 'key' => 'string', 'index' => 'int', 'value' => 'string', ), - 'RedisCluster::lTrim' => + 'rediscluster::ltrim' => array ( 0 => 'array|false', 'key' => 'string', 'start' => 'int', 'stop' => 'int', ), - 'RedisCluster::mget' => + 'rediscluster::mget' => array ( 0 => 'array', 'array' => 'array', ), - 'RedisCluster::mset' => + 'rediscluster::mset' => array ( 0 => 'bool', 'array' => 'array', ), - 'RedisCluster::msetnx' => + 'rediscluster::msetnx' => array ( 0 => 'int', 'array' => 'array', ), - 'RedisCluster::multi' => + 'rediscluster::multi' => array ( 0 => 'Redis', 'mode=' => 'int', ), - 'RedisCluster::object' => + 'rediscluster::object' => array ( 0 => 'false|int|string', 'string' => 'string', 'key' => 'string', ), - 'RedisCluster::persist' => + 'rediscluster::persist' => array ( 0 => 'bool', 'key' => 'string', ), - 'RedisCluster::pExpire' => + 'rediscluster::pexpire' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', ), - 'RedisCluster::pExpireAt' => + 'rediscluster::pexpireat' => array ( 0 => 'bool', 'key' => 'string', 'timestamp' => 'int', ), - 'RedisCluster::pfAdd' => + 'rediscluster::pfadd' => array ( 0 => 'bool', 'key' => 'string', 'elements' => 'array', ), - 'RedisCluster::pfCount' => + 'rediscluster::pfcount' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::pfMerge' => + 'rediscluster::pfmerge' => array ( 0 => 'bool', 'destKey' => 'string', 'sourceKeys' => 'array', ), - 'RedisCluster::ping' => + 'rediscluster::ping' => array ( 0 => 'string', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'RedisCluster::psetex' => + 'rediscluster::psetex' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', 'value' => 'string', ), - 'RedisCluster::psubscribe' => + 'rediscluster::psubscribe' => array ( 0 => 'mixed', 'patterns' => 'array', 'callback' => 'string', ), - 'RedisCluster::pttl' => + 'rediscluster::pttl' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::publish' => + 'rediscluster::publish' => array ( 0 => 'int', 'channel' => 'string', 'message' => 'string', ), - 'RedisCluster::pubsub' => + 'rediscluster::pubsub' => array ( 0 => 'array', 'nodeParams' => 'string', 'keyword' => 'string', '...argument=' => 'string', ), - 'RedisCluster::punSubscribe' => + 'rediscluster::punsubscribe' => array ( 0 => 'mixed', 'channels' => 'mixed', 'callback' => 'mixed', ), - 'RedisCluster::randomKey' => + 'rediscluster::randomkey' => array ( 0 => 'string', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'RedisCluster::rawCommand' => + 'rediscluster::rawcommand' => array ( 0 => 'mixed', 'nodeParams' => 'array{0: string, 1: int}|string', 'command' => 'string', 'arguments=' => 'mixed', ), - 'RedisCluster::rename' => + 'rediscluster::rename' => array ( 0 => 'bool', 'srcKey' => 'string', 'dstKey' => 'string', ), - 'RedisCluster::renameNx' => + 'rediscluster::renamenx' => array ( 0 => 'bool', 'srcKey' => 'string', 'dstKey' => 'string', ), - 'RedisCluster::restore' => + 'rediscluster::restore' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', 'value' => 'string', ), - 'RedisCluster::role' => + 'rediscluster::role' => array ( 0 => 'array', ), - 'RedisCluster::rPop' => + 'rediscluster::rpop' => array ( 0 => 'false|string', 'key' => 'string', ), - 'RedisCluster::rpoplpush' => + 'rediscluster::rpoplpush' => array ( 0 => 'false|string', 'srcKey' => 'string', 'dstKey' => 'string', ), - 'RedisCluster::rPush' => + 'rediscluster::rpush' => array ( 0 => 'false|int', 'key' => 'string', @@ -55344,13 +55344,13 @@ 'value2=' => 'string', 'valueN=' => 'string', ), - 'RedisCluster::rPushx' => + 'rediscluster::rpushx' => array ( 0 => 'false|int', 'key' => 'string', 'value' => 'string', ), - 'RedisCluster::sAdd' => + 'rediscluster::sadd' => array ( 0 => 'false|int', 'key' => 'string', @@ -55358,18 +55358,18 @@ 'value2=' => 'string', 'valueN=' => 'string', ), - 'RedisCluster::sAddArray' => + 'rediscluster::saddarray' => array ( 0 => 'false|int', 'key' => 'string', 'valueArray' => 'array', ), - 'RedisCluster::save' => + 'rediscluster::save' => array ( 0 => 'bool', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'RedisCluster::scan' => + 'rediscluster::scan' => array ( 0 => 'array|false', '&iterator' => 'int', @@ -55377,12 +55377,12 @@ 'pattern=' => 'string', 'count=' => 'int', ), - 'RedisCluster::sCard' => + 'rediscluster::scard' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::script' => + 'rediscluster::script' => array ( 0 => 'array|bool|string', 'nodeParams' => 'array{0: string, 1: int}|string', @@ -55390,123 +55390,123 @@ 'script=' => 'string', '...other_scripts=' => 'array', ), - 'RedisCluster::sDiff' => + 'rediscluster::sdiff' => array ( 0 => 'list', 'key1' => 'string', 'key2' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::sDiffStore' => + 'rediscluster::sdiffstore' => array ( 0 => 'int', 'dstKey' => 'string', 'key1' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::set' => + 'rediscluster::set' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', 'timeout=' => 'array|int', ), - 'RedisCluster::setBit' => + 'rediscluster::setbit' => array ( 0 => 'int', 'key' => 'string', 'offset' => 'int', 'value' => 'bool|int', ), - 'RedisCluster::setex' => + 'rediscluster::setex' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', 'value' => 'string', ), - 'RedisCluster::setnx' => + 'rediscluster::setnx' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'RedisCluster::setOption' => + 'rediscluster::setoption' => array ( 0 => 'bool', 'option' => 'int', 'value' => 'int|string', ), - 'RedisCluster::setRange' => + 'rediscluster::setrange' => array ( 0 => 'string', 'key' => 'string', 'offset' => 'int', 'value' => 'string', ), - 'RedisCluster::sInter' => + 'rediscluster::sinter' => array ( 0 => 'list', 'key' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::sInterStore' => + 'rediscluster::sinterstore' => array ( 0 => 'int', 'dstKey' => 'string', 'key' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::sIsMember' => + 'rediscluster::sismember' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'RedisCluster::slowLog' => + 'rediscluster::slowlog' => array ( 0 => 'array|bool|int', 'nodeParams' => 'array{0: string, 1: int}|string', 'command' => 'string', 'length=' => 'int', ), - 'RedisCluster::sMembers' => + 'rediscluster::smembers' => array ( 0 => 'list', 'key' => 'string', ), - 'RedisCluster::sMove' => + 'rediscluster::smove' => array ( 0 => 'bool', 'srcKey' => 'string', 'dstKey' => 'string', 'member' => 'string', ), - 'RedisCluster::sort' => + 'rediscluster::sort' => array ( 0 => 'array', 'key' => 'string', 'option=' => 'array', ), - 'RedisCluster::sPop' => + 'rediscluster::spop' => array ( 0 => 'string', 'key' => 'string', ), - 'RedisCluster::sRandMember' => + 'rediscluster::srandmember' => array ( 0 => 'array|string', 'key' => 'string', 'count=' => 'int', ), - 'RedisCluster::sRem' => + 'rediscluster::srem' => array ( 0 => 'int', 'key' => 'string', 'member1' => 'string', '...other_members=' => 'string', ), - 'RedisCluster::sScan' => + 'rediscluster::sscan' => array ( 0 => 'array|false', 'key' => 'string', @@ -55514,79 +55514,79 @@ 'pattern=' => 'null', 'count=' => 'int', ), - 'RedisCluster::strlen' => + 'rediscluster::strlen' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::subscribe' => + 'rediscluster::subscribe' => array ( 0 => 'mixed', 'channels' => 'array', 'callback' => 'string', ), - 'RedisCluster::sUnion' => + 'rediscluster::sunion' => array ( 0 => 'list', 'key1' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::sUnion\'1' => + 'rediscluster::sunion\'1' => array ( 0 => 'list', 'keys' => 'array', ), - 'RedisCluster::sUnionStore' => + 'rediscluster::sunionstore' => array ( 0 => 'int', 'dstKey' => 'string', 'key1' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::time' => + 'rediscluster::time' => array ( 0 => 'array', ), - 'RedisCluster::ttl' => + 'rediscluster::ttl' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::type' => + 'rediscluster::type' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::unlink' => + 'rediscluster::unlink' => array ( 0 => 'int', 'key' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::unSubscribe' => + 'rediscluster::unsubscribe' => array ( 0 => 'mixed', 'channels' => 'mixed', '...other_channels=' => 'mixed', ), - 'RedisCluster::unwatch' => + 'rediscluster::unwatch' => array ( 0 => 'mixed', ), - 'RedisCluster::watch' => + 'rediscluster::watch' => array ( 0 => 'void', 'key' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::xack' => + 'rediscluster::xack' => array ( 0 => 'mixed', 'str_key' => 'string', 'str_group' => 'string', 'arr_ids' => 'array', ), - 'RedisCluster::xadd' => + 'rediscluster::xadd' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -55595,7 +55595,7 @@ 'i_maxlen=' => 'mixed', 'boo_approximate=' => 'mixed', ), - 'RedisCluster::xclaim' => + 'rediscluster::xclaim' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -55605,13 +55605,13 @@ 'arr_ids' => 'array', 'arr_opts=' => 'array', ), - 'RedisCluster::xdel' => + 'rediscluster::xdel' => array ( 0 => 'mixed', 'str_key' => 'string', 'arr_ids' => 'array', ), - 'RedisCluster::xgroup' => + 'rediscluster::xgroup' => array ( 0 => 'mixed', 'str_operation' => 'string', @@ -55620,19 +55620,19 @@ 'str_arg2=' => 'mixed', 'str_arg3=' => 'mixed', ), - 'RedisCluster::xinfo' => + 'rediscluster::xinfo' => array ( 0 => 'mixed', 'str_cmd' => 'string', 'str_key=' => 'string', 'str_group=' => 'string', ), - 'RedisCluster::xlen' => + 'rediscluster::xlen' => array ( 0 => 'mixed', 'key' => 'mixed', ), - 'RedisCluster::xpending' => + 'rediscluster::xpending' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -55642,7 +55642,7 @@ 'i_count=' => 'mixed', 'str_consumer=' => 'string', ), - 'RedisCluster::xrange' => + 'rediscluster::xrange' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -55650,14 +55650,14 @@ 'str_end' => 'mixed', 'i_count=' => 'mixed', ), - 'RedisCluster::xread' => + 'rediscluster::xread' => array ( 0 => 'mixed', 'arr_streams' => 'array', 'i_count=' => 'mixed', 'i_block=' => 'mixed', ), - 'RedisCluster::xreadgroup' => + 'rediscluster::xreadgroup' => array ( 0 => 'mixed', 'str_group' => 'string', @@ -55666,7 +55666,7 @@ 'i_count=' => 'mixed', 'i_block=' => 'mixed', ), - 'RedisCluster::xrevrange' => + 'rediscluster::xrevrange' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -55674,14 +55674,14 @@ 'str_end' => 'mixed', 'i_count=' => 'mixed', ), - 'RedisCluster::xtrim' => + 'rediscluster::xtrim' => array ( 0 => 'mixed', 'str_key' => 'string', 'i_maxlen' => 'mixed', 'boo_approximate=' => 'mixed', ), - 'RedisCluster::zAdd' => + 'rediscluster::zadd' => array ( 0 => 'int', 'key' => 'string', @@ -55692,26 +55692,26 @@ 'scoreN=' => 'float', 'valueN=' => 'string', ), - 'RedisCluster::zCard' => + 'rediscluster::zcard' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::zCount' => + 'rediscluster::zcount' => array ( 0 => 'int', 'key' => 'string', 'start' => 'string', 'end' => 'string', ), - 'RedisCluster::zIncrBy' => + 'rediscluster::zincrby' => array ( 0 => 'float', 'key' => 'string', 'value' => 'float', 'member' => 'string', ), - 'RedisCluster::zInterStore' => + 'rediscluster::zinterstore' => array ( 0 => 'int', 'Output' => 'string', @@ -55719,14 +55719,14 @@ 'Weights=' => 'array|null', 'aggregateFunction=' => 'string', ), - 'RedisCluster::zLexCount' => + 'rediscluster::zlexcount' => array ( 0 => 'int', 'key' => 'string', 'min' => 'int', 'max' => 'int', ), - 'RedisCluster::zRange' => + 'rediscluster::zrange' => array ( 0 => 'array', 'key' => 'string', @@ -55734,7 +55734,7 @@ 'end' => 'int', 'withscores=' => 'bool', ), - 'RedisCluster::zRangeByLex' => + 'rediscluster::zrangebylex' => array ( 0 => 'array', 'key' => 'string', @@ -55743,7 +55743,7 @@ 'offset=' => 'int', 'limit=' => 'int', ), - 'RedisCluster::zRangeByScore' => + 'rediscluster::zrangebyscore' => array ( 0 => 'array', 'key' => 'string', @@ -55751,41 +55751,41 @@ 'end' => 'int', 'options=' => 'array', ), - 'RedisCluster::zRank' => + 'rediscluster::zrank' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', ), - 'RedisCluster::zRem' => + 'rediscluster::zrem' => array ( 0 => 'int', 'key' => 'string', 'member1' => 'string', '...other_members=' => 'string', ), - 'RedisCluster::zRemRangeByLex' => + 'rediscluster::zremrangebylex' => array ( 0 => 'array', 'key' => 'string', 'min' => 'int', 'max' => 'int', ), - 'RedisCluster::zRemRangeByRank' => + 'rediscluster::zremrangebyrank' => array ( 0 => 'int', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'RedisCluster::zRemRangeByScore' => + 'rediscluster::zremrangebyscore' => array ( 0 => 'int', 'key' => 'string', 'start' => 'float|string', 'end' => 'float|string', ), - 'RedisCluster::zRevRange' => + 'rediscluster::zrevrange' => array ( 0 => 'array', 'key' => 'string', @@ -55793,7 +55793,7 @@ 'end' => 'int', 'withscore=' => 'bool', ), - 'RedisCluster::zRevRangeByLex' => + 'rediscluster::zrevrangebylex' => array ( 0 => 'array', 'key' => 'string', @@ -55802,7 +55802,7 @@ 'offset=' => 'int', 'limit=' => 'int', ), - 'RedisCluster::zRevRangeByScore' => + 'rediscluster::zrevrangebyscore' => array ( 0 => 'array', 'key' => 'string', @@ -55810,13 +55810,13 @@ 'end' => 'int', 'options=' => 'array', ), - 'RedisCluster::zRevRank' => + 'rediscluster::zrevrank' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', ), - 'RedisCluster::zScan' => + 'rediscluster::zscan' => array ( 0 => 'array|false', 'key' => 'string', @@ -55824,13 +55824,13 @@ 'pattern=' => 'string', 'count=' => 'int', ), - 'RedisCluster::zScore' => + 'rediscluster::zscore' => array ( 0 => 'float', 'key' => 'string', 'member' => 'string', ), - 'RedisCluster::zUnionStore' => + 'rediscluster::zunionstore' => array ( 0 => 'int', 'Output' => 'string', @@ -55838,1359 +55838,1359 @@ 'Weights=' => 'array|null', 'aggregateFunction=' => 'string', ), - 'Reflection::getModifierNames' => + 'reflection::getmodifiernames' => array ( 0 => 'list', 'modifiers' => 'int', ), - 'ReflectionClass::__clone' => + 'reflectionclass::__clone' => array ( 0 => 'void', ), - 'ReflectionClass::__construct' => + 'reflectionclass::__construct' => array ( 0 => 'void', 'objectOrClass' => 'class-string|object', ), - 'ReflectionClass::__toString' => + 'reflectionclass::__tostring' => array ( 0 => 'string', ), - 'ReflectionClass::getAttributes' => + 'reflectionclass::getattributes' => array ( 0 => 'list', 'name=' => 'null|string', 'flags=' => 'int', ), - 'ReflectionClass::getConstant' => + 'reflectionclass::getconstant' => array ( 0 => 'mixed', 'name' => 'string', ), - 'ReflectionClass::getConstants' => + 'reflectionclass::getconstants' => array ( 0 => 'array', 'filter=' => 'int|null', ), - 'ReflectionClass::getConstructor' => + 'reflectionclass::getconstructor' => array ( 0 => 'ReflectionMethod|null', ), - 'ReflectionClass::getDefaultProperties' => + 'reflectionclass::getdefaultproperties' => array ( 0 => 'array', ), - 'ReflectionClass::getDocComment' => + 'reflectionclass::getdoccomment' => array ( 0 => 'false|string', ), - 'ReflectionClass::getEndLine' => + 'reflectionclass::getendline' => array ( 0 => 'false|int', ), - 'ReflectionClass::getExtension' => + 'reflectionclass::getextension' => array ( 0 => 'ReflectionExtension|null', ), - 'ReflectionClass::getExtensionName' => + 'reflectionclass::getextensionname' => array ( 0 => 'false|string', ), - 'ReflectionClass::getFileName' => + 'reflectionclass::getfilename' => array ( 0 => 'false|string', ), - 'ReflectionClass::getInterfaceNames' => + 'reflectionclass::getinterfacenames' => array ( 0 => 'list', ), - 'ReflectionClass::getInterfaces' => + 'reflectionclass::getinterfaces' => array ( 0 => 'array', ), - 'ReflectionClass::getMethod' => + 'reflectionclass::getmethod' => array ( 0 => 'ReflectionMethod', 'name' => 'string', ), - 'ReflectionClass::getMethods' => + 'reflectionclass::getmethods' => array ( 0 => 'list', 'filter=' => 'int|null', ), - 'ReflectionClass::getModifiers' => + 'reflectionclass::getmodifiers' => array ( 0 => 'int', ), - 'ReflectionClass::getName' => + 'reflectionclass::getname' => array ( 0 => 'class-string', ), - 'ReflectionClass::getNamespaceName' => + 'reflectionclass::getnamespacename' => array ( 0 => 'string', ), - 'ReflectionClass::getParentClass' => + 'reflectionclass::getparentclass' => array ( 0 => 'ReflectionClass|false', ), - 'ReflectionClass::getProperties' => + 'reflectionclass::getproperties' => array ( 0 => 'list', 'filter=' => 'int|null', ), - 'ReflectionClass::getProperty' => + 'reflectionclass::getproperty' => array ( 0 => 'ReflectionProperty', 'name' => 'string', ), - 'ReflectionClass::getReflectionConstant' => + 'reflectionclass::getreflectionconstant' => array ( 0 => 'ReflectionClassConstant|false', 'name' => 'string', ), - 'ReflectionClass::getReflectionConstants' => + 'reflectionclass::getreflectionconstants' => array ( 0 => 'list', 'filter=' => 'int|null', ), - 'ReflectionClass::getShortName' => + 'reflectionclass::getshortname' => array ( 0 => 'string', ), - 'ReflectionClass::getStartLine' => + 'reflectionclass::getstartline' => array ( 0 => 'false|int', ), - 'ReflectionClass::getStaticProperties' => + 'reflectionclass::getstaticproperties' => array ( 0 => 'array', ), - 'ReflectionClass::getStaticPropertyValue' => + 'reflectionclass::getstaticpropertyvalue' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'mixed', ), - 'ReflectionClass::getTraitAliases' => + 'reflectionclass::gettraitaliases' => array ( 0 => 'array', ), - 'ReflectionClass::getTraitNames' => + 'reflectionclass::gettraitnames' => array ( 0 => 'list', ), - 'ReflectionClass::getTraits' => + 'reflectionclass::gettraits' => array ( 0 => 'array', ), - 'ReflectionClass::hasConstant' => + 'reflectionclass::hasconstant' => array ( 0 => 'bool', 'name' => 'string', ), - 'ReflectionClass::hasMethod' => + 'reflectionclass::hasmethod' => array ( 0 => 'bool', 'name' => 'string', ), - 'ReflectionClass::hasProperty' => + 'reflectionclass::hasproperty' => array ( 0 => 'bool', 'name' => 'string', ), - 'ReflectionClass::implementsInterface' => + 'reflectionclass::implementsinterface' => array ( 0 => 'bool', 'interface' => 'ReflectionClass|class-string', ), - 'ReflectionClass::inNamespace' => + 'reflectionclass::innamespace' => array ( 0 => 'bool', ), - 'ReflectionClass::isAbstract' => + 'reflectionclass::isabstract' => array ( 0 => 'bool', ), - 'ReflectionClass::isAnonymous' => + 'reflectionclass::isanonymous' => array ( 0 => 'bool', ), - 'ReflectionClass::isCloneable' => + 'reflectionclass::iscloneable' => array ( 0 => 'bool', ), - 'ReflectionClass::isEnum' => + 'reflectionclass::isenum' => array ( 0 => 'bool', ), - 'ReflectionClass::isFinal' => + 'reflectionclass::isfinal' => array ( 0 => 'bool', ), - 'ReflectionClass::isInstance' => + 'reflectionclass::isinstance' => array ( 0 => 'bool', 'object' => 'object', ), - 'ReflectionClass::isInstantiable' => + 'reflectionclass::isinstantiable' => array ( 0 => 'bool', ), - 'ReflectionClass::isInterface' => + 'reflectionclass::isinterface' => array ( 0 => 'bool', ), - 'ReflectionClass::isInternal' => + 'reflectionclass::isinternal' => array ( 0 => 'bool', ), - 'ReflectionClass::isIterable' => + 'reflectionclass::isiterable' => array ( 0 => 'bool', ), - 'ReflectionClass::isIterateable' => + 'reflectionclass::isiterateable' => array ( 0 => 'bool', ), - 'ReflectionClass::isSubclassOf' => + 'reflectionclass::issubclassof' => array ( 0 => 'bool', 'class' => 'ReflectionClass|class-string', ), - 'ReflectionClass::isTrait' => + 'reflectionclass::istrait' => array ( 0 => 'bool', ), - 'ReflectionClass::isUserDefined' => + 'reflectionclass::isuserdefined' => array ( 0 => 'bool', ), - 'ReflectionClass::newInstance' => + 'reflectionclass::newinstance' => array ( 0 => 'object', '...args=' => 'mixed', ), - 'ReflectionClass::newInstanceArgs' => + 'reflectionclass::newinstanceargs' => array ( 0 => 'null|object', 'args=' => 'array|string, mixed>', ), - 'ReflectionClass::newInstanceWithoutConstructor' => + 'reflectionclass::newinstancewithoutconstructor' => array ( 0 => 'object', ), - 'ReflectionClass::setStaticPropertyValue' => + 'reflectionclass::setstaticpropertyvalue' => array ( 0 => 'void', 'name' => 'string', 'value' => 'mixed', ), - 'ReflectionClassConstant::__construct' => + 'reflectionclassconstant::__construct' => array ( 0 => 'void', 'class' => 'class-string|object', 'constant' => 'string', ), - 'ReflectionClassConstant::__toString' => + 'reflectionclassconstant::__tostring' => array ( 0 => 'string', ), - 'ReflectionClassConstant::getAttributes' => + 'reflectionclassconstant::getattributes' => array ( 0 => 'list', 'name=' => 'null|string', 'flags=' => 'int', ), - 'ReflectionClassConstant::getDeclaringClass' => + 'reflectionclassconstant::getdeclaringclass' => array ( 0 => 'ReflectionClass', ), - 'ReflectionClassConstant::getDocComment' => + 'reflectionclassconstant::getdoccomment' => array ( 0 => 'false|string', ), - 'ReflectionClassConstant::getModifiers' => + 'reflectionclassconstant::getmodifiers' => array ( 0 => 'int', ), - 'ReflectionClassConstant::getName' => + 'reflectionclassconstant::getname' => array ( 0 => 'string', ), - 'ReflectionClassConstant::getValue' => + 'reflectionclassconstant::getvalue' => array ( 0 => 'array|null|scalar', ), - 'ReflectionClassConstant::isPrivate' => + 'reflectionclassconstant::isprivate' => array ( 0 => 'bool', ), - 'ReflectionClassConstant::isProtected' => + 'reflectionclassconstant::isprotected' => array ( 0 => 'bool', ), - 'ReflectionClassConstant::isPublic' => + 'reflectionclassconstant::ispublic' => array ( 0 => 'bool', ), - 'ReflectionEnum::getBackingType' => + 'reflectionenum::getbackingtype' => array ( 0 => 'ReflectionType|null', ), - 'ReflectionEnum::getCase' => + 'reflectionenum::getcase' => array ( 0 => 'ReflectionEnumUnitCase', 'name' => 'string', ), - 'ReflectionEnum::getCases' => + 'reflectionenum::getcases' => array ( 0 => 'list', ), - 'ReflectionEnum::hasCase' => + 'reflectionenum::hascase' => array ( 0 => 'bool', 'name' => 'string', ), - 'ReflectionEnum::isBacked' => + 'reflectionenum::isbacked' => array ( 0 => 'bool', ), - 'ReflectionEnumUnitCase::getEnum' => + 'reflectionenumunitcase::getenum' => array ( 0 => 'ReflectionEnum', ), - 'ReflectionEnumUnitCase::getValue' => + 'reflectionenumunitcase::getvalue' => array ( 0 => 'UnitEnum', ), - 'ReflectionEnumBackedCase::getBackingValue' => + 'reflectionenumbackedcase::getbackingvalue' => array ( 0 => 'int|string', ), - 'ReflectionExtension::__clone' => + 'reflectionextension::__clone' => array ( 0 => 'void', ), - 'ReflectionExtension::__construct' => + 'reflectionextension::__construct' => array ( 0 => 'void', 'name' => 'string', ), - 'ReflectionExtension::__toString' => + 'reflectionextension::__tostring' => array ( 0 => 'string', ), - 'ReflectionExtension::getClasses' => + 'reflectionextension::getclasses' => array ( 0 => 'array', ), - 'ReflectionExtension::getClassNames' => + 'reflectionextension::getclassnames' => array ( 0 => 'list', ), - 'ReflectionExtension::getConstants' => + 'reflectionextension::getconstants' => array ( 0 => 'array', ), - 'ReflectionExtension::getDependencies' => + 'reflectionextension::getdependencies' => array ( 0 => 'array', ), - 'ReflectionExtension::getFunctions' => + 'reflectionextension::getfunctions' => array ( 0 => 'array', ), - 'ReflectionExtension::getINIEntries' => + 'reflectionextension::getinientries' => array ( 0 => 'array', ), - 'ReflectionExtension::getName' => + 'reflectionextension::getname' => array ( 0 => 'string', ), - 'ReflectionExtension::getVersion' => + 'reflectionextension::getversion' => array ( 0 => 'null|string', ), - 'ReflectionExtension::info' => + 'reflectionextension::info' => array ( 0 => 'void', ), - 'ReflectionExtension::isPersistent' => + 'reflectionextension::ispersistent' => array ( 0 => 'bool', ), - 'ReflectionExtension::isTemporary' => + 'reflectionextension::istemporary' => array ( 0 => 'bool', ), - 'ReflectionFunction::__construct' => + 'reflectionfunction::__construct' => array ( 0 => 'void', 'function' => 'Closure|callable-string', ), - 'ReflectionFunction::__toString' => + 'reflectionfunction::__tostring' => array ( 0 => 'string', ), - 'ReflectionFunction::getClosure' => + 'reflectionfunction::getclosure' => array ( 0 => 'Closure', ), - 'ReflectionFunction::getClosureScopeClass' => + 'reflectionfunction::getclosurescopeclass' => array ( 0 => 'ReflectionClass|null', ), - 'ReflectionFunction::getClosureThis' => + 'reflectionfunction::getclosurethis' => array ( 0 => 'null|object', ), - 'ReflectionFunction::getDocComment' => + 'reflectionfunction::getdoccomment' => array ( 0 => 'false|string', ), - 'ReflectionFunction::getEndLine' => + 'reflectionfunction::getendline' => array ( 0 => 'false|int', ), - 'ReflectionFunction::getExtension' => + 'reflectionfunction::getextension' => array ( 0 => 'ReflectionExtension|null', ), - 'ReflectionFunction::getExtensionName' => + 'reflectionfunction::getextensionname' => array ( 0 => 'false|string', ), - 'ReflectionFunction::getFileName' => + 'reflectionfunction::getfilename' => array ( 0 => 'false|string', ), - 'ReflectionFunction::getName' => + 'reflectionfunction::getname' => array ( 0 => 'callable-string', ), - 'ReflectionFunction::getNamespaceName' => + 'reflectionfunction::getnamespacename' => array ( 0 => 'string', ), - 'ReflectionFunction::getNumberOfParameters' => + 'reflectionfunction::getnumberofparameters' => array ( 0 => 'int', ), - 'ReflectionFunction::getNumberOfRequiredParameters' => + 'reflectionfunction::getnumberofrequiredparameters' => array ( 0 => 'int', ), - 'ReflectionFunction::getParameters' => + 'reflectionfunction::getparameters' => array ( 0 => 'list', ), - 'ReflectionFunction::getReturnType' => + 'reflectionfunction::getreturntype' => array ( 0 => 'ReflectionType|null', ), - 'ReflectionFunction::getShortName' => + 'reflectionfunction::getshortname' => array ( 0 => 'string', ), - 'ReflectionFunction::getStartLine' => + 'reflectionfunction::getstartline' => array ( 0 => 'false|int', ), - 'ReflectionFunction::getStaticVariables' => + 'reflectionfunction::getstaticvariables' => array ( 0 => 'array', ), - 'ReflectionFunction::hasReturnType' => + 'reflectionfunction::hasreturntype' => array ( 0 => 'bool', ), - 'ReflectionFunction::inNamespace' => + 'reflectionfunction::innamespace' => array ( 0 => 'bool', ), - 'ReflectionFunction::invoke' => + 'reflectionfunction::invoke' => array ( 0 => 'mixed', '...args=' => 'mixed', ), - 'ReflectionFunction::invokeArgs' => + 'reflectionfunction::invokeargs' => array ( 0 => 'mixed', 'args' => 'array', ), - 'ReflectionFunction::isClosure' => + 'reflectionfunction::isclosure' => array ( 0 => 'bool', ), - 'ReflectionFunction::isDeprecated' => + 'reflectionfunction::isdeprecated' => array ( 0 => 'bool', ), - 'ReflectionFunction::isDisabled' => + 'reflectionfunction::isdisabled' => array ( 0 => 'bool', ), - 'ReflectionFunction::isGenerator' => + 'reflectionfunction::isgenerator' => array ( 0 => 'bool', ), - 'ReflectionFunction::isInternal' => + 'reflectionfunction::isinternal' => array ( 0 => 'bool', ), - 'ReflectionFunction::isUserDefined' => + 'reflectionfunction::isuserdefined' => array ( 0 => 'bool', ), - 'ReflectionFunction::isVariadic' => + 'reflectionfunction::isvariadic' => array ( 0 => 'bool', ), - 'ReflectionFunction::returnsReference' => + 'reflectionfunction::returnsreference' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::__clone' => + 'reflectionfunctionabstract::__clone' => array ( 0 => 'void', ), - 'ReflectionFunctionAbstract::__toString' => + 'reflectionfunctionabstract::__tostring' => array ( 0 => 'string', ), - 'ReflectionFunctionAbstract::getAttributes' => + 'reflectionfunctionabstract::getattributes' => array ( 0 => 'list', 'name=' => 'null|string', 'flags=' => 'int', ), - 'ReflectionFunctionAbstract::getClosureScopeClass' => + 'reflectionfunctionabstract::getclosurescopeclass' => array ( 0 => 'ReflectionClass|null', ), - 'ReflectionFunctionAbstract::getClosureThis' => + 'reflectionfunctionabstract::getclosurethis' => array ( 0 => 'null|object', ), - 'ReflectionFunctionAbstract::getDocComment' => + 'reflectionfunctionabstract::getdoccomment' => array ( 0 => 'false|string', ), - 'ReflectionFunctionAbstract::getEndLine' => + 'reflectionfunctionabstract::getendline' => array ( 0 => 'false|int', ), - 'ReflectionFunctionAbstract::getExtension' => + 'reflectionfunctionabstract::getextension' => array ( 0 => 'ReflectionExtension|null', ), - 'ReflectionFunctionAbstract::getExtensionName' => + 'reflectionfunctionabstract::getextensionname' => array ( 0 => 'false|string', ), - 'ReflectionFunctionAbstract::getFileName' => + 'reflectionfunctionabstract::getfilename' => array ( 0 => 'false|string', ), - 'ReflectionFunctionAbstract::getName' => + 'reflectionfunctionabstract::getname' => array ( 0 => 'string', ), - 'ReflectionFunctionAbstract::getNamespaceName' => + 'reflectionfunctionabstract::getnamespacename' => array ( 0 => 'string', ), - 'ReflectionFunctionAbstract::getNumberOfParameters' => + 'reflectionfunctionabstract::getnumberofparameters' => array ( 0 => 'int', ), - 'ReflectionFunctionAbstract::getNumberOfRequiredParameters' => + 'reflectionfunctionabstract::getnumberofrequiredparameters' => array ( 0 => 'int', ), - 'ReflectionFunctionAbstract::getParameters' => + 'reflectionfunctionabstract::getparameters' => array ( 0 => 'list', ), - 'ReflectionFunctionAbstract::getReturnType' => + 'reflectionfunctionabstract::getreturntype' => array ( 0 => 'ReflectionType|null', ), - 'ReflectionFunctionAbstract::getShortName' => + 'reflectionfunctionabstract::getshortname' => array ( 0 => 'string', ), - 'ReflectionFunctionAbstract::getStartLine' => + 'reflectionfunctionabstract::getstartline' => array ( 0 => 'false|int', ), - 'ReflectionFunctionAbstract::getStaticVariables' => + 'reflectionfunctionabstract::getstaticvariables' => array ( 0 => 'array', ), - 'ReflectionFunctionAbstract::getTentativeReturnType' => + 'reflectionfunctionabstract::gettentativereturntype' => array ( 0 => 'ReflectionType|null', ), - 'ReflectionFunctionAbstract::hasReturnType' => + 'reflectionfunctionabstract::hasreturntype' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::hasTentativeReturnType' => + 'reflectionfunctionabstract::hastentativereturntype' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::inNamespace' => + 'reflectionfunctionabstract::innamespace' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::isClosure' => + 'reflectionfunctionabstract::isclosure' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::isDeprecated' => + 'reflectionfunctionabstract::isdeprecated' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::isGenerator' => + 'reflectionfunctionabstract::isgenerator' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::isInternal' => + 'reflectionfunctionabstract::isinternal' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::isStatic' => + 'reflectionfunctionabstract::isstatic' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::isUserDefined' => + 'reflectionfunctionabstract::isuserdefined' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::isVariadic' => + 'reflectionfunctionabstract::isvariadic' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::returnsReference' => + 'reflectionfunctionabstract::returnsreference' => array ( 0 => 'bool', ), - 'ReflectionGenerator::__construct' => + 'reflectiongenerator::__construct' => array ( 0 => 'void', 'generator' => 'Generator', ), - 'ReflectionGenerator::getExecutingFile' => + 'reflectiongenerator::getexecutingfile' => array ( 0 => 'string', ), - 'ReflectionGenerator::getExecutingGenerator' => + 'reflectiongenerator::getexecutinggenerator' => array ( 0 => 'Generator', ), - 'ReflectionGenerator::getExecutingLine' => + 'reflectiongenerator::getexecutingline' => array ( 0 => 'int', ), - 'ReflectionGenerator::getFunction' => + 'reflectiongenerator::getfunction' => array ( 0 => 'ReflectionFunctionAbstract', ), - 'ReflectionGenerator::getThis' => + 'reflectiongenerator::getthis' => array ( 0 => 'null|object', ), - 'ReflectionGenerator::getTrace' => + 'reflectiongenerator::gettrace' => array ( 0 => 'array', 'options=' => 'int', ), - 'ReflectionMethod::__construct' => + 'reflectionmethod::__construct' => array ( 0 => 'void', 'class' => 'class-string|object', 'name' => 'string', ), - 'ReflectionMethod::__construct\'1' => + 'reflectionmethod::__construct\'1' => array ( 0 => 'void', 'class_method' => 'string', ), - 'ReflectionMethod::__toString' => + 'reflectionmethod::__tostring' => array ( 0 => 'string', ), - 'ReflectionMethod::getClosure' => + 'reflectionmethod::getclosure' => array ( 0 => 'Closure', 'object=' => 'null|object', ), - 'ReflectionMethod::getClosureScopeClass' => + 'reflectionmethod::getclosurescopeclass' => array ( 0 => 'ReflectionClass|null', ), - 'ReflectionMethod::getClosureThis' => + 'reflectionmethod::getclosurethis' => array ( 0 => 'null|object', ), - 'ReflectionMethod::getDeclaringClass' => + 'reflectionmethod::getdeclaringclass' => array ( 0 => 'ReflectionClass', ), - 'ReflectionMethod::getDocComment' => + 'reflectionmethod::getdoccomment' => array ( 0 => 'false|string', ), - 'ReflectionMethod::getEndLine' => + 'reflectionmethod::getendline' => array ( 0 => 'false|int', ), - 'ReflectionMethod::getExtension' => + 'reflectionmethod::getextension' => array ( 0 => 'ReflectionExtension|null', ), - 'ReflectionMethod::getExtensionName' => + 'reflectionmethod::getextensionname' => array ( 0 => 'false|string', ), - 'ReflectionMethod::getFileName' => + 'reflectionmethod::getfilename' => array ( 0 => 'false|string', ), - 'ReflectionMethod::getModifiers' => + 'reflectionmethod::getmodifiers' => array ( 0 => 'int', ), - 'ReflectionMethod::getName' => + 'reflectionmethod::getname' => array ( 0 => 'string', ), - 'ReflectionMethod::getNamespaceName' => + 'reflectionmethod::getnamespacename' => array ( 0 => 'string', ), - 'ReflectionMethod::getNumberOfParameters' => + 'reflectionmethod::getnumberofparameters' => array ( 0 => 'int', ), - 'ReflectionMethod::getNumberOfRequiredParameters' => + 'reflectionmethod::getnumberofrequiredparameters' => array ( 0 => 'int', ), - 'ReflectionMethod::getParameters' => + 'reflectionmethod::getparameters' => array ( 0 => 'list', ), - 'ReflectionMethod::getPrototype' => + 'reflectionmethod::getprototype' => array ( 0 => 'ReflectionMethod', ), - 'ReflectionMethod::getReturnType' => + 'reflectionmethod::getreturntype' => array ( 0 => 'ReflectionType|null', ), - 'ReflectionMethod::getShortName' => + 'reflectionmethod::getshortname' => array ( 0 => 'string', ), - 'ReflectionMethod::getStartLine' => + 'reflectionmethod::getstartline' => array ( 0 => 'false|int', ), - 'ReflectionMethod::getStaticVariables' => + 'reflectionmethod::getstaticvariables' => array ( 0 => 'array', ), - 'ReflectionMethod::hasReturnType' => + 'reflectionmethod::hasreturntype' => array ( 0 => 'bool', ), - 'ReflectionMethod::inNamespace' => + 'reflectionmethod::innamespace' => array ( 0 => 'bool', ), - 'ReflectionMethod::invoke' => + 'reflectionmethod::invoke' => array ( 0 => 'mixed', 'object' => 'null|object', '...args=' => 'mixed', ), - 'ReflectionMethod::invokeArgs' => + 'reflectionmethod::invokeargs' => array ( 0 => 'mixed', 'object' => 'null|object', 'args' => 'array', ), - 'ReflectionMethod::isAbstract' => + 'reflectionmethod::isabstract' => array ( 0 => 'bool', ), - 'ReflectionMethod::isClosure' => + 'reflectionmethod::isclosure' => array ( 0 => 'bool', ), - 'ReflectionMethod::isConstructor' => + 'reflectionmethod::isconstructor' => array ( 0 => 'bool', ), - 'ReflectionMethod::isDeprecated' => + 'reflectionmethod::isdeprecated' => array ( 0 => 'bool', ), - 'ReflectionMethod::isDestructor' => + 'reflectionmethod::isdestructor' => array ( 0 => 'bool', ), - 'ReflectionMethod::isFinal' => + 'reflectionmethod::isfinal' => array ( 0 => 'bool', ), - 'ReflectionMethod::isGenerator' => + 'reflectionmethod::isgenerator' => array ( 0 => 'bool', ), - 'ReflectionMethod::isInternal' => + 'reflectionmethod::isinternal' => array ( 0 => 'bool', ), - 'ReflectionMethod::isPrivate' => + 'reflectionmethod::isprivate' => array ( 0 => 'bool', ), - 'ReflectionMethod::isProtected' => + 'reflectionmethod::isprotected' => array ( 0 => 'bool', ), - 'ReflectionMethod::isPublic' => + 'reflectionmethod::ispublic' => array ( 0 => 'bool', ), - 'ReflectionMethod::isUserDefined' => + 'reflectionmethod::isuserdefined' => array ( 0 => 'bool', ), - 'ReflectionMethod::isVariadic' => + 'reflectionmethod::isvariadic' => array ( 0 => 'bool', ), - 'ReflectionMethod::returnsReference' => + 'reflectionmethod::returnsreference' => array ( 0 => 'bool', ), - 'ReflectionMethod::setAccessible' => + 'reflectionmethod::setaccessible' => array ( 0 => 'void', 'accessible' => 'bool', ), - 'ReflectionNamedType::__toString' => + 'reflectionnamedtype::__tostring' => array ( 0 => 'string', ), - 'ReflectionNamedType::allowsNull' => + 'reflectionnamedtype::allowsnull' => array ( 0 => 'bool', ), - 'ReflectionNamedType::getName' => + 'reflectionnamedtype::getname' => array ( 0 => 'string', ), - 'ReflectionNamedType::isBuiltin' => + 'reflectionnamedtype::isbuiltin' => array ( 0 => 'bool', ), - 'ReflectionObject::__construct' => + 'reflectionobject::__construct' => array ( 0 => 'void', 'object' => 'object', ), - 'ReflectionObject::__toString' => + 'reflectionobject::__tostring' => array ( 0 => 'string', ), - 'ReflectionObject::getConstant' => + 'reflectionobject::getconstant' => array ( 0 => 'mixed', 'name' => 'string', ), - 'ReflectionObject::getConstants' => + 'reflectionobject::getconstants' => array ( 0 => 'array', 'filter=' => 'int|null', ), - 'ReflectionObject::getConstructor' => + 'reflectionobject::getconstructor' => array ( 0 => 'ReflectionMethod|null', ), - 'ReflectionObject::getDefaultProperties' => + 'reflectionobject::getdefaultproperties' => array ( 0 => 'array', ), - 'ReflectionObject::getDocComment' => + 'reflectionobject::getdoccomment' => array ( 0 => 'false|string', ), - 'ReflectionObject::getEndLine' => + 'reflectionobject::getendline' => array ( 0 => 'false|int', ), - 'ReflectionObject::getExtension' => + 'reflectionobject::getextension' => array ( 0 => 'ReflectionExtension|null', ), - 'ReflectionObject::getExtensionName' => + 'reflectionobject::getextensionname' => array ( 0 => 'false|string', ), - 'ReflectionObject::getFileName' => + 'reflectionobject::getfilename' => array ( 0 => 'false|string', ), - 'ReflectionObject::getInterfaceNames' => + 'reflectionobject::getinterfacenames' => array ( 0 => 'array', ), - 'ReflectionObject::getInterfaces' => + 'reflectionobject::getinterfaces' => array ( 0 => 'array', ), - 'ReflectionObject::getMethod' => + 'reflectionobject::getmethod' => array ( 0 => 'ReflectionMethod', 'name' => 'string', ), - 'ReflectionObject::getMethods' => + 'reflectionobject::getmethods' => array ( 0 => 'array', 'filter=' => 'int|null', ), - 'ReflectionObject::getModifiers' => + 'reflectionobject::getmodifiers' => array ( 0 => 'int', ), - 'ReflectionObject::getName' => + 'reflectionobject::getname' => array ( 0 => 'string', ), - 'ReflectionObject::getNamespaceName' => + 'reflectionobject::getnamespacename' => array ( 0 => 'string', ), - 'ReflectionObject::getParentClass' => + 'reflectionobject::getparentclass' => array ( 0 => 'ReflectionClass|false', ), - 'ReflectionObject::getProperties' => + 'reflectionobject::getproperties' => array ( 0 => 'array', 'filter=' => 'int|null', ), - 'ReflectionObject::getProperty' => + 'reflectionobject::getproperty' => array ( 0 => 'ReflectionProperty', 'name' => 'string', ), - 'ReflectionObject::getReflectionConstant' => + 'reflectionobject::getreflectionconstant' => array ( 0 => 'ReflectionClassConstant', 'name' => 'string', ), - 'ReflectionObject::getReflectionConstants' => + 'reflectionobject::getreflectionconstants' => array ( 0 => 'list', 'filter=' => 'int|null', ), - 'ReflectionObject::getShortName' => + 'reflectionobject::getshortname' => array ( 0 => 'string', ), - 'ReflectionObject::getStartLine' => + 'reflectionobject::getstartline' => array ( 0 => 'false|int', ), - 'ReflectionObject::getStaticProperties' => + 'reflectionobject::getstaticproperties' => array ( 0 => 'array', ), - 'ReflectionObject::getStaticPropertyValue' => + 'reflectionobject::getstaticpropertyvalue' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'mixed', ), - 'ReflectionObject::getTraitAliases' => + 'reflectionobject::gettraitaliases' => array ( 0 => 'array', ), - 'ReflectionObject::getTraitNames' => + 'reflectionobject::gettraitnames' => array ( 0 => 'list', ), - 'ReflectionObject::getTraits' => + 'reflectionobject::gettraits' => array ( 0 => 'array', ), - 'ReflectionObject::hasConstant' => + 'reflectionobject::hasconstant' => array ( 0 => 'bool', 'name' => 'string', ), - 'ReflectionObject::hasMethod' => + 'reflectionobject::hasmethod' => array ( 0 => 'bool', 'name' => 'string', ), - 'ReflectionObject::hasProperty' => + 'reflectionobject::hasproperty' => array ( 0 => 'bool', 'name' => 'string', ), - 'ReflectionObject::implementsInterface' => + 'reflectionobject::implementsinterface' => array ( 0 => 'bool', 'interface' => 'ReflectionClass|class-string', ), - 'ReflectionObject::inNamespace' => + 'reflectionobject::innamespace' => array ( 0 => 'bool', ), - 'ReflectionObject::isAbstract' => + 'reflectionobject::isabstract' => array ( 0 => 'bool', ), - 'ReflectionObject::isAnonymous' => + 'reflectionobject::isanonymous' => array ( 0 => 'bool', ), - 'ReflectionObject::isCloneable' => + 'reflectionobject::iscloneable' => array ( 0 => 'bool', ), - 'ReflectionObject::isEnum' => + 'reflectionobject::isenum' => array ( 0 => 'bool', ), - 'ReflectionObject::isFinal' => + 'reflectionobject::isfinal' => array ( 0 => 'bool', ), - 'ReflectionObject::isInstance' => + 'reflectionobject::isinstance' => array ( 0 => 'bool', 'object' => 'object', ), - 'ReflectionObject::isInstantiable' => + 'reflectionobject::isinstantiable' => array ( 0 => 'bool', ), - 'ReflectionObject::isInterface' => + 'reflectionobject::isinterface' => array ( 0 => 'bool', ), - 'ReflectionObject::isInternal' => + 'reflectionobject::isinternal' => array ( 0 => 'bool', ), - 'ReflectionObject::isIterable' => + 'reflectionobject::isiterable' => array ( 0 => 'bool', ), - 'ReflectionObject::isIterateable' => + 'reflectionobject::isiterateable' => array ( 0 => 'bool', ), - 'ReflectionObject::isSubclassOf' => + 'reflectionobject::issubclassof' => array ( 0 => 'bool', 'class' => 'ReflectionClass|string', ), - 'ReflectionObject::isTrait' => + 'reflectionobject::istrait' => array ( 0 => 'bool', ), - 'ReflectionObject::isUserDefined' => + 'reflectionobject::isuserdefined' => array ( 0 => 'bool', ), - 'ReflectionObject::newInstance' => + 'reflectionobject::newinstance' => array ( 0 => 'object', 'args=' => 'mixed', '...args=' => 'array', ), - 'ReflectionObject::newInstanceArgs' => + 'reflectionobject::newinstanceargs' => array ( 0 => 'null|object', 'args=' => 'array|string, mixed>', ), - 'ReflectionObject::newInstanceWithoutConstructor' => + 'reflectionobject::newinstancewithoutconstructor' => array ( 0 => 'object', ), - 'ReflectionObject::setStaticPropertyValue' => + 'reflectionobject::setstaticpropertyvalue' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'ReflectionParameter::__clone' => + 'reflectionparameter::__clone' => array ( 0 => 'void', ), - 'ReflectionParameter::__construct' => + 'reflectionparameter::__construct' => array ( 0 => 'void', 'function' => 'array|object|string', 'param' => 'int|string', ), - 'ReflectionParameter::__toString' => + 'reflectionparameter::__tostring' => array ( 0 => 'string', ), - 'ReflectionParameter::allowsNull' => + 'reflectionparameter::allowsnull' => array ( 0 => 'bool', ), - 'ReflectionParameter::canBePassedByValue' => + 'reflectionparameter::canbepassedbyvalue' => array ( 0 => 'bool', ), - 'ReflectionParameter::getAttributes' => + 'reflectionparameter::getattributes' => array ( 0 => 'list', 'name=' => 'null|string', 'flags=' => 'int', ), - 'ReflectionParameter::getClass' => + 'reflectionparameter::getclass' => array ( 0 => 'ReflectionClass|null', ), - 'ReflectionParameter::getDeclaringClass' => + 'reflectionparameter::getdeclaringclass' => array ( 0 => 'ReflectionClass|null', ), - 'ReflectionParameter::getDeclaringFunction' => + 'reflectionparameter::getdeclaringfunction' => array ( 0 => 'ReflectionFunctionAbstract', ), - 'ReflectionParameter::getDefaultValue' => + 'reflectionparameter::getdefaultvalue' => array ( 0 => 'mixed', ), - 'ReflectionParameter::getDefaultValueConstantName' => + 'reflectionparameter::getdefaultvalueconstantname' => array ( 0 => 'null|string', ), - 'ReflectionParameter::getName' => + 'reflectionparameter::getname' => array ( 0 => 'non-empty-string', ), - 'ReflectionParameter::getPosition' => + 'reflectionparameter::getposition' => array ( 0 => 'int<0, max>', ), - 'ReflectionParameter::getType' => + 'reflectionparameter::gettype' => array ( 0 => 'ReflectionType|null', ), - 'ReflectionParameter::hasType' => + 'reflectionparameter::hastype' => array ( 0 => 'bool', ), - 'ReflectionParameter::isArray' => + 'reflectionparameter::isarray' => array ( 0 => 'bool', ), - 'ReflectionParameter::isCallable' => + 'reflectionparameter::iscallable' => array ( 0 => 'bool', ), - 'ReflectionParameter::isDefaultValueAvailable' => + 'reflectionparameter::isdefaultvalueavailable' => array ( 0 => 'bool', ), - 'ReflectionParameter::isDefaultValueConstant' => + 'reflectionparameter::isdefaultvalueconstant' => array ( 0 => 'bool', ), - 'ReflectionParameter::isOptional' => + 'reflectionparameter::isoptional' => array ( 0 => 'bool', ), - 'ReflectionParameter::isPassedByReference' => + 'reflectionparameter::ispassedbyreference' => array ( 0 => 'bool', ), - 'ReflectionParameter::isVariadic' => + 'reflectionparameter::isvariadic' => array ( 0 => 'bool', ), - 'ReflectionProperty::__clone' => + 'reflectionproperty::__clone' => array ( 0 => 'void', ), - 'ReflectionProperty::__construct' => + 'reflectionproperty::__construct' => array ( 0 => 'void', 'class' => 'class-string|object', 'property' => 'string', ), - 'ReflectionProperty::__toString' => + 'reflectionproperty::__tostring' => array ( 0 => 'string', ), - 'ReflectionProperty::getAttributes' => + 'reflectionproperty::getattributes' => array ( 0 => 'list', 'name=' => 'null|string', 'flags=' => 'int', ), - 'ReflectionProperty::getDeclaringClass' => + 'reflectionproperty::getdeclaringclass' => array ( 0 => 'ReflectionClass', ), - 'ReflectionProperty::getDefaultValue' => + 'reflectionproperty::getdefaultvalue' => array ( 0 => 'mixed', ), - 'ReflectionProperty::getDocComment' => + 'reflectionproperty::getdoccomment' => array ( 0 => 'false|string', ), - 'ReflectionProperty::getModifiers' => + 'reflectionproperty::getmodifiers' => array ( 0 => 'int', ), - 'ReflectionProperty::getName' => + 'reflectionproperty::getname' => array ( 0 => 'string', ), - 'ReflectionProperty::getType' => + 'reflectionproperty::gettype' => array ( 0 => 'ReflectionType|null', ), - 'ReflectionProperty::getValue' => + 'reflectionproperty::getvalue' => array ( 0 => 'mixed', 'object=' => 'null|object', ), - 'ReflectionProperty::hasDefaultValue' => + 'reflectionproperty::hasdefaultvalue' => array ( 0 => 'bool', ), - 'ReflectionProperty::hasType' => + 'reflectionproperty::hastype' => array ( 0 => 'bool', ), - 'ReflectionProperty::isDefault' => + 'reflectionproperty::isdefault' => array ( 0 => 'bool', ), - 'ReflectionProperty::isInitialized' => + 'reflectionproperty::isinitialized' => array ( 0 => 'bool', 'object=' => 'null|object', ), - 'ReflectionProperty::isPrivate' => + 'reflectionproperty::isprivate' => array ( 0 => 'bool', ), - 'ReflectionProperty::isPromoted' => + 'reflectionproperty::ispromoted' => array ( 0 => 'bool', ), - 'ReflectionProperty::isProtected' => + 'reflectionproperty::isprotected' => array ( 0 => 'bool', ), - 'ReflectionProperty::isPublic' => + 'reflectionproperty::ispublic' => array ( 0 => 'bool', ), - 'ReflectionProperty::isReadonly' => + 'reflectionproperty::isreadonly' => array ( 0 => 'bool', ), - 'ReflectionProperty::isStatic' => + 'reflectionproperty::isstatic' => array ( 0 => 'bool', ), - 'ReflectionProperty::setAccessible' => + 'reflectionproperty::setaccessible' => array ( 0 => 'void', 'accessible' => 'bool', ), - 'ReflectionProperty::setValue' => + 'reflectionproperty::setvalue' => array ( 0 => 'void', 'object' => 'null|object', 'value' => 'mixed', ), - 'ReflectionProperty::setValue\'1' => + 'reflectionproperty::setvalue\'1' => array ( 0 => 'void', 'value' => 'mixed', ), - 'ReflectionType::__clone' => + 'reflectiontype::__clone' => array ( 0 => 'void', ), - 'ReflectionType::__toString' => + 'reflectiontype::__tostring' => array ( 0 => 'string', ), - 'ReflectionType::allowsNull' => + 'reflectiontype::allowsnull' => array ( 0 => 'bool', ), - 'ReflectionUnionType::getTypes' => + 'reflectionuniontype::gettypes' => array ( 0 => 'list', ), - 'ReflectionZendExtension::__clone' => + 'reflectionzendextension::__clone' => array ( 0 => 'void', ), - 'ReflectionZendExtension::__construct' => + 'reflectionzendextension::__construct' => array ( 0 => 'void', 'name' => 'string', ), - 'ReflectionZendExtension::__toString' => + 'reflectionzendextension::__tostring' => array ( 0 => 'string', ), - 'ReflectionZendExtension::getAuthor' => + 'reflectionzendextension::getauthor' => array ( 0 => 'string', ), - 'ReflectionZendExtension::getCopyright' => + 'reflectionzendextension::getcopyright' => array ( 0 => 'string', ), - 'ReflectionZendExtension::getName' => + 'reflectionzendextension::getname' => array ( 0 => 'string', ), - 'ReflectionZendExtension::getURL' => + 'reflectionzendextension::geturl' => array ( 0 => 'string', ), - 'ReflectionZendExtension::getVersion' => + 'reflectionzendextension::getversion' => array ( 0 => 'string', ), - 'Reflector::__toString' => + 'reflector::__tostring' => array ( 0 => 'string', ), - 'Reflector::export' => + 'reflector::export' => array ( 0 => 'null|string', ), - 'RegexIterator::__construct' => + 'regexiterator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', @@ -57199,62 +57199,62 @@ 'flags=' => 'int', 'pregFlags=' => 'int', ), - 'RegexIterator::accept' => + 'regexiterator::accept' => array ( 0 => 'bool', ), - 'RegexIterator::current' => + 'regexiterator::current' => array ( 0 => 'mixed', ), - 'RegexIterator::getFlags' => + 'regexiterator::getflags' => array ( 0 => 'int', ), - 'RegexIterator::getInnerIterator' => + 'regexiterator::getinneriterator' => array ( 0 => 'Iterator|null', ), - 'RegexIterator::getMode' => + 'regexiterator::getmode' => array ( 0 => 'int', ), - 'RegexIterator::getPregFlags' => + 'regexiterator::getpregflags' => array ( 0 => 'int', ), - 'RegexIterator::getRegex' => + 'regexiterator::getregex' => array ( 0 => 'string', ), - 'RegexIterator::key' => + 'regexiterator::key' => array ( 0 => 'mixed', ), - 'RegexIterator::next' => + 'regexiterator::next' => array ( 0 => 'void', ), - 'RegexIterator::rewind' => + 'regexiterator::rewind' => array ( 0 => 'void', ), - 'RegexIterator::setFlags' => + 'regexiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'RegexIterator::setMode' => + 'regexiterator::setmode' => array ( 0 => 'void', 'mode' => 'int', ), - 'RegexIterator::setPregFlags' => + 'regexiterator::setpregflags' => array ( 0 => 'void', 'pregFlags' => 'int', ), - 'RegexIterator::valid' => + 'regexiterator::valid' => array ( 0 => 'bool', ), @@ -57295,39 +57295,39 @@ 0 => 'false|mixed', '&r_array' => 'array', ), - 'ResourceBundle::__construct' => + 'resourcebundle::__construct' => array ( 0 => 'void', 'locale' => 'null|string', 'bundle' => 'null|string', 'fallback=' => 'bool', ), - 'ResourceBundle::count' => + 'resourcebundle::count' => array ( 0 => 'int', ), - 'ResourceBundle::create' => + 'resourcebundle::create' => array ( 0 => 'ResourceBundle|null', 'locale' => 'null|string', 'bundle' => 'null|string', 'fallback=' => 'bool', ), - 'ResourceBundle::get' => + 'resourcebundle::get' => array ( 0 => 'ResourceBundle|array|int|null|string', 'index' => 'int|string', 'fallback=' => 'bool', ), - 'ResourceBundle::getErrorCode' => + 'resourcebundle::geterrorcode' => array ( 0 => 'int', ), - 'ResourceBundle::getErrorMessage' => + 'resourcebundle::geterrormessage' => array ( 0 => 'string', ), - 'ResourceBundle::getLocales' => + 'resourcebundle::getlocales' => array ( 0 => 'array|false', 'bundle' => 'string', @@ -57537,51 +57537,51 @@ array ( 0 => 'void', ), - 'RRDCreator::__construct' => + 'rrdcreator::__construct' => array ( 0 => 'void', 'path' => 'string', 'starttime=' => 'string', 'step=' => 'int', ), - 'RRDCreator::addArchive' => + 'rrdcreator::addarchive' => array ( 0 => 'void', 'description' => 'string', ), - 'RRDCreator::addDataSource' => + 'rrdcreator::adddatasource' => array ( 0 => 'void', 'description' => 'string', ), - 'RRDCreator::save' => + 'rrdcreator::save' => array ( 0 => 'bool', ), - 'RRDGraph::__construct' => + 'rrdgraph::__construct' => array ( 0 => 'void', 'path' => 'string', ), - 'RRDGraph::save' => + 'rrdgraph::save' => array ( 0 => 'array|false', ), - 'RRDGraph::saveVerbose' => + 'rrdgraph::saveverbose' => array ( 0 => 'array|false', ), - 'RRDGraph::setOptions' => + 'rrdgraph::setoptions' => array ( 0 => 'void', 'options' => 'array', ), - 'RRDUpdater::__construct' => + 'rrdupdater::__construct' => array ( 0 => 'void', 'path' => 'string', ), - 'RRDUpdater::update' => + 'rrdupdater::update' => array ( 0 => 'bool', 'values' => 'array', @@ -57871,7 +57871,7 @@ array ( 0 => 'bool', ), - 'Runkit_Sandbox::__construct' => + 'runkit_sandbox::__construct' => array ( 0 => 'void', 'options=' => 'array', @@ -57882,11 +57882,11 @@ 'sandbox' => 'object', 'callback=' => 'mixed', ), - 'Runkit_Sandbox_Parent' => + 'runkit_sandbox_parent' => array ( 0 => 'mixed', ), - 'Runkit_Sandbox_Parent::__construct' => + 'runkit_sandbox_parent::__construct' => array ( 0 => 'void', ), @@ -57899,127 +57899,127 @@ 0 => 'array', 'value' => 'mixed', ), - 'RuntimeException::__construct' => + 'runtimeexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'RuntimeException::__toString' => + 'runtimeexception::__tostring' => array ( 0 => 'string', ), - 'RuntimeException::getCode' => + 'runtimeexception::getcode' => array ( 0 => 'int', ), - 'RuntimeException::getFile' => + 'runtimeexception::getfile' => array ( 0 => 'string', ), - 'RuntimeException::getLine' => + 'runtimeexception::getline' => array ( 0 => 'int', ), - 'RuntimeException::getMessage' => + 'runtimeexception::getmessage' => array ( 0 => 'string', ), - 'RuntimeException::getPrevious' => + 'runtimeexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'RuntimeException::getTrace' => + 'runtimeexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'RuntimeException::getTraceAsString' => + 'runtimeexception::gettraceasstring' => array ( 0 => 'string', ), - 'SAMConnection::commit' => + 'samconnection::commit' => array ( 0 => 'bool', ), - 'SAMConnection::connect' => + 'samconnection::connect' => array ( 0 => 'bool', 'protocol' => 'string', 'properties=' => 'array', ), - 'SAMConnection::disconnect' => + 'samconnection::disconnect' => array ( 0 => 'bool', ), - 'SAMConnection::errno' => + 'samconnection::errno' => array ( 0 => 'int', ), - 'SAMConnection::error' => + 'samconnection::error' => array ( 0 => 'string', ), - 'SAMConnection::isConnected' => + 'samconnection::isconnected' => array ( 0 => 'bool', ), - 'SAMConnection::peek' => + 'samconnection::peek' => array ( 0 => 'SAMMessage', 'target' => 'string', 'properties=' => 'array', ), - 'SAMConnection::peekAll' => + 'samconnection::peekall' => array ( 0 => 'array', 'target' => 'string', 'properties=' => 'array', ), - 'SAMConnection::receive' => + 'samconnection::receive' => array ( 0 => 'SAMMessage', 'target' => 'string', 'properties=' => 'array', ), - 'SAMConnection::remove' => + 'samconnection::remove' => array ( 0 => 'SAMMessage', 'target' => 'string', 'properties=' => 'array', ), - 'SAMConnection::rollback' => + 'samconnection::rollback' => array ( 0 => 'bool', ), - 'SAMConnection::send' => + 'samconnection::send' => array ( 0 => 'string', 'target' => 'string', 'msg' => 'sammessage', 'properties=' => 'array', ), - 'SAMConnection::setDebug' => + 'samconnection::setdebug' => array ( 0 => 'mixed', 'switch' => 'bool', ), - 'SAMConnection::subscribe' => + 'samconnection::subscribe' => array ( 0 => 'string', 'targettopic' => 'string', ), - 'SAMConnection::unsubscribe' => + 'samconnection::unsubscribe' => array ( 0 => 'bool', 'subscriptionid' => 'string', 'targettopic=' => 'string', ), - 'SAMMessage::body' => + 'sammessage::body' => array ( 0 => 'string', ), - 'SAMMessage::header' => + 'sammessage::header' => array ( 0 => 'object', ), @@ -58050,625 +58050,625 @@ 'stream' => 'resource', 'enable=' => 'bool|null', ), - 'Saxon\\SaxonProcessor::__construct' => + 'saxon\\saxonprocessor::__construct' => array ( 0 => 'void', 'license=' => 'bool', 'cwd=' => 'string', ), - 'Saxon\\SaxonProcessor::createAtomicValue' => + 'saxon\\saxonprocessor::createatomicvalue' => array ( 0 => 'Saxon\\XdmValue', 'primitive_type_val' => 'scalar', ), - 'Saxon\\SaxonProcessor::newSchemaValidator' => + 'saxon\\saxonprocessor::newschemavalidator' => array ( 0 => 'Saxon\\SchemaValidator', ), - 'Saxon\\SaxonProcessor::newXPathProcessor' => + 'saxon\\saxonprocessor::newxpathprocessor' => array ( 0 => 'Saxon\\XPathProcessor', ), - 'Saxon\\SaxonProcessor::newXQueryProcessor' => + 'saxon\\saxonprocessor::newxqueryprocessor' => array ( 0 => 'Saxon\\XQueryProcessor', ), - 'Saxon\\SaxonProcessor::newXsltProcessor' => + 'saxon\\saxonprocessor::newxsltprocessor' => array ( 0 => 'Saxon\\XsltProcessor', ), - 'Saxon\\SaxonProcessor::parseXmlFromFile' => + 'saxon\\saxonprocessor::parsexmlfromfile' => array ( 0 => 'Saxon\\XdmNode', 'fileName' => 'string', ), - 'Saxon\\SaxonProcessor::parseXmlFromString' => + 'saxon\\saxonprocessor::parsexmlfromstring' => array ( 0 => 'Saxon\\XdmNode', 'value' => 'string', ), - 'Saxon\\SaxonProcessor::registerPHPFunctions' => + 'saxon\\saxonprocessor::registerphpfunctions' => array ( 0 => 'void', 'library' => 'string', ), - 'Saxon\\SaxonProcessor::setConfigurationProperty' => + 'saxon\\saxonprocessor::setconfigurationproperty' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Saxon\\SaxonProcessor::setcwd' => + 'saxon\\saxonprocessor::setcwd' => array ( 0 => 'void', 'cwd' => 'string', ), - 'Saxon\\SaxonProcessor::setResourceDirectory' => + 'saxon\\saxonprocessor::setresourcedirectory' => array ( 0 => 'void', 'dir' => 'string', ), - 'Saxon\\SaxonProcessor::version' => + 'saxon\\saxonprocessor::version' => array ( 0 => 'string', ), - 'Saxon\\SchemaValidator::clearParameters' => + 'saxon\\schemavalidator::clearparameters' => array ( 0 => 'void', ), - 'Saxon\\SchemaValidator::clearProperties' => + 'saxon\\schemavalidator::clearproperties' => array ( 0 => 'void', ), - 'Saxon\\SchemaValidator::exceptionClear' => + 'saxon\\schemavalidator::exceptionclear' => array ( 0 => 'void', ), - 'Saxon\\SchemaValidator::getErrorCode' => + 'saxon\\schemavalidator::geterrorcode' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\SchemaValidator::getErrorMessage' => + 'saxon\\schemavalidator::geterrormessage' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\SchemaValidator::getExceptionCount' => + 'saxon\\schemavalidator::getexceptioncount' => array ( 0 => 'int', ), - 'Saxon\\SchemaValidator::getValidationReport' => + 'saxon\\schemavalidator::getvalidationreport' => array ( 0 => 'Saxon\\XdmNode', ), - 'Saxon\\SchemaValidator::registerSchemaFromFile' => + 'saxon\\schemavalidator::registerschemafromfile' => array ( 0 => 'void', 'fileName' => 'string', ), - 'Saxon\\SchemaValidator::registerSchemaFromString' => + 'saxon\\schemavalidator::registerschemafromstring' => array ( 0 => 'void', 'schemaStr' => 'string', ), - 'Saxon\\SchemaValidator::setOutputFile' => + 'saxon\\schemavalidator::setoutputfile' => array ( 0 => 'void', 'fileName' => 'string', ), - 'Saxon\\SchemaValidator::setParameter' => + 'saxon\\schemavalidator::setparameter' => array ( 0 => 'void', 'name' => 'string', 'value' => 'Saxon\\XdmValue', ), - 'Saxon\\SchemaValidator::setProperty' => + 'saxon\\schemavalidator::setproperty' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Saxon\\SchemaValidator::setSourceNode' => + 'saxon\\schemavalidator::setsourcenode' => array ( 0 => 'void', 'node' => 'Saxon\\XdmNode', ), - 'Saxon\\SchemaValidator::validate' => + 'saxon\\schemavalidator::validate' => array ( 0 => 'void', 'filename=' => 'null|string', ), - 'Saxon\\SchemaValidator::validateToNode' => + 'saxon\\schemavalidator::validatetonode' => array ( 0 => 'Saxon\\XdmNode', 'filename=' => 'null|string', ), - 'Saxon\\XdmAtomicValue::addXdmItem' => + 'saxon\\xdmatomicvalue::addxdmitem' => array ( 0 => 'mixed', 'item' => 'Saxon\\XdmItem', ), - 'Saxon\\XdmAtomicValue::getAtomicValue' => + 'saxon\\xdmatomicvalue::getatomicvalue' => array ( 0 => 'Saxon\\XdmAtomicValue|null', ), - 'Saxon\\XdmAtomicValue::getBooleanValue' => + 'saxon\\xdmatomicvalue::getbooleanvalue' => array ( 0 => 'bool', ), - 'Saxon\\XdmAtomicValue::getDoubleValue' => + 'saxon\\xdmatomicvalue::getdoublevalue' => array ( 0 => 'float', ), - 'Saxon\\XdmAtomicValue::getHead' => + 'saxon\\xdmatomicvalue::gethead' => array ( 0 => 'Saxon\\XdmItem', ), - 'Saxon\\XdmAtomicValue::getLongValue' => + 'saxon\\xdmatomicvalue::getlongvalue' => array ( 0 => 'int', ), - 'Saxon\\XdmAtomicValue::getNodeValue' => + 'saxon\\xdmatomicvalue::getnodevalue' => array ( 0 => 'Saxon\\XdmNode|null', ), - 'Saxon\\XdmAtomicValue::getStringValue' => + 'saxon\\xdmatomicvalue::getstringvalue' => array ( 0 => 'string', ), - 'Saxon\\XdmAtomicValue::isAtomic' => + 'saxon\\xdmatomicvalue::isatomic' => array ( 0 => 'true', ), - 'Saxon\\XdmAtomicValue::isNode' => + 'saxon\\xdmatomicvalue::isnode' => array ( 0 => 'bool', ), - 'Saxon\\XdmAtomicValue::itemAt' => + 'saxon\\xdmatomicvalue::itemat' => array ( 0 => 'Saxon\\XdmItem', 'index' => 'int', ), - 'Saxon\\XdmAtomicValue::size' => + 'saxon\\xdmatomicvalue::size' => array ( 0 => 'int', ), - 'Saxon\\XdmItem::addXdmItem' => + 'saxon\\xdmitem::addxdmitem' => array ( 0 => 'mixed', 'item' => 'Saxon\\XdmItem', ), - 'Saxon\\XdmItem::getAtomicValue' => + 'saxon\\xdmitem::getatomicvalue' => array ( 0 => 'Saxon\\XdmAtomicValue|null', ), - 'Saxon\\XdmItem::getHead' => + 'saxon\\xdmitem::gethead' => array ( 0 => 'Saxon\\XdmItem', ), - 'Saxon\\XdmItem::getNodeValue' => + 'saxon\\xdmitem::getnodevalue' => array ( 0 => 'Saxon\\XdmNode|null', ), - 'Saxon\\XdmItem::getStringValue' => + 'saxon\\xdmitem::getstringvalue' => array ( 0 => 'string', ), - 'Saxon\\XdmItem::isAtomic' => + 'saxon\\xdmitem::isatomic' => array ( 0 => 'bool', ), - 'Saxon\\XdmItem::isNode' => + 'saxon\\xdmitem::isnode' => array ( 0 => 'bool', ), - 'Saxon\\XdmItem::itemAt' => + 'saxon\\xdmitem::itemat' => array ( 0 => 'Saxon\\XdmItem', 'index' => 'int', ), - 'Saxon\\XdmItem::size' => + 'saxon\\xdmitem::size' => array ( 0 => 'int', ), - 'Saxon\\XdmNode::addXdmItem' => + 'saxon\\xdmnode::addxdmitem' => array ( 0 => 'mixed', 'item' => 'Saxon\\XdmItem', ), - 'Saxon\\XdmNode::getAtomicValue' => + 'saxon\\xdmnode::getatomicvalue' => array ( 0 => 'Saxon\\XdmAtomicValue|null', ), - 'Saxon\\XdmNode::getAttributeCount' => + 'saxon\\xdmnode::getattributecount' => array ( 0 => 'int', ), - 'Saxon\\XdmNode::getAttributeNode' => + 'saxon\\xdmnode::getattributenode' => array ( 0 => 'Saxon\\XdmNode|null', 'index' => 'int', ), - 'Saxon\\XdmNode::getAttributeValue' => + 'saxon\\xdmnode::getattributevalue' => array ( 0 => 'null|string', 'index' => 'int', ), - 'Saxon\\XdmNode::getChildCount' => + 'saxon\\xdmnode::getchildcount' => array ( 0 => 'int', ), - 'Saxon\\XdmNode::getChildNode' => + 'saxon\\xdmnode::getchildnode' => array ( 0 => 'Saxon\\XdmNode|null', 'index' => 'int', ), - 'Saxon\\XdmNode::getHead' => + 'saxon\\xdmnode::gethead' => array ( 0 => 'Saxon\\XdmItem', ), - 'Saxon\\XdmNode::getNodeKind' => + 'saxon\\xdmnode::getnodekind' => array ( 0 => 'int', ), - 'Saxon\\XdmNode::getNodeName' => + 'saxon\\xdmnode::getnodename' => array ( 0 => 'string', ), - 'Saxon\\XdmNode::getNodeValue' => + 'saxon\\xdmnode::getnodevalue' => array ( 0 => 'Saxon\\XdmNode|null', ), - 'Saxon\\XdmNode::getParent' => + 'saxon\\xdmnode::getparent' => array ( 0 => 'Saxon\\XdmNode|null', ), - 'Saxon\\XdmNode::getStringValue' => + 'saxon\\xdmnode::getstringvalue' => array ( 0 => 'string', ), - 'Saxon\\XdmNode::isAtomic' => + 'saxon\\xdmnode::isatomic' => array ( 0 => 'false', ), - 'Saxon\\XdmNode::isNode' => + 'saxon\\xdmnode::isnode' => array ( 0 => 'bool', ), - 'Saxon\\XdmNode::itemAt' => + 'saxon\\xdmnode::itemat' => array ( 0 => 'Saxon\\XdmItem', 'index' => 'int', ), - 'Saxon\\XdmNode::size' => + 'saxon\\xdmnode::size' => array ( 0 => 'int', ), - 'Saxon\\XdmValue::addXdmItem' => + 'saxon\\xdmvalue::addxdmitem' => array ( 0 => 'mixed', 'item' => 'Saxon\\XdmItem', ), - 'Saxon\\XdmValue::getHead' => + 'saxon\\xdmvalue::gethead' => array ( 0 => 'Saxon\\XdmItem', ), - 'Saxon\\XdmValue::itemAt' => + 'saxon\\xdmvalue::itemat' => array ( 0 => 'Saxon\\XdmItem', 'index' => 'int', ), - 'Saxon\\XdmValue::size' => + 'saxon\\xdmvalue::size' => array ( 0 => 'int', ), - 'Saxon\\XPathProcessor::clearParameters' => + 'saxon\\xpathprocessor::clearparameters' => array ( 0 => 'void', ), - 'Saxon\\XPathProcessor::clearProperties' => + 'saxon\\xpathprocessor::clearproperties' => array ( 0 => 'void', ), - 'Saxon\\XPathProcessor::declareNamespace' => + 'saxon\\xpathprocessor::declarenamespace' => array ( 0 => 'void', 'prefix' => 'mixed', 'namespace' => 'mixed', ), - 'Saxon\\XPathProcessor::effectiveBooleanValue' => + 'saxon\\xpathprocessor::effectivebooleanvalue' => array ( 0 => 'bool', 'xpathStr' => 'string', ), - 'Saxon\\XPathProcessor::evaluate' => + 'saxon\\xpathprocessor::evaluate' => array ( 0 => 'Saxon\\XdmValue', 'xpathStr' => 'string', ), - 'Saxon\\XPathProcessor::evaluateSingle' => + 'saxon\\xpathprocessor::evaluatesingle' => array ( 0 => 'Saxon\\XdmItem', 'xpathStr' => 'string', ), - 'Saxon\\XPathProcessor::exceptionClear' => + 'saxon\\xpathprocessor::exceptionclear' => array ( 0 => 'void', ), - 'Saxon\\XPathProcessor::getErrorCode' => + 'saxon\\xpathprocessor::geterrorcode' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\XPathProcessor::getErrorMessage' => + 'saxon\\xpathprocessor::geterrormessage' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\XPathProcessor::getExceptionCount' => + 'saxon\\xpathprocessor::getexceptioncount' => array ( 0 => 'int', ), - 'Saxon\\XPathProcessor::setBaseURI' => + 'saxon\\xpathprocessor::setbaseuri' => array ( 0 => 'void', 'uri' => 'string', ), - 'Saxon\\XPathProcessor::setContextFile' => + 'saxon\\xpathprocessor::setcontextfile' => array ( 0 => 'void', 'fileName' => 'string', ), - 'Saxon\\XPathProcessor::setContextItem' => + 'saxon\\xpathprocessor::setcontextitem' => array ( 0 => 'void', 'item' => 'Saxon\\XdmItem', ), - 'Saxon\\XPathProcessor::setParameter' => + 'saxon\\xpathprocessor::setparameter' => array ( 0 => 'void', 'name' => 'string', 'value' => 'Saxon\\XdmValue', ), - 'Saxon\\XPathProcessor::setProperty' => + 'saxon\\xpathprocessor::setproperty' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Saxon\\XQueryProcessor::clearParameters' => + 'saxon\\xqueryprocessor::clearparameters' => array ( 0 => 'void', ), - 'Saxon\\XQueryProcessor::clearProperties' => + 'saxon\\xqueryprocessor::clearproperties' => array ( 0 => 'void', ), - 'Saxon\\XQueryProcessor::declareNamespace' => + 'saxon\\xqueryprocessor::declarenamespace' => array ( 0 => 'void', 'prefix' => 'string', 'namespace' => 'string', ), - 'Saxon\\XQueryProcessor::exceptionClear' => + 'saxon\\xqueryprocessor::exceptionclear' => array ( 0 => 'void', ), - 'Saxon\\XQueryProcessor::getErrorCode' => + 'saxon\\xqueryprocessor::geterrorcode' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\XQueryProcessor::getErrorMessage' => + 'saxon\\xqueryprocessor::geterrormessage' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\XQueryProcessor::getExceptionCount' => + 'saxon\\xqueryprocessor::getexceptioncount' => array ( 0 => 'int', ), - 'Saxon\\XQueryProcessor::runQueryToFile' => + 'saxon\\xqueryprocessor::runquerytofile' => array ( 0 => 'void', 'outfilename' => 'string', ), - 'Saxon\\XQueryProcessor::runQueryToString' => + 'saxon\\xqueryprocessor::runquerytostring' => array ( 0 => 'null|string', ), - 'Saxon\\XQueryProcessor::runQueryToValue' => + 'saxon\\xqueryprocessor::runquerytovalue' => array ( 0 => 'Saxon\\XdmValue|null', ), - 'Saxon\\XQueryProcessor::setContextItem' => + 'saxon\\xqueryprocessor::setcontextitem' => array ( 0 => 'void', 'object' => 'Saxon\\XdmAtomicValue|Saxon\\XdmItem|Saxon\\XdmNode|Saxon\\XdmValue', ), - 'Saxon\\XQueryProcessor::setContextItemFromFile' => + 'saxon\\xqueryprocessor::setcontextitemfromfile' => array ( 0 => 'void', 'fileName' => 'string', ), - 'Saxon\\XQueryProcessor::setParameter' => + 'saxon\\xqueryprocessor::setparameter' => array ( 0 => 'void', 'name' => 'string', 'value' => 'Saxon\\XdmValue', ), - 'Saxon\\XQueryProcessor::setProperty' => + 'saxon\\xqueryprocessor::setproperty' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Saxon\\XQueryProcessor::setQueryBaseURI' => + 'saxon\\xqueryprocessor::setquerybaseuri' => array ( 0 => 'void', 'uri' => 'string', ), - 'Saxon\\XQueryProcessor::setQueryContent' => + 'saxon\\xqueryprocessor::setquerycontent' => array ( 0 => 'void', 'string' => 'string', ), - 'Saxon\\XQueryProcessor::setQueryFile' => + 'saxon\\xqueryprocessor::setqueryfile' => array ( 0 => 'void', 'filename' => 'string', ), - 'Saxon\\XQueryProcessor::setQueryItem' => + 'saxon\\xqueryprocessor::setqueryitem' => array ( 0 => 'void', 'item' => 'Saxon\\XdmItem', ), - 'Saxon\\XsltProcessor::clearParameters' => + 'saxon\\xsltprocessor::clearparameters' => array ( 0 => 'void', ), - 'Saxon\\XsltProcessor::clearProperties' => + 'saxon\\xsltprocessor::clearproperties' => array ( 0 => 'void', ), - 'Saxon\\XsltProcessor::compileFromFile' => + 'saxon\\xsltprocessor::compilefromfile' => array ( 0 => 'void', 'fileName' => 'string', ), - 'Saxon\\XsltProcessor::compileFromString' => + 'saxon\\xsltprocessor::compilefromstring' => array ( 0 => 'void', 'string' => 'string', ), - 'Saxon\\XsltProcessor::compileFromValue' => + 'saxon\\xsltprocessor::compilefromvalue' => array ( 0 => 'void', 'node' => 'Saxon\\XdmNode', ), - 'Saxon\\XsltProcessor::exceptionClear' => + 'saxon\\xsltprocessor::exceptionclear' => array ( 0 => 'void', ), - 'Saxon\\XsltProcessor::getErrorCode' => + 'saxon\\xsltprocessor::geterrorcode' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\XsltProcessor::getErrorMessage' => + 'saxon\\xsltprocessor::geterrormessage' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\XsltProcessor::getExceptionCount' => + 'saxon\\xsltprocessor::getexceptioncount' => array ( 0 => 'int', ), - 'Saxon\\XsltProcessor::setOutputFile' => + 'saxon\\xsltprocessor::setoutputfile' => array ( 0 => 'void', 'fileName' => 'string', ), - 'Saxon\\XsltProcessor::setParameter' => + 'saxon\\xsltprocessor::setparameter' => array ( 0 => 'void', 'name' => 'string', 'value' => 'Saxon\\XdmValue', ), - 'Saxon\\XsltProcessor::setProperty' => + 'saxon\\xsltprocessor::setproperty' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Saxon\\XsltProcessor::setSourceFromFile' => + 'saxon\\xsltprocessor::setsourcefromfile' => array ( 0 => 'void', 'filename' => 'string', ), - 'Saxon\\XsltProcessor::setSourceFromXdmValue' => + 'saxon\\xsltprocessor::setsourcefromxdmvalue' => array ( 0 => 'void', 'value' => 'Saxon\\XdmValue', ), - 'Saxon\\XsltProcessor::transformFileToFile' => + 'saxon\\xsltprocessor::transformfiletofile' => array ( 0 => 'void', 'sourceFileName' => 'string', 'stylesheetFileName' => 'string', 'outputfileName' => 'string', ), - 'Saxon\\XsltProcessor::transformFileToString' => + 'saxon\\xsltprocessor::transformfiletostring' => array ( 0 => 'null|string', 'sourceFileName' => 'string', 'stylesheetFileName' => 'string', ), - 'Saxon\\XsltProcessor::transformFileToValue' => + 'saxon\\xsltprocessor::transformfiletovalue' => array ( 0 => 'Saxon\\XdmValue', 'fileName' => 'string', ), - 'Saxon\\XsltProcessor::transformToFile' => + 'saxon\\xsltprocessor::transformtofile' => array ( 0 => 'void', ), - 'Saxon\\XsltProcessor::transformToString' => + 'saxon\\xsltprocessor::transformtostring' => array ( 0 => 'string', ), - 'Saxon\\XsltProcessor::transformToValue' => + 'saxon\\xsltprocessor::transformtovalue' => array ( 0 => 'Saxon\\XdmValue|null', ), - 'SCA::createDataObject' => + 'sca::createdataobject' => array ( 0 => 'SDO_DataObject', 'type_namespace_uri' => 'string', 'type_name' => 'string', ), - 'SCA::getService' => + 'sca::getservice' => array ( 0 => 'mixed', 'target' => 'string', 'binding=' => 'string', 'config=' => 'array', ), - 'SCA_LocalProxy::createDataObject' => + 'sca_localproxy::createdataobject' => array ( 0 => 'SDO_DataObject', 'type_namespace_uri' => 'string', 'type_name' => 'string', ), - 'SCA_SoapProxy::createDataObject' => + 'sca_soapproxy::createdataobject' => array ( 0 => 'SDO_DataObject', 'type_namespace_uri' => 'string', 'type_name' => 'string', ), - 'scalebarObj::convertToString' => + 'scalebarobj::converttostring' => array ( 0 => 'string', ), - 'scalebarObj::free' => + 'scalebarobj::free' => array ( 0 => 'void', ), - 'scalebarObj::set' => + 'scalebarobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'scalebarObj::setImageColor' => + 'scalebarobj::setimagecolor' => array ( 0 => 'int', 'red' => 'int', 'green' => 'int', 'blue' => 'int', ), - 'scalebarObj::updateFromString' => + 'scalebarobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', @@ -58680,38 +58680,38 @@ 'sorting_order=' => 'int', 'context=' => 'resource', ), - 'SDO_DAS_ChangeSummary::beginLogging' => + 'sdo_das_changesummary::beginlogging' => array ( 0 => 'mixed', ), - 'SDO_DAS_ChangeSummary::endLogging' => + 'sdo_das_changesummary::endlogging' => array ( 0 => 'mixed', ), - 'SDO_DAS_ChangeSummary::getChangedDataObjects' => + 'sdo_das_changesummary::getchangeddataobjects' => array ( 0 => 'SDO_List', ), - 'SDO_DAS_ChangeSummary::getChangeType' => + 'sdo_das_changesummary::getchangetype' => array ( 0 => 'int', 'dataobject' => 'sdo_dataobject', ), - 'SDO_DAS_ChangeSummary::getOldContainer' => + 'sdo_das_changesummary::getoldcontainer' => array ( 0 => 'SDO_DataObject', 'data_object' => 'sdo_dataobject', ), - 'SDO_DAS_ChangeSummary::getOldValues' => + 'sdo_das_changesummary::getoldvalues' => array ( 0 => 'SDO_List', 'data_object' => 'sdo_dataobject', ), - 'SDO_DAS_ChangeSummary::isLogging' => + 'sdo_das_changesummary::islogging' => array ( 0 => 'bool', ), - 'SDO_DAS_DataFactory::addPropertyToType' => + 'sdo_das_datafactory::addpropertytotype' => array ( 0 => 'mixed', 'parent_type_namespace_uri' => 'string', @@ -58721,39 +58721,39 @@ 'type_name' => 'string', 'options=' => 'array', ), - 'SDO_DAS_DataFactory::addType' => + 'sdo_das_datafactory::addtype' => array ( 0 => 'mixed', 'type_namespace_uri' => 'string', 'type_name' => 'string', 'options=' => 'array', ), - 'SDO_DAS_DataFactory::getDataFactory' => + 'sdo_das_datafactory::getdatafactory' => array ( 0 => 'SDO_DAS_DataFactory', ), - 'SDO_DAS_DataObject::getChangeSummary' => + 'sdo_das_dataobject::getchangesummary' => array ( 0 => 'SDO_DAS_ChangeSummary', ), - 'SDO_DAS_Relational::__construct' => + 'sdo_das_relational::__construct' => array ( 0 => 'void', 'database_metadata' => 'array', 'application_root_type=' => 'string', 'sdo_containment_references_metadata=' => 'array', ), - 'SDO_DAS_Relational::applyChanges' => + 'sdo_das_relational::applychanges' => array ( 0 => 'mixed', 'database_handle' => 'pdo', 'root_data_object' => 'sdodataobject', ), - 'SDO_DAS_Relational::createRootDataObject' => + 'sdo_das_relational::createrootdataobject' => array ( 0 => 'SDODataObject', ), - 'SDO_DAS_Relational::executePreparedQuery' => + 'sdo_das_relational::executepreparedquery' => array ( 0 => 'SDODataObject', 'database_handle' => 'pdo', @@ -58761,274 +58761,274 @@ 'value_list' => 'array', 'column_specifier=' => 'array', ), - 'SDO_DAS_Relational::executeQuery' => + 'sdo_das_relational::executequery' => array ( 0 => 'SDODataObject', 'database_handle' => 'pdo', 'sql_statement' => 'string', 'column_specifier=' => 'array', ), - 'SDO_DAS_Setting::getListIndex' => + 'sdo_das_setting::getlistindex' => array ( 0 => 'int', ), - 'SDO_DAS_Setting::getPropertyIndex' => + 'sdo_das_setting::getpropertyindex' => array ( 0 => 'int', ), - 'SDO_DAS_Setting::getPropertyName' => + 'sdo_das_setting::getpropertyname' => array ( 0 => 'string', ), - 'SDO_DAS_Setting::getValue' => + 'sdo_das_setting::getvalue' => array ( 0 => 'mixed', ), - 'SDO_DAS_Setting::isSet' => + 'sdo_das_setting::isset' => array ( 0 => 'bool', ), - 'SDO_DAS_XML::addTypes' => + 'sdo_das_xml::addtypes' => array ( 0 => 'mixed', 'xsd_file' => 'string', ), - 'SDO_DAS_XML::create' => + 'sdo_das_xml::create' => array ( 0 => 'SDO_DAS_XML', 'xsd_file=' => 'mixed', 'key=' => 'string', ), - 'SDO_DAS_XML::createDataObject' => + 'sdo_das_xml::createdataobject' => array ( 0 => 'SDO_DataObject', 'namespace_uri' => 'string', 'type_name' => 'string', ), - 'SDO_DAS_XML::createDocument' => + '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' => + 'sdo_das_xml::loadfile' => array ( 0 => 'SDO_XMLDocument', 'xml_file' => 'string', ), - 'SDO_DAS_XML::loadString' => + 'sdo_das_xml::loadstring' => array ( 0 => 'SDO_DAS_XML_Document', 'xml_string' => 'string', ), - 'SDO_DAS_XML::saveFile' => + 'sdo_das_xml::savefile' => array ( 0 => 'mixed', 'xdoc' => 'sdo_xmldocument', 'xml_file' => 'string', 'indent=' => 'int', ), - 'SDO_DAS_XML::saveString' => + 'sdo_das_xml::savestring' => array ( 0 => 'string', 'xdoc' => 'sdo_xmldocument', 'indent=' => 'int', ), - 'SDO_DAS_XML_Document::getRootDataObject' => + 'sdo_das_xml_document::getrootdataobject' => array ( 0 => 'SDO_DataObject', ), - 'SDO_DAS_XML_Document::getRootElementName' => + 'sdo_das_xml_document::getrootelementname' => array ( 0 => 'string', ), - 'SDO_DAS_XML_Document::getRootElementURI' => + 'sdo_das_xml_document::getrootelementuri' => array ( 0 => 'string', ), - 'SDO_DAS_XML_Document::setEncoding' => + 'sdo_das_xml_document::setencoding' => array ( 0 => 'mixed', 'encoding' => 'string', ), - 'SDO_DAS_XML_Document::setXMLDeclaration' => + 'sdo_das_xml_document::setxmldeclaration' => array ( 0 => 'mixed', 'xmldeclatation' => 'bool', ), - 'SDO_DAS_XML_Document::setXMLVersion' => + 'sdo_das_xml_document::setxmlversion' => array ( 0 => 'mixed', 'xmlversion' => 'string', ), - 'SDO_DataFactory::create' => + 'sdo_datafactory::create' => array ( 0 => 'void', 'type_namespace_uri' => 'string', 'type_name' => 'string', ), - 'SDO_DataObject::clear' => + 'sdo_dataobject::clear' => array ( 0 => 'void', ), - 'SDO_DataObject::createDataObject' => + 'sdo_dataobject::createdataobject' => array ( 0 => 'SDO_DataObject', 'identifier' => 'mixed', ), - 'SDO_DataObject::getContainer' => + 'sdo_dataobject::getcontainer' => array ( 0 => 'SDO_DataObject', ), - 'SDO_DataObject::getSequence' => + 'sdo_dataobject::getsequence' => array ( 0 => 'SDO_Sequence', ), - 'SDO_DataObject::getTypeName' => + 'sdo_dataobject::gettypename' => array ( 0 => 'string', ), - 'SDO_DataObject::getTypeNamespaceURI' => + 'sdo_dataobject::gettypenamespaceuri' => array ( 0 => 'string', ), - 'SDO_Exception::getCause' => + 'sdo_exception::getcause' => array ( 0 => 'mixed', ), - 'SDO_List::insert' => + 'sdo_list::insert' => array ( 0 => 'void', 'value' => 'mixed', 'index=' => 'int', ), - 'SDO_Model_Property::getContainingType' => + 'sdo_model_property::getcontainingtype' => array ( 0 => 'SDO_Model_Type', ), - 'SDO_Model_Property::getDefault' => + 'sdo_model_property::getdefault' => array ( 0 => 'mixed', ), - 'SDO_Model_Property::getName' => + 'sdo_model_property::getname' => array ( 0 => 'string', ), - 'SDO_Model_Property::getType' => + 'sdo_model_property::gettype' => array ( 0 => 'SDO_Model_Type', ), - 'SDO_Model_Property::isContainment' => + 'sdo_model_property::iscontainment' => array ( 0 => 'bool', ), - 'SDO_Model_Property::isMany' => + 'sdo_model_property::ismany' => array ( 0 => 'bool', ), - 'SDO_Model_ReflectionDataObject::__construct' => + 'sdo_model_reflectiondataobject::__construct' => array ( 0 => 'void', 'data_object' => 'sdo_dataobject', ), - 'SDO_Model_ReflectionDataObject::export' => + 'sdo_model_reflectiondataobject::export' => array ( 0 => 'mixed', 'rdo' => 'sdo_model_reflectiondataobject', 'return=' => 'bool', ), - 'SDO_Model_ReflectionDataObject::getContainmentProperty' => + 'sdo_model_reflectiondataobject::getcontainmentproperty' => array ( 0 => 'SDO_Model_Property', ), - 'SDO_Model_ReflectionDataObject::getInstanceProperties' => + 'sdo_model_reflectiondataobject::getinstanceproperties' => array ( 0 => 'array', ), - 'SDO_Model_ReflectionDataObject::getType' => + 'sdo_model_reflectiondataobject::gettype' => array ( 0 => 'SDO_Model_Type', ), - 'SDO_Model_Type::getBaseType' => + 'sdo_model_type::getbasetype' => array ( 0 => 'SDO_Model_Type', ), - 'SDO_Model_Type::getName' => + 'sdo_model_type::getname' => array ( 0 => 'string', ), - 'SDO_Model_Type::getNamespaceURI' => + 'sdo_model_type::getnamespaceuri' => array ( 0 => 'string', ), - 'SDO_Model_Type::getProperties' => + 'sdo_model_type::getproperties' => array ( 0 => 'array', ), - 'SDO_Model_Type::getProperty' => + 'sdo_model_type::getproperty' => array ( 0 => 'SDO_Model_Property', 'identifier' => 'mixed', ), - 'SDO_Model_Type::isAbstractType' => + 'sdo_model_type::isabstracttype' => array ( 0 => 'bool', ), - 'SDO_Model_Type::isDataType' => + 'sdo_model_type::isdatatype' => array ( 0 => 'bool', ), - 'SDO_Model_Type::isInstance' => + 'sdo_model_type::isinstance' => array ( 0 => 'bool', 'data_object' => 'sdo_dataobject', ), - 'SDO_Model_Type::isOpenType' => + 'sdo_model_type::isopentype' => array ( 0 => 'bool', ), - 'SDO_Model_Type::isSequencedType' => + 'sdo_model_type::issequencedtype' => array ( 0 => 'bool', ), - 'SDO_Sequence::getProperty' => + 'sdo_sequence::getproperty' => array ( 0 => 'SDO_Model_Property', 'sequence_index' => 'int', ), - 'SDO_Sequence::insert' => + 'sdo_sequence::insert' => array ( 0 => 'void', 'value' => 'mixed', 'sequenceindex=' => 'int', 'propertyidentifier=' => 'mixed', ), - 'SDO_Sequence::move' => + 'sdo_sequence::move' => array ( 0 => 'void', 'toindex' => 'int', 'fromindex' => 'int', ), - 'SeasLog::__destruct' => + 'seaslog::__destruct' => array ( 0 => 'void', ), - 'SeasLog::alert' => + 'seaslog::alert' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::analyzerCount' => + 'seaslog::analyzercount' => array ( 0 => 'mixed', 'level' => 'string', 'log_path=' => 'string', 'key_word=' => 'string', ), - 'SeasLog::analyzerDetail' => + 'seaslog::analyzerdetail' => array ( 0 => 'mixed', 'level' => 'string', @@ -59038,81 +59038,81 @@ 'limit=' => 'int', 'order=' => 'int', ), - 'SeasLog::closeLoggerStream' => + 'seaslog::closeloggerstream' => array ( 0 => 'bool', 'model' => 'int', 'logger' => 'string', ), - 'SeasLog::critical' => + 'seaslog::critical' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::debug' => + 'seaslog::debug' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::emergency' => + 'seaslog::emergency' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::error' => + 'seaslog::error' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::flushBuffer' => + 'seaslog::flushbuffer' => array ( 0 => 'bool', ), - 'SeasLog::getBasePath' => + 'seaslog::getbasepath' => array ( 0 => 'string', ), - 'SeasLog::getBuffer' => + 'seaslog::getbuffer' => array ( 0 => 'array', ), - 'SeasLog::getBufferEnabled' => + 'seaslog::getbufferenabled' => array ( 0 => 'bool', ), - 'SeasLog::getDatetimeFormat' => + 'seaslog::getdatetimeformat' => array ( 0 => 'string', ), - 'SeasLog::getLastLogger' => + 'seaslog::getlastlogger' => array ( 0 => 'string', ), - 'SeasLog::getRequestID' => + 'seaslog::getrequestid' => array ( 0 => 'string', ), - 'SeasLog::getRequestVariable' => + 'seaslog::getrequestvariable' => array ( 0 => 'bool', 'key' => 'int', ), - 'SeasLog::info' => + 'seaslog::info' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::log' => + 'seaslog::log' => array ( 0 => 'bool', 'level' => 'string', @@ -59120,40 +59120,40 @@ 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::notice' => + 'seaslog::notice' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::setBasePath' => + 'seaslog::setbasepath' => array ( 0 => 'bool', 'base_path' => 'string', ), - 'SeasLog::setDatetimeFormat' => + 'seaslog::setdatetimeformat' => array ( 0 => 'bool', 'format' => 'string', ), - 'SeasLog::setLogger' => + 'seaslog::setlogger' => array ( 0 => 'bool', 'logger' => 'string', ), - 'SeasLog::setRequestID' => + 'seaslog::setrequestid' => array ( 0 => 'bool', 'request_id' => 'string', ), - 'SeasLog::setRequestVariable' => + 'seaslog::setrequestvariable' => array ( 0 => 'bool', 'key' => 'int', 'value' => 'string', ), - 'SeasLog::warning' => + 'seaslog::warning' => array ( 0 => 'bool', 'message' => 'string', @@ -59168,32 +59168,32 @@ array ( 0 => 'string', ), - 'SeekableIterator::__construct' => + 'seekableiterator::__construct' => array ( 0 => 'void', ), - 'SeekableIterator::current' => + 'seekableiterator::current' => array ( 0 => 'mixed', ), - 'SeekableIterator::key' => + 'seekableiterator::key' => array ( 0 => 'int|string', ), - 'SeekableIterator::next' => + 'seekableiterator::next' => array ( 0 => 'void', ), - 'SeekableIterator::rewind' => + 'seekableiterator::rewind' => array ( 0 => 'void', ), - 'SeekableIterator::seek' => + 'seekableiterator::seek' => array ( 0 => 'void', 'position' => 'int', ), - 'SeekableIterator::valid' => + 'seekableiterator::valid' => array ( 0 => 'bool', ), @@ -59221,15 +59221,15 @@ 0 => 'bool', 'semaphore' => 'SysvSemaphore', ), - 'Serializable::__construct' => + 'serializable::__construct' => array ( 0 => 'void', ), - 'Serializable::serialize' => + 'serializable::serialize' => array ( 0 => 'null|string', ), - 'Serializable::unserialize' => + 'serializable::unserialize' => array ( 0 => 'void', 'serialized' => 'string', @@ -59239,72 +59239,72 @@ 0 => 'string', 'value' => 'mixed', ), - 'ServerRequest::withInput' => + 'serverrequest::withinput' => array ( 0 => 'ServerRequest', 'input' => 'mixed', ), - 'ServerRequest::withoutParams' => + 'serverrequest::withoutparams' => array ( 0 => 'ServerRequest', 'params' => 'int|string', ), - 'ServerRequest::withParam' => + 'serverrequest::withparam' => array ( 0 => 'ServerRequest', 'key' => 'int|string', 'value' => 'mixed', ), - 'ServerRequest::withParams' => + 'serverrequest::withparams' => array ( 0 => 'ServerRequest', 'params' => 'mixed', ), - 'ServerRequest::withUrl' => + 'serverrequest::withurl' => array ( 0 => 'ServerRequest', 'url' => 'array', ), - 'ServerResponse::addHeader' => + 'serverresponse::addheader' => array ( 0 => 'void', 'label' => 'string', 'value' => 'string', ), - 'ServerResponse::date' => + 'serverresponse::date' => array ( 0 => 'string', 'date' => 'DateTimeInterface|string', ), - 'ServerResponse::getHeader' => + 'serverresponse::getheader' => array ( 0 => 'string', 'label' => 'string', ), - 'ServerResponse::getHeaders' => + 'serverresponse::getheaders' => array ( 0 => 'array', ), - 'ServerResponse::getStatus' => + 'serverresponse::getstatus' => array ( 0 => 'int', ), - 'ServerResponse::getVersion' => + 'serverresponse::getversion' => array ( 0 => 'string', ), - 'ServerResponse::setHeader' => + 'serverresponse::setheader' => array ( 0 => 'void', 'label' => 'string', 'value' => 'string', ), - 'ServerResponse::setStatus' => + 'serverresponse::setstatus' => array ( 0 => 'void', 'status' => 'int', ), - 'ServerResponse::setVersion' => + 'serverresponse::setversion' => array ( 0 => 'void', 'version' => 'string', @@ -59480,94 +59480,94 @@ array ( 0 => 'bool', ), - 'SessionHandler::close' => + 'sessionhandler::close' => array ( 0 => 'bool', ), - 'SessionHandler::create_sid' => + 'sessionhandler::create_sid' => array ( 0 => 'string', ), - 'SessionHandler::destroy' => + 'sessionhandler::destroy' => array ( 0 => 'bool', 'id' => 'string', ), - 'SessionHandler::gc' => + 'sessionhandler::gc' => array ( 0 => 'false|int', 'max_lifetime' => 'int', ), - 'SessionHandler::open' => + 'sessionhandler::open' => array ( 0 => 'bool', 'path' => 'string', 'name' => 'string', ), - 'SessionHandler::read' => + 'sessionhandler::read' => array ( 0 => 'false|string', 'id' => 'string', ), - 'SessionHandler::write' => + 'sessionhandler::write' => array ( 0 => 'bool', 'id' => 'string', 'data' => 'string', ), - 'SessionHandlerInterface::close' => + 'sessionhandlerinterface::close' => array ( 0 => 'bool', ), - 'SessionHandlerInterface::destroy' => + 'sessionhandlerinterface::destroy' => array ( 0 => 'bool', 'id' => 'string', ), - 'SessionHandlerInterface::gc' => + 'sessionhandlerinterface::gc' => array ( 0 => 'false|int', 'max_lifetime' => 'int', ), - 'SessionHandlerInterface::open' => + 'sessionhandlerinterface::open' => array ( 0 => 'bool', 'path' => 'string', 'name' => 'string', ), - 'SessionHandlerInterface::read' => + 'sessionhandlerinterface::read' => array ( 0 => 'false|string', 'id' => 'string', ), - 'SessionHandlerInterface::write' => + 'sessionhandlerinterface::write' => array ( 0 => 'bool', 'id' => 'string', 'data' => 'string', ), - 'SessionIdInterface::create_sid' => + 'sessionidinterface::create_sid' => array ( 0 => 'string', ), - 'SessionUpdateTimestampHandler::updateTimestamp' => + 'sessionupdatetimestamphandler::updatetimestamp' => array ( 0 => 'bool', 'id' => 'string', 'data' => 'string', ), - 'SessionUpdateTimestampHandler::validateId' => + 'sessionupdatetimestamphandler::validateid' => array ( 0 => 'char', 'id' => 'string', ), - 'SessionUpdateTimestampHandlerInterface::updateTimestamp' => + 'sessionupdatetimestamphandlerinterface::updatetimestamp' => array ( 0 => 'bool', 'id' => 'string', 'data' => 'string', ), - 'SessionUpdateTimestampHandlerInterface::validateId' => + 'sessionupdatetimestamphandlerinterface::validateid' => array ( 0 => 'bool', 'id' => 'string', @@ -59624,7 +59624,7 @@ 'value=' => 'string', 'options=' => 'array', ), - 'setLeftFill' => + 'setleftfill' => array ( 0 => 'void', 'red' => 'int', @@ -59632,7 +59632,7 @@ 'blue' => 'int', 'a=' => 'int', ), - 'setLine' => + 'setline' => array ( 0 => 'void', 'width' => 'int', @@ -59677,7 +59677,7 @@ 'value=' => 'string', 'options=' => 'array', ), - 'setRightFill' => + 'setrightfill' => array ( 0 => 'void', 'red' => 'int', @@ -59720,210 +59720,210 @@ 'filename' => 'string', 'raw_output=' => 'bool', ), - 'shapefileObj::__construct' => + 'shapefileobj::__construct' => array ( 0 => 'void', 'filename' => 'string', 'type' => 'int', ), - 'shapefileObj::addPoint' => + 'shapefileobj::addpoint' => array ( 0 => 'int', 'point' => 'pointObj', ), - 'shapefileObj::addShape' => + 'shapefileobj::addshape' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'shapefileObj::free' => + 'shapefileobj::free' => array ( 0 => 'void', ), - 'shapefileObj::getExtent' => + 'shapefileobj::getextent' => array ( 0 => 'rectObj', 'i' => 'int', ), - 'shapefileObj::getPoint' => + 'shapefileobj::getpoint' => array ( 0 => 'shapeObj', 'i' => 'int', ), - 'shapefileObj::getShape' => + 'shapefileobj::getshape' => array ( 0 => 'shapeObj', 'i' => 'int', ), - 'shapefileObj::getTransformed' => + 'shapefileobj::gettransformed' => array ( 0 => 'shapeObj', 'map' => 'mapObj', 'i' => 'int', ), - 'shapefileObj::ms_newShapefileObj' => + 'shapefileobj::ms_newshapefileobj' => array ( 0 => 'shapefileObj', 'filename' => 'string', 'type' => 'int', ), - 'shapeObj::__construct' => + 'shapeobj::__construct' => array ( 0 => 'void', 'type' => 'int', ), - 'shapeObj::add' => + 'shapeobj::add' => array ( 0 => 'int', 'line' => 'lineObj', ), - 'shapeObj::boundary' => + 'shapeobj::boundary' => array ( 0 => 'shapeObj', ), - 'shapeObj::contains' => + 'shapeobj::contains' => array ( 0 => 'bool', 'point' => 'pointObj', ), - 'shapeObj::containsShape' => + 'shapeobj::containsshape' => array ( 0 => 'int', 'shape2' => 'shapeObj', ), - 'shapeObj::convexhull' => + 'shapeobj::convexhull' => array ( 0 => 'shapeObj', ), - 'shapeObj::crosses' => + 'shapeobj::crosses' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'shapeObj::difference' => + 'shapeobj::difference' => array ( 0 => 'shapeObj', 'shape' => 'shapeObj', ), - 'shapeObj::disjoint' => + 'shapeobj::disjoint' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'shapeObj::draw' => + 'shapeobj::draw' => array ( 0 => 'int', 'map' => 'mapObj', 'layer' => 'layerObj', 'img' => 'imageObj', ), - 'shapeObj::equals' => + 'shapeobj::equals' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'shapeObj::free' => + 'shapeobj::free' => array ( 0 => 'void', ), - 'shapeObj::getArea' => + 'shapeobj::getarea' => array ( 0 => 'float', ), - 'shapeObj::getCentroid' => + 'shapeobj::getcentroid' => array ( 0 => 'pointObj', ), - 'shapeObj::getLabelPoint' => + 'shapeobj::getlabelpoint' => array ( 0 => 'pointObj', ), - 'shapeObj::getLength' => + 'shapeobj::getlength' => array ( 0 => 'float', ), - 'shapeObj::getPointUsingMeasure' => + 'shapeobj::getpointusingmeasure' => array ( 0 => 'pointObj', 'm' => 'float', ), - 'shapeObj::getValue' => + 'shapeobj::getvalue' => array ( 0 => 'string', 'layer' => 'layerObj', 'filedname' => 'string', ), - 'shapeObj::intersection' => + 'shapeobj::intersection' => array ( 0 => 'shapeObj', 'shape' => 'shapeObj', ), - 'shapeObj::intersects' => + 'shapeobj::intersects' => array ( 0 => 'bool', 'shape' => 'shapeObj', ), - 'shapeObj::line' => + 'shapeobj::line' => array ( 0 => 'lineObj', 'i' => 'int', ), - 'shapeObj::ms_shapeObjFromWkt' => + 'shapeobj::ms_shapeobjfromwkt' => array ( 0 => 'shapeObj', 'wkt' => 'string', ), - 'shapeObj::overlaps' => + 'shapeobj::overlaps' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'shapeObj::project' => + 'shapeobj::project' => array ( 0 => 'int', 'in' => 'projectionObj', 'out' => 'projectionObj', ), - 'shapeObj::set' => + 'shapeobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'shapeObj::setBounds' => + 'shapeobj::setbounds' => array ( 0 => 'int', ), - 'shapeObj::simplify' => + 'shapeobj::simplify' => array ( 0 => 'null|shapeObj', 'tolerance' => 'float', ), - 'shapeObj::symdifference' => + 'shapeobj::symdifference' => array ( 0 => 'shapeObj', 'shape' => 'shapeObj', ), - 'shapeObj::topologyPreservingSimplify' => + 'shapeobj::topologypreservingsimplify' => array ( 0 => 'null|shapeObj', 'tolerance' => 'float', ), - 'shapeObj::touches' => + 'shapeobj::touches' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'shapeObj::toWkt' => + 'shapeobj::towkt' => array ( 0 => 'string', ), - 'shapeObj::union' => + 'shapeobj::union' => array ( 0 => 'shapeObj', 'shape' => 'shapeObj', ), - 'shapeObj::within' => + 'shapeobj::within' => array ( 0 => 'int', 'shape2' => 'shapeObj', @@ -60060,7 +60060,7 @@ 'namespace_or_prefix=' => 'string', 'is_prefix=' => 'bool', ), - 'SimpleXMLElement::__construct' => + 'simplexmlelement::__construct' => array ( 0 => 'void', 'data' => 'string', @@ -60069,102 +60069,102 @@ 'namespaceOrPrefix=' => 'string', 'isPrefix=' => 'bool', ), - 'SimpleXMLElement::__get' => + 'simplexmlelement::__get' => array ( 0 => 'SimpleXMLElement', 'name' => 'string', ), - 'SimpleXMLElement::__toString' => + 'simplexmlelement::__tostring' => array ( 0 => 'string', ), - 'SimpleXMLElement::addAttribute' => + 'simplexmlelement::addattribute' => array ( 0 => 'void', 'qualifiedName' => 'string', 'value' => 'string', 'namespace=' => 'null|string', ), - 'SimpleXMLElement::addChild' => + 'simplexmlelement::addchild' => array ( 0 => 'SimpleXMLElement|null', 'qualifiedName' => 'string', 'value=' => 'null|string', 'namespace=' => 'null|string', ), - 'SimpleXMLElement::asXML' => + 'simplexmlelement::asxml' => array ( 0 => 'bool|string', 'filename=' => 'null|string', ), - 'SimpleXMLElement::asXML\'1' => + 'simplexmlelement::asxml\'1' => array ( 0 => 'false|string', ), - 'SimpleXMLElement::attributes' => + 'simplexmlelement::attributes' => array ( 0 => 'SimpleXMLElement|null', 'namespaceOrPrefix=' => 'null|string', 'isPrefix=' => 'bool', ), - 'SimpleXMLElement::children' => + 'simplexmlelement::children' => array ( 0 => 'SimpleXMLElement|null', 'namespaceOrPrefix=' => 'null|string', 'isPrefix=' => 'bool', ), - 'SimpleXMLElement::count' => + 'simplexmlelement::count' => array ( 0 => 'int', ), - 'SimpleXMLElement::getDocNamespaces' => + 'simplexmlelement::getdocnamespaces' => array ( 0 => 'array', 'recursive=' => 'bool', 'fromRoot=' => 'bool', ), - 'SimpleXMLElement::getName' => + 'simplexmlelement::getname' => array ( 0 => 'string', ), - 'SimpleXMLElement::getNamespaces' => + 'simplexmlelement::getnamespaces' => array ( 0 => 'array', 'recursive=' => 'bool', ), - 'SimpleXMLElement::offsetExists' => + 'simplexmlelement::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'SimpleXMLElement::offsetGet' => + 'simplexmlelement::offsetget' => array ( 0 => 'SimpleXMLElement', 'offset' => 'int|string', ), - 'SimpleXMLElement::offsetSet' => + 'simplexmlelement::offsetset' => array ( 0 => 'void', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'SimpleXMLElement::offsetUnset' => + 'simplexmlelement::offsetunset' => array ( 0 => 'void', 'offset' => 'int|string', ), - 'SimpleXMLElement::registerXPathNamespace' => + 'simplexmlelement::registerxpathnamespace' => array ( 0 => 'bool', 'prefix' => 'string', 'namespace' => 'string', ), - 'SimpleXMLElement::saveXML' => + 'simplexmlelement::savexml' => array ( 0 => 'bool|string', 'filename=' => 'null|string', ), - 'SimpleXMLElement::xpath' => + 'simplexmlelement::xpath' => array ( 0 => 'array|false|null', 'expression' => 'string', @@ -60309,7 +60309,7 @@ 'timeout=' => 'int', 'retries=' => 'int', ), - 'SNMP::__construct' => + 'snmp::__construct' => array ( 0 => 'void', 'version' => 'int', @@ -60318,37 +60318,37 @@ 'timeout=' => 'int', 'retries=' => 'int', ), - 'SNMP::close' => + 'snmp::close' => array ( 0 => 'bool', ), - 'SNMP::get' => + 'snmp::get' => array ( 0 => 'array|false|string', 'objectId' => 'array|string', 'preserveKeys=' => 'bool', ), - 'SNMP::getErrno' => + 'snmp::geterrno' => array ( 0 => 'int', ), - 'SNMP::getError' => + 'snmp::geterror' => array ( 0 => 'string', ), - 'SNMP::getnext' => + 'snmp::getnext' => array ( 0 => 'array|false|string', 'objectId' => 'array|string', ), - 'SNMP::set' => + 'snmp::set' => array ( 0 => 'bool', 'objectId' => 'array|string', 'type' => 'array|string', 'value' => 'array|string', ), - 'SNMP::setSecurity' => + 'snmp::setsecurity' => array ( 0 => 'bool', 'securityLevel' => 'string', @@ -60359,7 +60359,7 @@ 'contextName=' => 'string', 'contextEngineId=' => 'string', ), - 'SNMP::walk' => + 'snmp::walk' => array ( 0 => 'array|false', 'objectId' => 'array|string', @@ -60461,19 +60461,19 @@ 'timeout=' => 'int', 'retries=' => 'int', ), - 'SoapClient::__call' => + 'soapclient::__call' => array ( 0 => 'mixed', 'function_name' => 'string', 'arguments' => 'array', ), - 'SoapClient::__construct' => + 'soapclient::__construct' => array ( 0 => 'void', 'wsdl' => 'null|string', 'options=' => 'array', ), - 'SoapClient::__doRequest' => + 'soapclient::__dorequest' => array ( 0 => 'null|string', 'request' => 'string', @@ -60482,51 +60482,51 @@ 'version' => 'int', 'one_way=' => 'bool', ), - 'SoapClient::__getCookies' => + 'soapclient::__getcookies' => array ( 0 => 'array', ), - 'SoapClient::__getFunctions' => + 'soapclient::__getfunctions' => array ( 0 => 'array|null', ), - 'SoapClient::__getLastRequest' => + 'soapclient::__getlastrequest' => array ( 0 => 'null|string', ), - 'SoapClient::__getLastRequestHeaders' => + 'soapclient::__getlastrequestheaders' => array ( 0 => 'null|string', ), - 'SoapClient::__getLastResponse' => + 'soapclient::__getlastresponse' => array ( 0 => 'null|string', ), - 'SoapClient::__getLastResponseHeaders' => + 'soapclient::__getlastresponseheaders' => array ( 0 => 'null|string', ), - 'SoapClient::__getTypes' => + 'soapclient::__gettypes' => array ( 0 => 'array|null', ), - 'SoapClient::__setCookie' => + 'soapclient::__setcookie' => array ( 0 => 'void', 'name' => 'string', 'value=' => 'null|string', ), - 'SoapClient::__setLocation' => + 'soapclient::__setlocation' => array ( 0 => 'null|string', 'new_location=' => 'string', ), - 'SoapClient::__setSoapHeaders' => + 'soapclient::__setsoapheaders' => array ( 0 => 'bool', 'soapheaders=' => 'mixed', ), - 'SoapClient::__soapCall' => + 'soapclient::__soapcall' => array ( 0 => 'mixed', 'function_name' => 'string', @@ -60535,17 +60535,17 @@ 'input_headers=' => 'SoapHeader|array', '&w_output_headers=' => 'array', ), - 'SoapClient::SoapClient' => + 'soapclient::soapclient' => array ( 0 => 'object', 'wsdl' => 'mixed', 'options=' => 'array|null', ), - 'SoapFault::__clone' => + 'soapfault::__clone' => array ( 0 => 'void', ), - 'SoapFault::__construct' => + 'soapfault::__construct' => array ( 0 => 'void', 'code' => 'array|null|string', @@ -60555,43 +60555,43 @@ 'name=' => 'null|string', 'headerFault=' => 'mixed|null', ), - 'SoapFault::__toString' => + 'soapfault::__tostring' => array ( 0 => 'string', ), - 'SoapFault::__wakeup' => + 'soapfault::__wakeup' => array ( 0 => 'void', ), - 'SoapFault::getCode' => + 'soapfault::getcode' => array ( 0 => 'int', ), - 'SoapFault::getFile' => + 'soapfault::getfile' => array ( 0 => 'string', ), - 'SoapFault::getLine' => + 'soapfault::getline' => array ( 0 => 'int', ), - 'SoapFault::getMessage' => + 'soapfault::getmessage' => array ( 0 => 'string', ), - 'SoapFault::getPrevious' => + 'soapfault::getprevious' => array ( 0 => 'Exception|Throwable|null', ), - 'SoapFault::getTrace' => + 'soapfault::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'SoapFault::getTraceAsString' => + 'soapfault::gettraceasstring' => array ( 0 => 'string', ), - 'SoapFault::SoapFault' => + 'soapfault::soapfault' => array ( 0 => 'object', 'faultcode' => 'string', @@ -60601,7 +60601,7 @@ 'faultname=' => 'null|string', 'headerfault=' => 'mixed|null', ), - 'SoapHeader::__construct' => + 'soapheader::__construct' => array ( 0 => 'void', 'namespace' => 'string', @@ -60610,7 +60610,7 @@ 'mustunderstand=' => 'bool', 'actor=' => 'null|string', ), - 'SoapHeader::SoapHeader' => + 'soapheader::soapheader' => array ( 0 => 'object', 'namespace' => 'string', @@ -60619,35 +60619,35 @@ 'mustunderstand=' => 'bool', 'actor=' => 'string', ), - 'SoapParam::__construct' => + 'soapparam::__construct' => array ( 0 => 'void', 'data' => 'mixed', 'name' => 'string', ), - 'SoapParam::SoapParam' => + 'soapparam::soapparam' => array ( 0 => 'object', 'data' => 'mixed', 'name' => 'string', ), - 'SoapServer::__construct' => + 'soapserver::__construct' => array ( 0 => 'void', 'wsdl' => 'null|string', 'options=' => 'array', ), - 'SoapServer::addFunction' => + 'soapserver::addfunction' => array ( 0 => 'void', 'functions' => 'mixed', ), - 'SoapServer::addSoapHeader' => + 'soapserver::addsoapheader' => array ( 0 => 'void', 'object' => 'SoapHeader', ), - 'SoapServer::fault' => + 'soapserver::fault' => array ( 0 => 'void', 'code' => 'string', @@ -60656,38 +60656,38 @@ 'details=' => 'string', 'name=' => 'string', ), - 'SoapServer::getFunctions' => + 'soapserver::getfunctions' => array ( 0 => 'array', ), - 'SoapServer::handle' => + 'soapserver::handle' => array ( 0 => 'void', 'soap_request=' => 'string', ), - 'SoapServer::setClass' => + 'soapserver::setclass' => array ( 0 => 'void', 'class_name' => 'string', '...args=' => 'mixed', ), - 'SoapServer::setObject' => + 'soapserver::setobject' => array ( 0 => 'void', 'object' => 'object', ), - 'SoapServer::setPersistence' => + 'soapserver::setpersistence' => array ( 0 => 'void', 'mode' => 'int', ), - 'SoapServer::SoapServer' => + 'soapserver::soapserver' => array ( 0 => 'object', 'wsdl' => 'null|string', 'options=' => 'array', ), - 'SoapVar::__construct' => + 'soapvar::__construct' => array ( 0 => 'void', 'data' => 'mixed', @@ -60697,7 +60697,7 @@ 'node_name=' => 'null|string', 'node_namespace=' => 'null|string', ), - 'SoapVar::SoapVar' => + 'soapvar::soapvar' => array ( 0 => 'object', 'data' => 'mixed', @@ -61516,3242 +61516,3242 @@ array ( 0 => 'false|string', ), - 'SolrClient::__construct' => + 'solrclient::__construct' => array ( 0 => 'void', 'clientOptions' => 'array', ), - 'SolrClient::__destruct' => + 'solrclient::__destruct' => array ( 0 => 'void', ), - 'SolrClient::addDocument' => + 'solrclient::adddocument' => array ( 0 => 'SolrUpdateResponse', 'doc' => 'SolrInputDocument', 'allowdups=' => 'bool', 'commitwithin=' => 'int', ), - 'SolrClient::addDocuments' => + 'solrclient::adddocuments' => array ( 0 => 'SolrUpdateResponse', 'docs' => 'array', 'allowdups=' => 'bool', 'commitwithin=' => 'int', ), - 'SolrClient::commit' => + 'solrclient::commit' => array ( 0 => 'SolrUpdateResponse', 'maxsegments=' => 'int', 'waitflush=' => 'bool', 'waitsearcher=' => 'bool', ), - 'SolrClient::deleteById' => + 'solrclient::deletebyid' => array ( 0 => 'SolrUpdateResponse', 'id' => 'string', ), - 'SolrClient::deleteByIds' => + 'solrclient::deletebyids' => array ( 0 => 'SolrUpdateResponse', 'ids' => 'array', ), - 'SolrClient::deleteByQueries' => + 'solrclient::deletebyqueries' => array ( 0 => 'SolrUpdateResponse', 'queries' => 'array', ), - 'SolrClient::deleteByQuery' => + 'solrclient::deletebyquery' => array ( 0 => 'SolrUpdateResponse', 'query' => 'string', ), - 'SolrClient::getById' => + 'solrclient::getbyid' => array ( 0 => 'SolrQueryResponse', 'id' => 'string', ), - 'SolrClient::getByIds' => + 'solrclient::getbyids' => array ( 0 => 'SolrQueryResponse', 'ids' => 'array', ), - 'SolrClient::getDebug' => + 'solrclient::getdebug' => array ( 0 => 'string', ), - 'SolrClient::getOptions' => + 'solrclient::getoptions' => array ( 0 => 'array', ), - 'SolrClient::optimize' => + 'solrclient::optimize' => array ( 0 => 'SolrUpdateResponse', 'maxsegments=' => 'int', 'waitflush=' => 'bool', 'waitsearcher=' => 'bool', ), - 'SolrClient::ping' => + 'solrclient::ping' => array ( 0 => 'SolrPingResponse', ), - 'SolrClient::query' => + 'solrclient::query' => array ( 0 => 'SolrQueryResponse', 'query' => 'SolrParams', ), - 'SolrClient::request' => + 'solrclient::request' => array ( 0 => 'SolrUpdateResponse', 'raw_request' => 'string', ), - 'SolrClient::rollback' => + 'solrclient::rollback' => array ( 0 => 'SolrUpdateResponse', ), - 'SolrClient::setResponseWriter' => + 'solrclient::setresponsewriter' => array ( 0 => 'void', 'responsewriter' => 'string', ), - 'SolrClient::setServlet' => + 'solrclient::setservlet' => array ( 0 => 'bool', 'type' => 'int', 'value' => 'string', ), - 'SolrClient::system' => + 'solrclient::system' => array ( 0 => 'SolrGenericResponse', ), - 'SolrClient::threads' => + 'solrclient::threads' => array ( 0 => 'SolrGenericResponse', ), - 'SolrClientException::__clone' => + 'solrclientexception::__clone' => array ( 0 => 'void', ), - 'SolrClientException::__construct' => + 'solrclientexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'SolrClientException::__toString' => + 'solrclientexception::__tostring' => array ( 0 => 'string', ), - 'SolrClientException::__wakeup' => + 'solrclientexception::__wakeup' => array ( 0 => 'void', ), - 'SolrClientException::getCode' => + 'solrclientexception::getcode' => array ( 0 => 'int', ), - 'SolrClientException::getFile' => + 'solrclientexception::getfile' => array ( 0 => 'string', ), - 'SolrClientException::getInternalInfo' => + 'solrclientexception::getinternalinfo' => array ( 0 => 'array', ), - 'SolrClientException::getLine' => + 'solrclientexception::getline' => array ( 0 => 'int', ), - 'SolrClientException::getMessage' => + 'solrclientexception::getmessage' => array ( 0 => 'string', ), - 'SolrClientException::getPrevious' => + 'solrclientexception::getprevious' => array ( 0 => 'Exception|Throwable|null', ), - 'SolrClientException::getTrace' => + 'solrclientexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'SolrClientException::getTraceAsString' => + 'solrclientexception::gettraceasstring' => array ( 0 => 'string', ), - 'SolrCollapseFunction::__construct' => + 'solrcollapsefunction::__construct' => array ( 0 => 'void', 'field' => 'string', ), - 'SolrCollapseFunction::__toString' => + 'solrcollapsefunction::__tostring' => array ( 0 => 'string', ), - 'SolrCollapseFunction::getField' => + 'solrcollapsefunction::getfield' => array ( 0 => 'string', ), - 'SolrCollapseFunction::getHint' => + 'solrcollapsefunction::gethint' => array ( 0 => 'string', ), - 'SolrCollapseFunction::getMax' => + 'solrcollapsefunction::getmax' => array ( 0 => 'string', ), - 'SolrCollapseFunction::getMin' => + 'solrcollapsefunction::getmin' => array ( 0 => 'string', ), - 'SolrCollapseFunction::getNullPolicy' => + 'solrcollapsefunction::getnullpolicy' => array ( 0 => 'string', ), - 'SolrCollapseFunction::getSize' => + 'solrcollapsefunction::getsize' => array ( 0 => 'int', ), - 'SolrCollapseFunction::setField' => + 'solrcollapsefunction::setfield' => array ( 0 => 'SolrCollapseFunction', 'fieldName' => 'string', ), - 'SolrCollapseFunction::setHint' => + 'solrcollapsefunction::sethint' => array ( 0 => 'SolrCollapseFunction', 'hint' => 'string', ), - 'SolrCollapseFunction::setMax' => + 'solrcollapsefunction::setmax' => array ( 0 => 'SolrCollapseFunction', 'max' => 'string', ), - 'SolrCollapseFunction::setMin' => + 'solrcollapsefunction::setmin' => array ( 0 => 'SolrCollapseFunction', 'min' => 'string', ), - 'SolrCollapseFunction::setNullPolicy' => + 'solrcollapsefunction::setnullpolicy' => array ( 0 => 'SolrCollapseFunction', 'nullPolicy' => 'string', ), - 'SolrCollapseFunction::setSize' => + 'solrcollapsefunction::setsize' => array ( 0 => 'SolrCollapseFunction', 'size' => 'int', ), - 'SolrDisMaxQuery::__construct' => + 'solrdismaxquery::__construct' => array ( 0 => 'void', 'q=' => 'string', ), - 'SolrDisMaxQuery::__destruct' => + 'solrdismaxquery::__destruct' => array ( 0 => 'void', ), - 'SolrDisMaxQuery::add' => + 'solrdismaxquery::add' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'string', ), - 'SolrDisMaxQuery::addBigramPhraseField' => + 'solrdismaxquery::addbigramphrasefield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', 'boost' => 'string', 'slop=' => 'string', ), - 'SolrDisMaxQuery::addBoostQuery' => + 'solrdismaxquery::addboostquery' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', 'value' => 'string', 'boost=' => 'string', ), - 'SolrDisMaxQuery::addExpandFilterQuery' => + 'solrdismaxquery::addexpandfilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrDisMaxQuery::addExpandSortField' => + 'solrdismaxquery::addexpandsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'order' => 'string', ), - 'SolrDisMaxQuery::addFacetDateField' => + 'solrdismaxquery::addfacetdatefield' => array ( 0 => 'SolrQuery', 'dateField' => 'string', ), - 'SolrDisMaxQuery::addFacetDateOther' => + 'solrdismaxquery::addfacetdateother' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::addFacetField' => + 'solrdismaxquery::addfacetfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::addFacetQuery' => + 'solrdismaxquery::addfacetquery' => array ( 0 => 'SolrQuery', 'facetQuery' => 'string', ), - 'SolrDisMaxQuery::addField' => + 'solrdismaxquery::addfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::addFilterQuery' => + 'solrdismaxquery::addfilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrDisMaxQuery::addGroupField' => + 'solrdismaxquery::addgroupfield' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::addGroupFunction' => + 'solrdismaxquery::addgroupfunction' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::addGroupQuery' => + 'solrdismaxquery::addgroupquery' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::addGroupSortField' => + 'solrdismaxquery::addgroupsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'order' => 'int', ), - 'SolrDisMaxQuery::addHighlightField' => + 'solrdismaxquery::addhighlightfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::addMltField' => + 'solrdismaxquery::addmltfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::addMltQueryField' => + 'solrdismaxquery::addmltqueryfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'boost' => 'float', ), - 'SolrDisMaxQuery::addParam' => + 'solrdismaxquery::addparam' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'string', ), - 'SolrDisMaxQuery::addPhraseField' => + 'solrdismaxquery::addphrasefield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', 'boost' => 'string', 'slop=' => 'string', ), - 'SolrDisMaxQuery::addQueryField' => + 'solrdismaxquery::addqueryfield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', 'boost=' => 'string', ), - 'SolrDisMaxQuery::addSortField' => + 'solrdismaxquery::addsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'order=' => 'int', ), - 'SolrDisMaxQuery::addStatsFacet' => + 'solrdismaxquery::addstatsfacet' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::addStatsField' => + 'solrdismaxquery::addstatsfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::addTrigramPhraseField' => + 'solrdismaxquery::addtrigramphrasefield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', 'boost' => 'string', 'slop=' => 'string', ), - 'SolrDisMaxQuery::addUserField' => + 'solrdismaxquery::adduserfield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::collapse' => + 'solrdismaxquery::collapse' => array ( 0 => 'SolrQuery', 'collapseFunction' => 'SolrCollapseFunction', ), - 'SolrDisMaxQuery::get' => + 'solrdismaxquery::get' => array ( 0 => 'mixed', 'param_name' => 'string', ), - 'SolrDisMaxQuery::getExpand' => + 'solrdismaxquery::getexpand' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getExpandFilterQueries' => + 'solrdismaxquery::getexpandfilterqueries' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getExpandQuery' => + 'solrdismaxquery::getexpandquery' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getExpandRows' => + 'solrdismaxquery::getexpandrows' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getExpandSortFields' => + 'solrdismaxquery::getexpandsortfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getFacet' => + 'solrdismaxquery::getfacet' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getFacetDateEnd' => + 'solrdismaxquery::getfacetdateend' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetDateFields' => + 'solrdismaxquery::getfacetdatefields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getFacetDateGap' => + 'solrdismaxquery::getfacetdategap' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetDateHardEnd' => + 'solrdismaxquery::getfacetdatehardend' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetDateOther' => + 'solrdismaxquery::getfacetdateother' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetDateStart' => + 'solrdismaxquery::getfacetdatestart' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetFields' => + 'solrdismaxquery::getfacetfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getFacetLimit' => + 'solrdismaxquery::getfacetlimit' => array ( 0 => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetMethod' => + 'solrdismaxquery::getfacetmethod' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetMinCount' => + 'solrdismaxquery::getfacetmincount' => array ( 0 => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetMissing' => + 'solrdismaxquery::getfacetmissing' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetOffset' => + 'solrdismaxquery::getfacetoffset' => array ( 0 => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetPrefix' => + 'solrdismaxquery::getfacetprefix' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetQueries' => + 'solrdismaxquery::getfacetqueries' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getFacetSort' => + 'solrdismaxquery::getfacetsort' => array ( 0 => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFields' => + 'solrdismaxquery::getfields' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getFilterQueries' => + 'solrdismaxquery::getfilterqueries' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getGroup' => + 'solrdismaxquery::getgroup' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getGroupCachePercent' => + 'solrdismaxquery::getgroupcachepercent' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getGroupFacet' => + 'solrdismaxquery::getgroupfacet' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getGroupFields' => + 'solrdismaxquery::getgroupfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getGroupFormat' => + 'solrdismaxquery::getgroupformat' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getGroupFunctions' => + 'solrdismaxquery::getgroupfunctions' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getGroupLimit' => + 'solrdismaxquery::getgrouplimit' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getGroupMain' => + 'solrdismaxquery::getgroupmain' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getGroupNGroups' => + 'solrdismaxquery::getgroupngroups' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getGroupOffset' => + 'solrdismaxquery::getgroupoffset' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getGroupQueries' => + 'solrdismaxquery::getgroupqueries' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getGroupSortFields' => + 'solrdismaxquery::getgroupsortfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getGroupTruncate' => + 'solrdismaxquery::getgrouptruncate' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getHighlight' => + 'solrdismaxquery::gethighlight' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getHighlightAlternateField' => + 'solrdismaxquery::gethighlightalternatefield' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightFields' => + 'solrdismaxquery::gethighlightfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getHighlightFormatter' => + 'solrdismaxquery::gethighlightformatter' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightFragmenter' => + 'solrdismaxquery::gethighlightfragmenter' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightFragsize' => + 'solrdismaxquery::gethighlightfragsize' => array ( 0 => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightHighlightMultiTerm' => + 'solrdismaxquery::gethighlighthighlightmultiterm' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getHighlightMaxAlternateFieldLength' => + 'solrdismaxquery::gethighlightmaxalternatefieldlength' => array ( 0 => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightMaxAnalyzedChars' => + 'solrdismaxquery::gethighlightmaxanalyzedchars' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getHighlightMergeContiguous' => + 'solrdismaxquery::gethighlightmergecontiguous' => array ( 0 => 'bool', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightRegexMaxAnalyzedChars' => + 'solrdismaxquery::gethighlightregexmaxanalyzedchars' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getHighlightRegexPattern' => + 'solrdismaxquery::gethighlightregexpattern' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getHighlightRegexSlop' => + 'solrdismaxquery::gethighlightregexslop' => array ( 0 => 'float', ), - 'SolrDisMaxQuery::getHighlightRequireFieldMatch' => + 'solrdismaxquery::gethighlightrequirefieldmatch' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getHighlightSimplePost' => + 'solrdismaxquery::gethighlightsimplepost' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightSimplePre' => + 'solrdismaxquery::gethighlightsimplepre' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightSnippets' => + 'solrdismaxquery::gethighlightsnippets' => array ( 0 => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightUsePhraseHighlighter' => + 'solrdismaxquery::gethighlightusephrasehighlighter' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getMlt' => + 'solrdismaxquery::getmlt' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getMltBoost' => + 'solrdismaxquery::getmltboost' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getMltCount' => + 'solrdismaxquery::getmltcount' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getMltFields' => + 'solrdismaxquery::getmltfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getMltMaxNumQueryTerms' => + 'solrdismaxquery::getmltmaxnumqueryterms' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getMltMaxNumTokens' => + 'solrdismaxquery::getmltmaxnumtokens' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getMltMaxWordLength' => + 'solrdismaxquery::getmltmaxwordlength' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getMltMinDocFrequency' => + 'solrdismaxquery::getmltmindocfrequency' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getMltMinTermFrequency' => + 'solrdismaxquery::getmltmintermfrequency' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getMltMinWordLength' => + 'solrdismaxquery::getmltminwordlength' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getMltQueryFields' => + 'solrdismaxquery::getmltqueryfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getParam' => + 'solrdismaxquery::getparam' => array ( 0 => 'mixed', 'param_name' => 'string', ), - 'SolrDisMaxQuery::getParams' => + 'solrdismaxquery::getparams' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getPreparedParams' => + 'solrdismaxquery::getpreparedparams' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getQuery' => + 'solrdismaxquery::getquery' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getRows' => + 'solrdismaxquery::getrows' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getSortFields' => + 'solrdismaxquery::getsortfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getStart' => + 'solrdismaxquery::getstart' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getStats' => + 'solrdismaxquery::getstats' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getStatsFacets' => + 'solrdismaxquery::getstatsfacets' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getStatsFields' => + 'solrdismaxquery::getstatsfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getTerms' => + 'solrdismaxquery::getterms' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getTermsField' => + 'solrdismaxquery::gettermsfield' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getTermsIncludeLowerBound' => + 'solrdismaxquery::gettermsincludelowerbound' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getTermsIncludeUpperBound' => + 'solrdismaxquery::gettermsincludeupperbound' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getTermsLimit' => + 'solrdismaxquery::gettermslimit' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getTermsLowerBound' => + 'solrdismaxquery::gettermslowerbound' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getTermsMaxCount' => + 'solrdismaxquery::gettermsmaxcount' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getTermsMinCount' => + 'solrdismaxquery::gettermsmincount' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getTermsPrefix' => + 'solrdismaxquery::gettermsprefix' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getTermsReturnRaw' => + 'solrdismaxquery::gettermsreturnraw' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getTermsSort' => + 'solrdismaxquery::gettermssort' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getTermsUpperBound' => + 'solrdismaxquery::gettermsupperbound' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getTimeAllowed' => + 'solrdismaxquery::gettimeallowed' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::removeBigramPhraseField' => + 'solrdismaxquery::removebigramphrasefield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeBoostQuery' => + 'solrdismaxquery::removeboostquery' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeExpandFilterQuery' => + 'solrdismaxquery::removeexpandfilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrDisMaxQuery::removeExpandSortField' => + 'solrdismaxquery::removeexpandsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeFacetDateField' => + 'solrdismaxquery::removefacetdatefield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeFacetDateOther' => + 'solrdismaxquery::removefacetdateother' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::removeFacetField' => + 'solrdismaxquery::removefacetfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeFacetQuery' => + 'solrdismaxquery::removefacetquery' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::removeField' => + 'solrdismaxquery::removefield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeFilterQuery' => + 'solrdismaxquery::removefilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrDisMaxQuery::removeHighlightField' => + 'solrdismaxquery::removehighlightfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeMltField' => + 'solrdismaxquery::removemltfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeMltQueryField' => + 'solrdismaxquery::removemltqueryfield' => array ( 0 => 'SolrQuery', 'queryField' => 'string', ), - 'SolrDisMaxQuery::removePhraseField' => + 'solrdismaxquery::removephrasefield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeQueryField' => + 'solrdismaxquery::removequeryfield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeSortField' => + 'solrdismaxquery::removesortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeStatsFacet' => + 'solrdismaxquery::removestatsfacet' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::removeStatsField' => + 'solrdismaxquery::removestatsfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeTrigramPhraseField' => + 'solrdismaxquery::removetrigramphrasefield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeUserField' => + 'solrdismaxquery::removeuserfield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::serialize' => + 'solrdismaxquery::serialize' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::set' => + 'solrdismaxquery::set' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'mixed', ), - 'SolrDisMaxQuery::setBigramPhraseFields' => + 'solrdismaxquery::setbigramphrasefields' => array ( 0 => 'SolrDisMaxQuery', 'fields' => 'string', ), - 'SolrDisMaxQuery::setBigramPhraseSlop' => + 'solrdismaxquery::setbigramphraseslop' => array ( 0 => 'SolrDisMaxQuery', 'slop' => 'string', ), - 'SolrDisMaxQuery::setBoostFunction' => + 'solrdismaxquery::setboostfunction' => array ( 0 => 'SolrDisMaxQuery', 'function' => 'string', ), - 'SolrDisMaxQuery::setBoostQuery' => + 'solrdismaxquery::setboostquery' => array ( 0 => 'SolrDisMaxQuery', 'q' => 'string', ), - 'SolrDisMaxQuery::setEchoHandler' => + 'solrdismaxquery::setechohandler' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setEchoParams' => + 'solrdismaxquery::setechoparams' => array ( 0 => 'SolrQuery', 'type' => 'string', ), - 'SolrDisMaxQuery::setExpand' => + 'solrdismaxquery::setexpand' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrDisMaxQuery::setExpandQuery' => + 'solrdismaxquery::setexpandquery' => array ( 0 => 'SolrQuery', 'q' => 'string', ), - 'SolrDisMaxQuery::setExpandRows' => + 'solrdismaxquery::setexpandrows' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrDisMaxQuery::setExplainOther' => + 'solrdismaxquery::setexplainother' => array ( 0 => 'SolrQuery', 'query' => 'string', ), - 'SolrDisMaxQuery::setFacet' => + 'solrdismaxquery::setfacet' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setFacetDateEnd' => + 'solrdismaxquery::setfacetdateend' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetDateGap' => + 'solrdismaxquery::setfacetdategap' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetDateHardEnd' => + 'solrdismaxquery::setfacetdatehardend' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetDateStart' => + 'solrdismaxquery::setfacetdatestart' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetEnumCacheMinDefaultFrequency' => + 'solrdismaxquery::setfacetenumcachemindefaultfrequency' => array ( 0 => 'SolrQuery', 'frequency' => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetLimit' => + 'solrdismaxquery::setfacetlimit' => array ( 0 => 'SolrQuery', 'limit' => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetMethod' => + 'solrdismaxquery::setfacetmethod' => array ( 0 => 'SolrQuery', 'method' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetMinCount' => + 'solrdismaxquery::setfacetmincount' => array ( 0 => 'SolrQuery', 'mincount' => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetMissing' => + 'solrdismaxquery::setfacetmissing' => array ( 0 => 'SolrQuery', 'flag' => 'bool', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetOffset' => + 'solrdismaxquery::setfacetoffset' => array ( 0 => 'SolrQuery', 'offset' => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetPrefix' => + 'solrdismaxquery::setfacetprefix' => array ( 0 => 'SolrQuery', 'prefix' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetSort' => + 'solrdismaxquery::setfacetsort' => array ( 0 => 'SolrQuery', 'facetSort' => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setGroup' => + 'solrdismaxquery::setgroup' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrDisMaxQuery::setGroupCachePercent' => + 'solrdismaxquery::setgroupcachepercent' => array ( 0 => 'SolrQuery', 'percent' => 'int', ), - 'SolrDisMaxQuery::setGroupFacet' => + 'solrdismaxquery::setgroupfacet' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrDisMaxQuery::setGroupFormat' => + 'solrdismaxquery::setgroupformat' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::setGroupLimit' => + 'solrdismaxquery::setgrouplimit' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrDisMaxQuery::setGroupMain' => + 'solrdismaxquery::setgroupmain' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::setGroupNGroups' => + 'solrdismaxquery::setgroupngroups' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrDisMaxQuery::setGroupOffset' => + 'solrdismaxquery::setgroupoffset' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrDisMaxQuery::setGroupTruncate' => + 'solrdismaxquery::setgrouptruncate' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrDisMaxQuery::setHighlight' => + 'solrdismaxquery::sethighlight' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setHighlightAlternateField' => + 'solrdismaxquery::sethighlightalternatefield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightFormatter' => + 'solrdismaxquery::sethighlightformatter' => array ( 0 => 'SolrQuery', 'formatter' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightFragmenter' => + 'solrdismaxquery::sethighlightfragmenter' => array ( 0 => 'SolrQuery', 'fragmenter' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightFragsize' => + 'solrdismaxquery::sethighlightfragsize' => array ( 0 => 'SolrQuery', 'size' => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightHighlightMultiTerm' => + 'solrdismaxquery::sethighlighthighlightmultiterm' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setHighlightMaxAlternateFieldLength' => + 'solrdismaxquery::sethighlightmaxalternatefieldlength' => array ( 0 => 'SolrQuery', 'fieldLength' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightMaxAnalyzedChars' => + 'solrdismaxquery::sethighlightmaxanalyzedchars' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrDisMaxQuery::setHighlightMergeContiguous' => + 'solrdismaxquery::sethighlightmergecontiguous' => array ( 0 => 'SolrQuery', 'flag' => 'bool', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightRegexMaxAnalyzedChars' => + 'solrdismaxquery::sethighlightregexmaxanalyzedchars' => array ( 0 => 'SolrQuery', 'maxAnalyzedChars' => 'int', ), - 'SolrDisMaxQuery::setHighlightRegexPattern' => + 'solrdismaxquery::sethighlightregexpattern' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::setHighlightRegexSlop' => + 'solrdismaxquery::sethighlightregexslop' => array ( 0 => 'SolrQuery', 'factor' => 'float', ), - 'SolrDisMaxQuery::setHighlightRequireFieldMatch' => + 'solrdismaxquery::sethighlightrequirefieldmatch' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setHighlightSimplePost' => + 'solrdismaxquery::sethighlightsimplepost' => array ( 0 => 'SolrQuery', 'simplePost' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightSimplePre' => + 'solrdismaxquery::sethighlightsimplepre' => array ( 0 => 'SolrQuery', 'simplePre' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightSnippets' => + 'solrdismaxquery::sethighlightsnippets' => array ( 0 => 'SolrQuery', 'value' => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightUsePhraseHighlighter' => + 'solrdismaxquery::sethighlightusephrasehighlighter' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setMinimumMatch' => + 'solrdismaxquery::setminimummatch' => array ( 0 => 'SolrDisMaxQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::setMlt' => + 'solrdismaxquery::setmlt' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setMltBoost' => + 'solrdismaxquery::setmltboost' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setMltCount' => + 'solrdismaxquery::setmltcount' => array ( 0 => 'SolrQuery', 'count' => 'int', ), - 'SolrDisMaxQuery::setMltMaxNumQueryTerms' => + 'solrdismaxquery::setmltmaxnumqueryterms' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrDisMaxQuery::setMltMaxNumTokens' => + 'solrdismaxquery::setmltmaxnumtokens' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrDisMaxQuery::setMltMaxWordLength' => + 'solrdismaxquery::setmltmaxwordlength' => array ( 0 => 'SolrQuery', 'maxWordLength' => 'int', ), - 'SolrDisMaxQuery::setMltMinDocFrequency' => + 'solrdismaxquery::setmltmindocfrequency' => array ( 0 => 'SolrQuery', 'minDocFrequency' => 'int', ), - 'SolrDisMaxQuery::setMltMinTermFrequency' => + 'solrdismaxquery::setmltmintermfrequency' => array ( 0 => 'SolrQuery', 'minTermFrequency' => 'int', ), - 'SolrDisMaxQuery::setMltMinWordLength' => + 'solrdismaxquery::setmltminwordlength' => array ( 0 => 'SolrQuery', 'minWordLength' => 'int', ), - 'SolrDisMaxQuery::setOmitHeader' => + 'solrdismaxquery::setomitheader' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setParam' => + 'solrdismaxquery::setparam' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'mixed', ), - 'SolrDisMaxQuery::setPhraseFields' => + 'solrdismaxquery::setphrasefields' => array ( 0 => 'SolrDisMaxQuery', 'fields' => 'string', ), - 'SolrDisMaxQuery::setPhraseSlop' => + 'solrdismaxquery::setphraseslop' => array ( 0 => 'SolrDisMaxQuery', 'slop' => 'string', ), - 'SolrDisMaxQuery::setQuery' => + 'solrdismaxquery::setquery' => array ( 0 => 'SolrQuery', 'query' => 'string', ), - 'SolrDisMaxQuery::setQueryAlt' => + 'solrdismaxquery::setqueryalt' => array ( 0 => 'SolrDisMaxQuery', 'q' => 'string', ), - 'SolrDisMaxQuery::setQueryPhraseSlop' => + 'solrdismaxquery::setqueryphraseslop' => array ( 0 => 'SolrDisMaxQuery', 'slop' => 'string', ), - 'SolrDisMaxQuery::setRows' => + 'solrdismaxquery::setrows' => array ( 0 => 'SolrQuery', 'rows' => 'int', ), - 'SolrDisMaxQuery::setShowDebugInfo' => + 'solrdismaxquery::setshowdebuginfo' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setStart' => + 'solrdismaxquery::setstart' => array ( 0 => 'SolrQuery', 'start' => 'int', ), - 'SolrDisMaxQuery::setStats' => + 'solrdismaxquery::setstats' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setTerms' => + 'solrdismaxquery::setterms' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setTermsField' => + 'solrdismaxquery::settermsfield' => array ( 0 => 'SolrQuery', 'fieldname' => 'string', ), - 'SolrDisMaxQuery::setTermsIncludeLowerBound' => + 'solrdismaxquery::settermsincludelowerbound' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setTermsIncludeUpperBound' => + 'solrdismaxquery::settermsincludeupperbound' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setTermsLimit' => + 'solrdismaxquery::settermslimit' => array ( 0 => 'SolrQuery', 'limit' => 'int', ), - 'SolrDisMaxQuery::setTermsLowerBound' => + 'solrdismaxquery::settermslowerbound' => array ( 0 => 'SolrQuery', 'lowerBound' => 'string', ), - 'SolrDisMaxQuery::setTermsMaxCount' => + 'solrdismaxquery::settermsmaxcount' => array ( 0 => 'SolrQuery', 'frequency' => 'int', ), - 'SolrDisMaxQuery::setTermsMinCount' => + 'solrdismaxquery::settermsmincount' => array ( 0 => 'SolrQuery', 'frequency' => 'int', ), - 'SolrDisMaxQuery::setTermsPrefix' => + 'solrdismaxquery::settermsprefix' => array ( 0 => 'SolrQuery', 'prefix' => 'string', ), - 'SolrDisMaxQuery::setTermsReturnRaw' => + 'solrdismaxquery::settermsreturnraw' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setTermsSort' => + 'solrdismaxquery::settermssort' => array ( 0 => 'SolrQuery', 'sortType' => 'int', ), - 'SolrDisMaxQuery::setTermsUpperBound' => + 'solrdismaxquery::settermsupperbound' => array ( 0 => 'SolrQuery', 'upperBound' => 'string', ), - 'SolrDisMaxQuery::setTieBreaker' => + 'solrdismaxquery::settiebreaker' => array ( 0 => 'SolrDisMaxQuery', 'tieBreaker' => 'string', ), - 'SolrDisMaxQuery::setTimeAllowed' => + 'solrdismaxquery::settimeallowed' => array ( 0 => 'SolrQuery', 'timeAllowed' => 'int', ), - 'SolrDisMaxQuery::setTrigramPhraseFields' => + 'solrdismaxquery::settrigramphrasefields' => array ( 0 => 'SolrDisMaxQuery', 'fields' => 'string', ), - 'SolrDisMaxQuery::setTrigramPhraseSlop' => + 'solrdismaxquery::settrigramphraseslop' => array ( 0 => 'SolrDisMaxQuery', 'slop' => 'string', ), - 'SolrDisMaxQuery::setUserFields' => + 'solrdismaxquery::setuserfields' => array ( 0 => 'SolrDisMaxQuery', 'fields' => 'string', ), - 'SolrDisMaxQuery::toString' => + 'solrdismaxquery::tostring' => array ( 0 => 'string', 'url_encode=' => 'bool', ), - 'SolrDisMaxQuery::unserialize' => + 'solrdismaxquery::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'SolrDisMaxQuery::useDisMaxQueryParser' => + 'solrdismaxquery::usedismaxqueryparser' => array ( 0 => 'SolrDisMaxQuery', ), - 'SolrDisMaxQuery::useEDisMaxQueryParser' => + 'solrdismaxquery::useedismaxqueryparser' => array ( 0 => 'SolrDisMaxQuery', ), - 'SolrDocument::__clone' => + 'solrdocument::__clone' => array ( 0 => 'void', ), - 'SolrDocument::__construct' => + 'solrdocument::__construct' => array ( 0 => 'void', ), - 'SolrDocument::__destruct' => + 'solrdocument::__destruct' => array ( 0 => 'void', ), - 'SolrDocument::__get' => + 'solrdocument::__get' => array ( 0 => 'SolrDocumentField', 'fieldname' => 'string', ), - 'SolrDocument::__isset' => + 'solrdocument::__isset' => array ( 0 => 'bool', 'fieldname' => 'string', ), - 'SolrDocument::__set' => + 'solrdocument::__set' => array ( 0 => 'bool', 'fieldname' => 'string', 'fieldvalue' => 'string', ), - 'SolrDocument::__unset' => + 'solrdocument::__unset' => array ( 0 => 'bool', 'fieldname' => 'string', ), - 'SolrDocument::addField' => + 'solrdocument::addfield' => array ( 0 => 'bool', 'fieldname' => 'string', 'fieldvalue' => 'string', ), - 'SolrDocument::clear' => + 'solrdocument::clear' => array ( 0 => 'bool', ), - 'SolrDocument::current' => + 'solrdocument::current' => array ( 0 => 'SolrDocumentField', ), - 'SolrDocument::deleteField' => + 'solrdocument::deletefield' => array ( 0 => 'bool', 'fieldname' => 'string', ), - 'SolrDocument::fieldExists' => + 'solrdocument::fieldexists' => array ( 0 => 'bool', 'fieldname' => 'string', ), - 'SolrDocument::getChildDocuments' => + 'solrdocument::getchilddocuments' => array ( 0 => 'array', ), - 'SolrDocument::getChildDocumentsCount' => + 'solrdocument::getchilddocumentscount' => array ( 0 => 'int', ), - 'SolrDocument::getField' => + 'solrdocument::getfield' => array ( 0 => 'SolrDocumentField|false', 'fieldname' => 'string', ), - 'SolrDocument::getFieldCount' => + 'solrdocument::getfieldcount' => array ( 0 => 'false|int', ), - 'SolrDocument::getFieldNames' => + 'solrdocument::getfieldnames' => array ( 0 => 'array|false', ), - 'SolrDocument::getInputDocument' => + 'solrdocument::getinputdocument' => array ( 0 => 'SolrInputDocument', ), - 'SolrDocument::hasChildDocuments' => + 'solrdocument::haschilddocuments' => array ( 0 => 'bool', ), - 'SolrDocument::key' => + 'solrdocument::key' => array ( 0 => 'string', ), - 'SolrDocument::merge' => + 'solrdocument::merge' => array ( 0 => 'bool', 'sourcedoc' => 'solrdocument', 'overwrite=' => 'bool', ), - 'SolrDocument::next' => + 'solrdocument::next' => array ( 0 => 'void', ), - 'SolrDocument::offsetExists' => + 'solrdocument::offsetexists' => array ( 0 => 'bool', 'fieldname' => 'string', ), - 'SolrDocument::offsetGet' => + 'solrdocument::offsetget' => array ( 0 => 'SolrDocumentField', 'fieldname' => 'string', ), - 'SolrDocument::offsetSet' => + 'solrdocument::offsetset' => array ( 0 => 'void', 'fieldname' => 'string', 'fieldvalue' => 'string', ), - 'SolrDocument::offsetUnset' => + 'solrdocument::offsetunset' => array ( 0 => 'void', 'fieldname' => 'string', ), - 'SolrDocument::reset' => + 'solrdocument::reset' => array ( 0 => 'bool', ), - 'SolrDocument::rewind' => + 'solrdocument::rewind' => array ( 0 => 'void', ), - 'SolrDocument::serialize' => + 'solrdocument::serialize' => array ( 0 => 'string', ), - 'SolrDocument::sort' => + 'solrdocument::sort' => array ( 0 => 'bool', 'sortorderby' => 'int', 'sortdirection=' => 'int', ), - 'SolrDocument::toArray' => + 'solrdocument::toarray' => array ( 0 => 'array', ), - 'SolrDocument::unserialize' => + 'solrdocument::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'SolrDocument::valid' => + 'solrdocument::valid' => array ( 0 => 'bool', ), - 'SolrDocumentField::__construct' => + 'solrdocumentfield::__construct' => array ( 0 => 'void', ), - 'SolrDocumentField::__destruct' => + 'solrdocumentfield::__destruct' => array ( 0 => 'void', ), - 'SolrException::__clone' => + 'solrexception::__clone' => array ( 0 => 'void', ), - 'SolrException::__construct' => + 'solrexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'SolrException::__toString' => + 'solrexception::__tostring' => array ( 0 => 'string', ), - 'SolrException::__wakeup' => + 'solrexception::__wakeup' => array ( 0 => 'void', ), - 'SolrException::getCode' => + 'solrexception::getcode' => array ( 0 => 'int', ), - 'SolrException::getFile' => + 'solrexception::getfile' => array ( 0 => 'string', ), - 'SolrException::getInternalInfo' => + 'solrexception::getinternalinfo' => array ( 0 => 'array', ), - 'SolrException::getLine' => + 'solrexception::getline' => array ( 0 => 'int', ), - 'SolrException::getMessage' => + 'solrexception::getmessage' => array ( 0 => 'string', ), - 'SolrException::getPrevious' => + 'solrexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'SolrException::getTrace' => + 'solrexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'SolrException::getTraceAsString' => + 'solrexception::gettraceasstring' => array ( 0 => 'string', ), - 'SolrGenericResponse::__construct' => + 'solrgenericresponse::__construct' => array ( 0 => 'void', ), - 'SolrGenericResponse::__destruct' => + 'solrgenericresponse::__destruct' => array ( 0 => 'void', ), - 'SolrGenericResponse::getDigestedResponse' => + 'solrgenericresponse::getdigestedresponse' => array ( 0 => 'string', ), - 'SolrGenericResponse::getHttpStatus' => + 'solrgenericresponse::gethttpstatus' => array ( 0 => 'int', ), - 'SolrGenericResponse::getHttpStatusMessage' => + 'solrgenericresponse::gethttpstatusmessage' => array ( 0 => 'string', ), - 'SolrGenericResponse::getRawRequest' => + 'solrgenericresponse::getrawrequest' => array ( 0 => 'string', ), - 'SolrGenericResponse::getRawRequestHeaders' => + 'solrgenericresponse::getrawrequestheaders' => array ( 0 => 'string', ), - 'SolrGenericResponse::getRawResponse' => + 'solrgenericresponse::getrawresponse' => array ( 0 => 'string', ), - 'SolrGenericResponse::getRawResponseHeaders' => + 'solrgenericresponse::getrawresponseheaders' => array ( 0 => 'string', ), - 'SolrGenericResponse::getRequestUrl' => + 'solrgenericresponse::getrequesturl' => array ( 0 => 'string', ), - 'SolrGenericResponse::getResponse' => + 'solrgenericresponse::getresponse' => array ( 0 => 'SolrObject', ), - 'SolrGenericResponse::setParseMode' => + 'solrgenericresponse::setparsemode' => array ( 0 => 'bool', 'parser_mode=' => 'int', ), - 'SolrGenericResponse::success' => + 'solrgenericresponse::success' => array ( 0 => 'bool', ), - 'SolrIllegalArgumentException::__clone' => + 'solrillegalargumentexception::__clone' => array ( 0 => 'void', ), - 'SolrIllegalArgumentException::__construct' => + 'solrillegalargumentexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'SolrIllegalArgumentException::__toString' => + 'solrillegalargumentexception::__tostring' => array ( 0 => 'string', ), - 'SolrIllegalArgumentException::__wakeup' => + 'solrillegalargumentexception::__wakeup' => array ( 0 => 'void', ), - 'SolrIllegalArgumentException::getCode' => + 'solrillegalargumentexception::getcode' => array ( 0 => 'int', ), - 'SolrIllegalArgumentException::getFile' => + 'solrillegalargumentexception::getfile' => array ( 0 => 'string', ), - 'SolrIllegalArgumentException::getInternalInfo' => + 'solrillegalargumentexception::getinternalinfo' => array ( 0 => 'array', ), - 'SolrIllegalArgumentException::getLine' => + 'solrillegalargumentexception::getline' => array ( 0 => 'int', ), - 'SolrIllegalArgumentException::getMessage' => + 'solrillegalargumentexception::getmessage' => array ( 0 => 'string', ), - 'SolrIllegalArgumentException::getPrevious' => + 'solrillegalargumentexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'SolrIllegalArgumentException::getTrace' => + 'solrillegalargumentexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'SolrIllegalArgumentException::getTraceAsString' => + 'solrillegalargumentexception::gettraceasstring' => array ( 0 => 'string', ), - 'SolrIllegalOperationException::__clone' => + 'solrillegaloperationexception::__clone' => array ( 0 => 'void', ), - 'SolrIllegalOperationException::__construct' => + 'solrillegaloperationexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'SolrIllegalOperationException::__toString' => + 'solrillegaloperationexception::__tostring' => array ( 0 => 'string', ), - 'SolrIllegalOperationException::__wakeup' => + 'solrillegaloperationexception::__wakeup' => array ( 0 => 'void', ), - 'SolrIllegalOperationException::getCode' => + 'solrillegaloperationexception::getcode' => array ( 0 => 'int', ), - 'SolrIllegalOperationException::getFile' => + 'solrillegaloperationexception::getfile' => array ( 0 => 'string', ), - 'SolrIllegalOperationException::getInternalInfo' => + 'solrillegaloperationexception::getinternalinfo' => array ( 0 => 'array', ), - 'SolrIllegalOperationException::getLine' => + 'solrillegaloperationexception::getline' => array ( 0 => 'int', ), - 'SolrIllegalOperationException::getMessage' => + 'solrillegaloperationexception::getmessage' => array ( 0 => 'string', ), - 'SolrIllegalOperationException::getPrevious' => + 'solrillegaloperationexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'SolrIllegalOperationException::getTrace' => + 'solrillegaloperationexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'SolrIllegalOperationException::getTraceAsString' => + 'solrillegaloperationexception::gettraceasstring' => array ( 0 => 'string', ), - 'SolrInputDocument::__clone' => + 'solrinputdocument::__clone' => array ( 0 => 'void', ), - 'SolrInputDocument::__construct' => + 'solrinputdocument::__construct' => array ( 0 => 'void', ), - 'SolrInputDocument::__destruct' => + 'solrinputdocument::__destruct' => array ( 0 => 'void', ), - 'SolrInputDocument::addChildDocument' => + 'solrinputdocument::addchilddocument' => array ( 0 => 'void', 'child' => 'SolrInputDocument', ), - 'SolrInputDocument::addChildDocuments' => + 'solrinputdocument::addchilddocuments' => array ( 0 => 'void', 'docs' => 'array', ), - 'SolrInputDocument::addField' => + 'solrinputdocument::addfield' => array ( 0 => 'bool', 'fieldname' => 'string', 'fieldvalue' => 'string', 'fieldboostvalue=' => 'float', ), - 'SolrInputDocument::clear' => + 'solrinputdocument::clear' => array ( 0 => 'bool', ), - 'SolrInputDocument::deleteField' => + 'solrinputdocument::deletefield' => array ( 0 => 'bool', 'fieldname' => 'string', ), - 'SolrInputDocument::fieldExists' => + 'solrinputdocument::fieldexists' => array ( 0 => 'bool', 'fieldname' => 'string', ), - 'SolrInputDocument::getBoost' => + 'solrinputdocument::getboost' => array ( 0 => 'false|float', ), - 'SolrInputDocument::getChildDocuments' => + 'solrinputdocument::getchilddocuments' => array ( 0 => 'array', ), - 'SolrInputDocument::getChildDocumentsCount' => + 'solrinputdocument::getchilddocumentscount' => array ( 0 => 'int', ), - 'SolrInputDocument::getField' => + 'solrinputdocument::getfield' => array ( 0 => 'SolrDocumentField|false', 'fieldname' => 'string', ), - 'SolrInputDocument::getFieldBoost' => + 'solrinputdocument::getfieldboost' => array ( 0 => 'false|float', 'fieldname' => 'string', ), - 'SolrInputDocument::getFieldCount' => + 'solrinputdocument::getfieldcount' => array ( 0 => 'false|int', ), - 'SolrInputDocument::getFieldNames' => + 'solrinputdocument::getfieldnames' => array ( 0 => 'array|false', ), - 'SolrInputDocument::hasChildDocuments' => + 'solrinputdocument::haschilddocuments' => array ( 0 => 'bool', ), - 'SolrInputDocument::merge' => + 'solrinputdocument::merge' => array ( 0 => 'bool', 'sourcedoc' => 'SolrInputDocument', 'overwrite=' => 'bool', ), - 'SolrInputDocument::reset' => + 'solrinputdocument::reset' => array ( 0 => 'bool', ), - 'SolrInputDocument::setBoost' => + 'solrinputdocument::setboost' => array ( 0 => 'bool', 'documentboostvalue' => 'float', ), - 'SolrInputDocument::setFieldBoost' => + 'solrinputdocument::setfieldboost' => array ( 0 => 'bool', 'fieldname' => 'string', 'fieldboostvalue' => 'float', ), - 'SolrInputDocument::sort' => + 'solrinputdocument::sort' => array ( 0 => 'bool', 'sortorderby' => 'int', 'sortdirection=' => 'int', ), - 'SolrInputDocument::toArray' => + 'solrinputdocument::toarray' => array ( 0 => 'array|false', ), - 'SolrModifiableParams::__construct' => + 'solrmodifiableparams::__construct' => array ( 0 => 'void', ), - 'SolrModifiableParams::__destruct' => + 'solrmodifiableparams::__destruct' => array ( 0 => 'void', ), - 'SolrModifiableParams::add' => + 'solrmodifiableparams::add' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'string', ), - 'SolrModifiableParams::addParam' => + 'solrmodifiableparams::addparam' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'string', ), - 'SolrModifiableParams::get' => + 'solrmodifiableparams::get' => array ( 0 => 'mixed', 'param_name' => 'string', ), - 'SolrModifiableParams::getParam' => + 'solrmodifiableparams::getparam' => array ( 0 => 'mixed', 'param_name' => 'string', ), - 'SolrModifiableParams::getParams' => + 'solrmodifiableparams::getparams' => array ( 0 => 'array', ), - 'SolrModifiableParams::getPreparedParams' => + 'solrmodifiableparams::getpreparedparams' => array ( 0 => 'array', ), - 'SolrModifiableParams::serialize' => + 'solrmodifiableparams::serialize' => array ( 0 => 'string', ), - 'SolrModifiableParams::set' => + 'solrmodifiableparams::set' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'mixed', ), - 'SolrModifiableParams::setParam' => + 'solrmodifiableparams::setparam' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'mixed', ), - 'SolrModifiableParams::toString' => + 'solrmodifiableparams::tostring' => array ( 0 => 'string', 'url_encode=' => 'bool', ), - 'SolrModifiableParams::unserialize' => + 'solrmodifiableparams::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'SolrObject::__construct' => + 'solrobject::__construct' => array ( 0 => 'void', ), - 'SolrObject::__destruct' => + 'solrobject::__destruct' => array ( 0 => 'void', ), - 'SolrObject::getPropertyNames' => + 'solrobject::getpropertynames' => array ( 0 => 'array', ), - 'SolrObject::offsetExists' => + 'solrobject::offsetexists' => array ( 0 => 'bool', 'property_name' => 'string', ), - 'SolrObject::offsetGet' => + 'solrobject::offsetget' => array ( 0 => 'SolrDocumentField', 'property_name' => 'string', ), - 'SolrObject::offsetSet' => + 'solrobject::offsetset' => array ( 0 => 'void', 'property_name' => 'string', 'property_value' => 'string', ), - 'SolrObject::offsetUnset' => + 'solrobject::offsetunset' => array ( 0 => 'void', 'property_name' => 'string', ), - 'SolrParams::__construct' => + 'solrparams::__construct' => array ( 0 => 'void', ), - 'SolrParams::add' => + 'solrparams::add' => array ( 0 => 'SolrParams|false', 'name' => 'string', 'value' => 'string', ), - 'SolrParams::addParam' => + 'solrparams::addparam' => array ( 0 => 'SolrParams|false', 'name' => 'string', 'value' => 'string', ), - 'SolrParams::get' => + 'solrparams::get' => array ( 0 => 'mixed', 'param_name' => 'string', ), - 'SolrParams::getParam' => + 'solrparams::getparam' => array ( 0 => 'mixed', 'param_name=' => 'string', ), - 'SolrParams::getParams' => + 'solrparams::getparams' => array ( 0 => 'array', ), - 'SolrParams::getPreparedParams' => + 'solrparams::getpreparedparams' => array ( 0 => 'array', ), - 'SolrParams::serialize' => + 'solrparams::serialize' => array ( 0 => 'string', ), - 'SolrParams::set' => + 'solrparams::set' => array ( 0 => 'SolrParams|false', 'name' => 'string', 'value' => 'string', ), - 'SolrParams::setParam' => + 'solrparams::setparam' => array ( 0 => 'SolrParams|false', 'name' => 'string', 'value' => 'string', ), - 'SolrParams::toString' => + 'solrparams::tostring' => array ( 0 => 'false|string', 'url_encode=' => 'bool', ), - 'SolrParams::unserialize' => + 'solrparams::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'SolrPingResponse::__construct' => + 'solrpingresponse::__construct' => array ( 0 => 'void', ), - 'SolrPingResponse::__destruct' => + 'solrpingresponse::__destruct' => array ( 0 => 'void', ), - 'SolrPingResponse::getDigestedResponse' => + 'solrpingresponse::getdigestedresponse' => array ( 0 => 'string', ), - 'SolrPingResponse::getHttpStatus' => + 'solrpingresponse::gethttpstatus' => array ( 0 => 'int', ), - 'SolrPingResponse::getHttpStatusMessage' => + 'solrpingresponse::gethttpstatusmessage' => array ( 0 => 'string', ), - 'SolrPingResponse::getRawRequest' => + 'solrpingresponse::getrawrequest' => array ( 0 => 'string', ), - 'SolrPingResponse::getRawRequestHeaders' => + 'solrpingresponse::getrawrequestheaders' => array ( 0 => 'string', ), - 'SolrPingResponse::getRawResponse' => + 'solrpingresponse::getrawresponse' => array ( 0 => 'string', ), - 'SolrPingResponse::getRawResponseHeaders' => + 'solrpingresponse::getrawresponseheaders' => array ( 0 => 'string', ), - 'SolrPingResponse::getRequestUrl' => + 'solrpingresponse::getrequesturl' => array ( 0 => 'string', ), - 'SolrPingResponse::getResponse' => + 'solrpingresponse::getresponse' => array ( 0 => 'string', ), - 'SolrPingResponse::setParseMode' => + 'solrpingresponse::setparsemode' => array ( 0 => 'bool', 'parser_mode=' => 'int', ), - 'SolrPingResponse::success' => + 'solrpingresponse::success' => array ( 0 => 'bool', ), - 'SolrQuery::__construct' => + 'solrquery::__construct' => array ( 0 => 'void', 'q=' => 'string', ), - 'SolrQuery::__destruct' => + 'solrquery::__destruct' => array ( 0 => 'void', ), - 'SolrQuery::add' => + 'solrquery::add' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'string', ), - 'SolrQuery::addExpandFilterQuery' => + 'solrquery::addexpandfilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrQuery::addExpandSortField' => + 'solrquery::addexpandsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'order=' => 'string', ), - 'SolrQuery::addFacetDateField' => + 'solrquery::addfacetdatefield' => array ( 0 => 'SolrQuery', 'datefield' => 'string', ), - 'SolrQuery::addFacetDateOther' => + 'solrquery::addfacetdateother' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::addFacetField' => + 'solrquery::addfacetfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::addFacetQuery' => + 'solrquery::addfacetquery' => array ( 0 => 'SolrQuery', 'facetquery' => 'string', ), - 'SolrQuery::addField' => + 'solrquery::addfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::addFilterQuery' => + 'solrquery::addfilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrQuery::addGroupField' => + 'solrquery::addgroupfield' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::addGroupFunction' => + 'solrquery::addgroupfunction' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::addGroupQuery' => + 'solrquery::addgroupquery' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::addGroupSortField' => + 'solrquery::addgroupsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'order=' => 'int', ), - 'SolrQuery::addHighlightField' => + 'solrquery::addhighlightfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::addMltField' => + 'solrquery::addmltfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::addMltQueryField' => + 'solrquery::addmltqueryfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'boost' => 'float', ), - 'SolrQuery::addParam' => + 'solrquery::addparam' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'string', ), - 'SolrQuery::addSortField' => + 'solrquery::addsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'order=' => 'int', ), - 'SolrQuery::addStatsFacet' => + 'solrquery::addstatsfacet' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::addStatsField' => + 'solrquery::addstatsfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::collapse' => + 'solrquery::collapse' => array ( 0 => 'SolrQuery', 'collapseFunction' => 'SolrCollapseFunction', ), - 'SolrQuery::get' => + 'solrquery::get' => array ( 0 => 'mixed', 'param_name' => 'string', ), - 'SolrQuery::getExpand' => + 'solrquery::getexpand' => array ( 0 => 'bool', ), - 'SolrQuery::getExpandFilterQueries' => + 'solrquery::getexpandfilterqueries' => array ( 0 => 'array', ), - 'SolrQuery::getExpandQuery' => + 'solrquery::getexpandquery' => array ( 0 => 'array', ), - 'SolrQuery::getExpandRows' => + 'solrquery::getexpandrows' => array ( 0 => 'int', ), - 'SolrQuery::getExpandSortFields' => + 'solrquery::getexpandsortfields' => array ( 0 => 'array', ), - 'SolrQuery::getFacet' => + 'solrquery::getfacet' => array ( 0 => 'bool|null', ), - 'SolrQuery::getFacetDateEnd' => + 'solrquery::getfacetdateend' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getFacetDateFields' => + 'solrquery::getfacetdatefields' => array ( 0 => 'array', ), - 'SolrQuery::getFacetDateGap' => + 'solrquery::getfacetdategap' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getFacetDateHardEnd' => + 'solrquery::getfacetdatehardend' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getFacetDateOther' => + 'solrquery::getfacetdateother' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getFacetDateStart' => + 'solrquery::getfacetdatestart' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getFacetFields' => + 'solrquery::getfacetfields' => array ( 0 => 'array', ), - 'SolrQuery::getFacetLimit' => + 'solrquery::getfacetlimit' => array ( 0 => 'int|null', 'field_override=' => 'string', ), - 'SolrQuery::getFacetMethod' => + 'solrquery::getfacetmethod' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getFacetMinCount' => + 'solrquery::getfacetmincount' => array ( 0 => 'int|null', 'field_override=' => 'string', ), - 'SolrQuery::getFacetMissing' => + 'solrquery::getfacetmissing' => array ( 0 => 'bool|null', 'field_override=' => 'string', ), - 'SolrQuery::getFacetOffset' => + 'solrquery::getfacetoffset' => array ( 0 => 'int|null', 'field_override=' => 'string', ), - 'SolrQuery::getFacetPrefix' => + 'solrquery::getfacetprefix' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getFacetQueries' => + 'solrquery::getfacetqueries' => array ( 0 => 'array|null', ), - 'SolrQuery::getFacetSort' => + 'solrquery::getfacetsort' => array ( 0 => 'int', 'field_override=' => 'string', ), - 'SolrQuery::getFields' => + 'solrquery::getfields' => array ( 0 => 'array|null', ), - 'SolrQuery::getFilterQueries' => + 'solrquery::getfilterqueries' => array ( 0 => 'array|null', ), - 'SolrQuery::getGroup' => + 'solrquery::getgroup' => array ( 0 => 'bool', ), - 'SolrQuery::getGroupCachePercent' => + 'solrquery::getgroupcachepercent' => array ( 0 => 'int', ), - 'SolrQuery::getGroupFacet' => + 'solrquery::getgroupfacet' => array ( 0 => 'bool', ), - 'SolrQuery::getGroupFields' => + 'solrquery::getgroupfields' => array ( 0 => 'array', ), - 'SolrQuery::getGroupFormat' => + 'solrquery::getgroupformat' => array ( 0 => 'string', ), - 'SolrQuery::getGroupFunctions' => + 'solrquery::getgroupfunctions' => array ( 0 => 'array', ), - 'SolrQuery::getGroupLimit' => + 'solrquery::getgrouplimit' => array ( 0 => 'int', ), - 'SolrQuery::getGroupMain' => + 'solrquery::getgroupmain' => array ( 0 => 'bool', ), - 'SolrQuery::getGroupNGroups' => + 'solrquery::getgroupngroups' => array ( 0 => 'bool', ), - 'SolrQuery::getGroupOffset' => + 'solrquery::getgroupoffset' => array ( 0 => 'int', ), - 'SolrQuery::getGroupQueries' => + 'solrquery::getgroupqueries' => array ( 0 => 'array', ), - 'SolrQuery::getGroupSortFields' => + 'solrquery::getgroupsortfields' => array ( 0 => 'array', ), - 'SolrQuery::getGroupTruncate' => + 'solrquery::getgrouptruncate' => array ( 0 => 'bool', ), - 'SolrQuery::getHighlight' => + 'solrquery::gethighlight' => array ( 0 => 'bool', ), - 'SolrQuery::getHighlightAlternateField' => + 'solrquery::gethighlightalternatefield' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightFields' => + 'solrquery::gethighlightfields' => array ( 0 => 'array|null', ), - 'SolrQuery::getHighlightFormatter' => + 'solrquery::gethighlightformatter' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightFragmenter' => + 'solrquery::gethighlightfragmenter' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightFragsize' => + 'solrquery::gethighlightfragsize' => array ( 0 => 'int|null', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightHighlightMultiTerm' => + 'solrquery::gethighlighthighlightmultiterm' => array ( 0 => 'bool|null', ), - 'SolrQuery::getHighlightMaxAlternateFieldLength' => + 'solrquery::gethighlightmaxalternatefieldlength' => array ( 0 => 'int|null', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightMaxAnalyzedChars' => + 'solrquery::gethighlightmaxanalyzedchars' => array ( 0 => 'int|null', ), - 'SolrQuery::getHighlightMergeContiguous' => + 'solrquery::gethighlightmergecontiguous' => array ( 0 => 'bool|null', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightRegexMaxAnalyzedChars' => + 'solrquery::gethighlightregexmaxanalyzedchars' => array ( 0 => 'int|null', ), - 'SolrQuery::getHighlightRegexPattern' => + 'solrquery::gethighlightregexpattern' => array ( 0 => 'null|string', ), - 'SolrQuery::getHighlightRegexSlop' => + 'solrquery::gethighlightregexslop' => array ( 0 => 'float|null', ), - 'SolrQuery::getHighlightRequireFieldMatch' => + 'solrquery::gethighlightrequirefieldmatch' => array ( 0 => 'bool|null', ), - 'SolrQuery::getHighlightSimplePost' => + 'solrquery::gethighlightsimplepost' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightSimplePre' => + 'solrquery::gethighlightsimplepre' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightSnippets' => + 'solrquery::gethighlightsnippets' => array ( 0 => 'int|null', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightUsePhraseHighlighter' => + 'solrquery::gethighlightusephrasehighlighter' => array ( 0 => 'bool|null', ), - 'SolrQuery::getMlt' => + 'solrquery::getmlt' => array ( 0 => 'bool|null', ), - 'SolrQuery::getMltBoost' => + 'solrquery::getmltboost' => array ( 0 => 'bool|null', ), - 'SolrQuery::getMltCount' => + 'solrquery::getmltcount' => array ( 0 => 'int|null', ), - 'SolrQuery::getMltFields' => + 'solrquery::getmltfields' => array ( 0 => 'array|null', ), - 'SolrQuery::getMltMaxNumQueryTerms' => + 'solrquery::getmltmaxnumqueryterms' => array ( 0 => 'int|null', ), - 'SolrQuery::getMltMaxNumTokens' => + 'solrquery::getmltmaxnumtokens' => array ( 0 => 'int|null', ), - 'SolrQuery::getMltMaxWordLength' => + 'solrquery::getmltmaxwordlength' => array ( 0 => 'int|null', ), - 'SolrQuery::getMltMinDocFrequency' => + 'solrquery::getmltmindocfrequency' => array ( 0 => 'int|null', ), - 'SolrQuery::getMltMinTermFrequency' => + 'solrquery::getmltmintermfrequency' => array ( 0 => 'int|null', ), - 'SolrQuery::getMltMinWordLength' => + 'solrquery::getmltminwordlength' => array ( 0 => 'int|null', ), - 'SolrQuery::getMltQueryFields' => + 'solrquery::getmltqueryfields' => array ( 0 => 'array|null', ), - 'SolrQuery::getParam' => + 'solrquery::getparam' => array ( 0 => 'mixed|null', 'param_name' => 'string', ), - 'SolrQuery::getParams' => + 'solrquery::getparams' => array ( 0 => 'array|null', ), - 'SolrQuery::getPreparedParams' => + 'solrquery::getpreparedparams' => array ( 0 => 'array|null', ), - 'SolrQuery::getQuery' => + 'solrquery::getquery' => array ( 0 => 'null|string', ), - 'SolrQuery::getRows' => + 'solrquery::getrows' => array ( 0 => 'int|null', ), - 'SolrQuery::getSortFields' => + 'solrquery::getsortfields' => array ( 0 => 'array|null', ), - 'SolrQuery::getStart' => + 'solrquery::getstart' => array ( 0 => 'int|null', ), - 'SolrQuery::getStats' => + 'solrquery::getstats' => array ( 0 => 'bool|null', ), - 'SolrQuery::getStatsFacets' => + 'solrquery::getstatsfacets' => array ( 0 => 'array|null', ), - 'SolrQuery::getStatsFields' => + 'solrquery::getstatsfields' => array ( 0 => 'array|null', ), - 'SolrQuery::getTerms' => + 'solrquery::getterms' => array ( 0 => 'bool|null', ), - 'SolrQuery::getTermsField' => + 'solrquery::gettermsfield' => array ( 0 => 'null|string', ), - 'SolrQuery::getTermsIncludeLowerBound' => + 'solrquery::gettermsincludelowerbound' => array ( 0 => 'bool|null', ), - 'SolrQuery::getTermsIncludeUpperBound' => + 'solrquery::gettermsincludeupperbound' => array ( 0 => 'bool|null', ), - 'SolrQuery::getTermsLimit' => + 'solrquery::gettermslimit' => array ( 0 => 'int|null', ), - 'SolrQuery::getTermsLowerBound' => + 'solrquery::gettermslowerbound' => array ( 0 => 'null|string', ), - 'SolrQuery::getTermsMaxCount' => + 'solrquery::gettermsmaxcount' => array ( 0 => 'int|null', ), - 'SolrQuery::getTermsMinCount' => + 'solrquery::gettermsmincount' => array ( 0 => 'int|null', ), - 'SolrQuery::getTermsPrefix' => + 'solrquery::gettermsprefix' => array ( 0 => 'null|string', ), - 'SolrQuery::getTermsReturnRaw' => + 'solrquery::gettermsreturnraw' => array ( 0 => 'bool|null', ), - 'SolrQuery::getTermsSort' => + 'solrquery::gettermssort' => array ( 0 => 'int|null', ), - 'SolrQuery::getTermsUpperBound' => + 'solrquery::gettermsupperbound' => array ( 0 => 'null|string', ), - 'SolrQuery::getTimeAllowed' => + 'solrquery::gettimeallowed' => array ( 0 => 'int|null', ), - 'SolrQuery::removeExpandFilterQuery' => + 'solrquery::removeexpandfilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrQuery::removeExpandSortField' => + 'solrquery::removeexpandsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::removeFacetDateField' => + 'solrquery::removefacetdatefield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::removeFacetDateOther' => + 'solrquery::removefacetdateother' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::removeFacetField' => + 'solrquery::removefacetfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::removeFacetQuery' => + 'solrquery::removefacetquery' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::removeField' => + 'solrquery::removefield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::removeFilterQuery' => + 'solrquery::removefilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrQuery::removeHighlightField' => + 'solrquery::removehighlightfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::removeMltField' => + 'solrquery::removemltfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::removeMltQueryField' => + 'solrquery::removemltqueryfield' => array ( 0 => 'SolrQuery', 'queryfield' => 'string', ), - 'SolrQuery::removeSortField' => + 'solrquery::removesortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::removeStatsFacet' => + 'solrquery::removestatsfacet' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::removeStatsField' => + 'solrquery::removestatsfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::serialize' => + 'solrquery::serialize' => array ( 0 => 'string', ), - 'SolrQuery::set' => + 'solrquery::set' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'mixed', ), - 'SolrQuery::setEchoHandler' => + 'solrquery::setechohandler' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setEchoParams' => + 'solrquery::setechoparams' => array ( 0 => 'SolrQuery', 'type' => 'string', ), - 'SolrQuery::setExpand' => + 'solrquery::setexpand' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrQuery::setExpandQuery' => + 'solrquery::setexpandquery' => array ( 0 => 'SolrQuery', 'q' => 'string', ), - 'SolrQuery::setExpandRows' => + 'solrquery::setexpandrows' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrQuery::setExplainOther' => + 'solrquery::setexplainother' => array ( 0 => 'SolrQuery', 'query' => 'string', ), - 'SolrQuery::setFacet' => + 'solrquery::setfacet' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setFacetDateEnd' => + 'solrquery::setfacetdateend' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setFacetDateGap' => + 'solrquery::setfacetdategap' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setFacetDateHardEnd' => + 'solrquery::setfacetdatehardend' => array ( 0 => 'SolrQuery', 'value' => 'bool', 'field_override=' => 'string', ), - 'SolrQuery::setFacetDateStart' => + 'solrquery::setfacetdatestart' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setFacetEnumCacheMinDefaultFrequency' => + 'solrquery::setfacetenumcachemindefaultfrequency' => array ( 0 => 'SolrQuery', 'frequency' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setFacetLimit' => + 'solrquery::setfacetlimit' => array ( 0 => 'SolrQuery', 'limit' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setFacetMethod' => + 'solrquery::setfacetmethod' => array ( 0 => 'SolrQuery', 'method' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setFacetMinCount' => + 'solrquery::setfacetmincount' => array ( 0 => 'SolrQuery', 'mincount' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setFacetMissing' => + 'solrquery::setfacetmissing' => array ( 0 => 'SolrQuery', 'flag' => 'bool', 'field_override=' => 'string', ), - 'SolrQuery::setFacetOffset' => + 'solrquery::setfacetoffset' => array ( 0 => 'SolrQuery', 'offset' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setFacetPrefix' => + 'solrquery::setfacetprefix' => array ( 0 => 'SolrQuery', 'prefix' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setFacetSort' => + 'solrquery::setfacetsort' => array ( 0 => 'SolrQuery', 'facetsort' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setGroup' => + 'solrquery::setgroup' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrQuery::setGroupCachePercent' => + 'solrquery::setgroupcachepercent' => array ( 0 => 'SolrQuery', 'percent' => 'int', ), - 'SolrQuery::setGroupFacet' => + 'solrquery::setgroupfacet' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrQuery::setGroupFormat' => + 'solrquery::setgroupformat' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::setGroupLimit' => + 'solrquery::setgrouplimit' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrQuery::setGroupMain' => + 'solrquery::setgroupmain' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::setGroupNGroups' => + 'solrquery::setgroupngroups' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrQuery::setGroupOffset' => + 'solrquery::setgroupoffset' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrQuery::setGroupTruncate' => + 'solrquery::setgrouptruncate' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrQuery::setHighlight' => + 'solrquery::sethighlight' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setHighlightAlternateField' => + 'solrquery::sethighlightalternatefield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightFormatter' => + 'solrquery::sethighlightformatter' => array ( 0 => 'SolrQuery', 'formatter' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightFragmenter' => + 'solrquery::sethighlightfragmenter' => array ( 0 => 'SolrQuery', 'fragmenter' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightFragsize' => + 'solrquery::sethighlightfragsize' => array ( 0 => 'SolrQuery', 'size' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightHighlightMultiTerm' => + 'solrquery::sethighlighthighlightmultiterm' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setHighlightMaxAlternateFieldLength' => + 'solrquery::sethighlightmaxalternatefieldlength' => array ( 0 => 'SolrQuery', 'fieldlength' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightMaxAnalyzedChars' => + 'solrquery::sethighlightmaxanalyzedchars' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrQuery::setHighlightMergeContiguous' => + 'solrquery::sethighlightmergecontiguous' => array ( 0 => 'SolrQuery', 'flag' => 'bool', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightRegexMaxAnalyzedChars' => + 'solrquery::sethighlightregexmaxanalyzedchars' => array ( 0 => 'SolrQuery', 'maxanalyzedchars' => 'int', ), - 'SolrQuery::setHighlightRegexPattern' => + 'solrquery::sethighlightregexpattern' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::setHighlightRegexSlop' => + 'solrquery::sethighlightregexslop' => array ( 0 => 'SolrQuery', 'factor' => 'float', ), - 'SolrQuery::setHighlightRequireFieldMatch' => + 'solrquery::sethighlightrequirefieldmatch' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setHighlightSimplePost' => + 'solrquery::sethighlightsimplepost' => array ( 0 => 'SolrQuery', 'simplepost' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightSimplePre' => + 'solrquery::sethighlightsimplepre' => array ( 0 => 'SolrQuery', 'simplepre' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightSnippets' => + 'solrquery::sethighlightsnippets' => array ( 0 => 'SolrQuery', 'value' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightUsePhraseHighlighter' => + 'solrquery::sethighlightusephrasehighlighter' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setMlt' => + 'solrquery::setmlt' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setMltBoost' => + 'solrquery::setmltboost' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setMltCount' => + 'solrquery::setmltcount' => array ( 0 => 'SolrQuery', 'count' => 'int', ), - 'SolrQuery::setMltMaxNumQueryTerms' => + 'solrquery::setmltmaxnumqueryterms' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrQuery::setMltMaxNumTokens' => + 'solrquery::setmltmaxnumtokens' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrQuery::setMltMaxWordLength' => + 'solrquery::setmltmaxwordlength' => array ( 0 => 'SolrQuery', 'maxwordlength' => 'int', ), - 'SolrQuery::setMltMinDocFrequency' => + 'solrquery::setmltmindocfrequency' => array ( 0 => 'SolrQuery', 'mindocfrequency' => 'int', ), - 'SolrQuery::setMltMinTermFrequency' => + 'solrquery::setmltmintermfrequency' => array ( 0 => 'SolrQuery', 'mintermfrequency' => 'int', ), - 'SolrQuery::setMltMinWordLength' => + 'solrquery::setmltminwordlength' => array ( 0 => 'SolrQuery', 'minwordlength' => 'int', ), - 'SolrQuery::setOmitHeader' => + 'solrquery::setomitheader' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setParam' => + 'solrquery::setparam' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'mixed', ), - 'SolrQuery::setQuery' => + 'solrquery::setquery' => array ( 0 => 'SolrQuery', 'query' => 'string', ), - 'SolrQuery::setRows' => + 'solrquery::setrows' => array ( 0 => 'SolrQuery', 'rows' => 'int', ), - 'SolrQuery::setShowDebugInfo' => + 'solrquery::setshowdebuginfo' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setStart' => + 'solrquery::setstart' => array ( 0 => 'SolrQuery', 'start' => 'int', ), - 'SolrQuery::setStats' => + 'solrquery::setstats' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setTerms' => + 'solrquery::setterms' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setTermsField' => + 'solrquery::settermsfield' => array ( 0 => 'SolrQuery', 'fieldname' => 'string', ), - 'SolrQuery::setTermsIncludeLowerBound' => + 'solrquery::settermsincludelowerbound' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setTermsIncludeUpperBound' => + 'solrquery::settermsincludeupperbound' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setTermsLimit' => + 'solrquery::settermslimit' => array ( 0 => 'SolrQuery', 'limit' => 'int', ), - 'SolrQuery::setTermsLowerBound' => + 'solrquery::settermslowerbound' => array ( 0 => 'SolrQuery', 'lowerbound' => 'string', ), - 'SolrQuery::setTermsMaxCount' => + 'solrquery::settermsmaxcount' => array ( 0 => 'SolrQuery', 'frequency' => 'int', ), - 'SolrQuery::setTermsMinCount' => + 'solrquery::settermsmincount' => array ( 0 => 'SolrQuery', 'frequency' => 'int', ), - 'SolrQuery::setTermsPrefix' => + 'solrquery::settermsprefix' => array ( 0 => 'SolrQuery', 'prefix' => 'string', ), - 'SolrQuery::setTermsReturnRaw' => + 'solrquery::settermsreturnraw' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setTermsSort' => + 'solrquery::settermssort' => array ( 0 => 'SolrQuery', 'sorttype' => 'int', ), - 'SolrQuery::setTermsUpperBound' => + 'solrquery::settermsupperbound' => array ( 0 => 'SolrQuery', 'upperbound' => 'string', ), - 'SolrQuery::setTimeAllowed' => + 'solrquery::settimeallowed' => array ( 0 => 'SolrQuery', 'timeallowed' => 'int', ), - 'SolrQuery::toString' => + 'solrquery::tostring' => array ( 0 => 'string', 'url_encode=' => 'bool', ), - 'SolrQuery::unserialize' => + 'solrquery::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'SolrQueryResponse::__construct' => + 'solrqueryresponse::__construct' => array ( 0 => 'void', ), - 'SolrQueryResponse::__destruct' => + 'solrqueryresponse::__destruct' => array ( 0 => 'void', ), - 'SolrQueryResponse::getDigestedResponse' => + 'solrqueryresponse::getdigestedresponse' => array ( 0 => 'string', ), - 'SolrQueryResponse::getHttpStatus' => + 'solrqueryresponse::gethttpstatus' => array ( 0 => 'int', ), - 'SolrQueryResponse::getHttpStatusMessage' => + 'solrqueryresponse::gethttpstatusmessage' => array ( 0 => 'string', ), - 'SolrQueryResponse::getRawRequest' => + 'solrqueryresponse::getrawrequest' => array ( 0 => 'string', ), - 'SolrQueryResponse::getRawRequestHeaders' => + 'solrqueryresponse::getrawrequestheaders' => array ( 0 => 'string', ), - 'SolrQueryResponse::getRawResponse' => + 'solrqueryresponse::getrawresponse' => array ( 0 => 'string', ), - 'SolrQueryResponse::getRawResponseHeaders' => + 'solrqueryresponse::getrawresponseheaders' => array ( 0 => 'string', ), - 'SolrQueryResponse::getRequestUrl' => + 'solrqueryresponse::getrequesturl' => array ( 0 => 'string', ), - 'SolrQueryResponse::getResponse' => + 'solrqueryresponse::getresponse' => array ( 0 => 'SolrObject', ), - 'SolrQueryResponse::setParseMode' => + 'solrqueryresponse::setparsemode' => array ( 0 => 'bool', 'parser_mode=' => 'int', ), - 'SolrQueryResponse::success' => + 'solrqueryresponse::success' => array ( 0 => 'bool', ), - 'SolrResponse::getDigestedResponse' => + 'solrresponse::getdigestedresponse' => array ( 0 => 'string', ), - 'SolrResponse::getHttpStatus' => + 'solrresponse::gethttpstatus' => array ( 0 => 'int', ), - 'SolrResponse::getHttpStatusMessage' => + 'solrresponse::gethttpstatusmessage' => array ( 0 => 'string', ), - 'SolrResponse::getRawRequest' => + 'solrresponse::getrawrequest' => array ( 0 => 'string', ), - 'SolrResponse::getRawRequestHeaders' => + 'solrresponse::getrawrequestheaders' => array ( 0 => 'string', ), - 'SolrResponse::getRawResponse' => + 'solrresponse::getrawresponse' => array ( 0 => 'string', ), - 'SolrResponse::getRawResponseHeaders' => + 'solrresponse::getrawresponseheaders' => array ( 0 => 'string', ), - 'SolrResponse::getRequestUrl' => + 'solrresponse::getrequesturl' => array ( 0 => 'string', ), - 'SolrResponse::getResponse' => + 'solrresponse::getresponse' => array ( 0 => 'SolrObject', ), - 'SolrResponse::setParseMode' => + 'solrresponse::setparsemode' => array ( 0 => 'bool', 'parser_mode=' => 'int', ), - 'SolrResponse::success' => + 'solrresponse::success' => array ( 0 => 'bool', ), - 'SolrServerException::__clone' => + 'solrserverexception::__clone' => array ( 0 => 'void', ), - 'SolrServerException::__construct' => + 'solrserverexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'SolrServerException::__toString' => + 'solrserverexception::__tostring' => array ( 0 => 'string', ), - 'SolrServerException::__wakeup' => + 'solrserverexception::__wakeup' => array ( 0 => 'void', ), - 'SolrServerException::getCode' => + 'solrserverexception::getcode' => array ( 0 => 'int', ), - 'SolrServerException::getFile' => + 'solrserverexception::getfile' => array ( 0 => 'string', ), - 'SolrServerException::getInternalInfo' => + 'solrserverexception::getinternalinfo' => array ( 0 => 'array', ), - 'SolrServerException::getLine' => + 'solrserverexception::getline' => array ( 0 => 'int', ), - 'SolrServerException::getMessage' => + 'solrserverexception::getmessage' => array ( 0 => 'string', ), - 'SolrServerException::getPrevious' => + 'solrserverexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'SolrServerException::getTrace' => + 'solrserverexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'SolrServerException::getTraceAsString' => + 'solrserverexception::gettraceasstring' => array ( 0 => 'string', ), - 'SolrUpdateResponse::__construct' => + 'solrupdateresponse::__construct' => array ( 0 => 'void', ), - 'SolrUpdateResponse::__destruct' => + 'solrupdateresponse::__destruct' => array ( 0 => 'void', ), - 'SolrUpdateResponse::getDigestedResponse' => + 'solrupdateresponse::getdigestedresponse' => array ( 0 => 'string', ), - 'SolrUpdateResponse::getHttpStatus' => + 'solrupdateresponse::gethttpstatus' => array ( 0 => 'int', ), - 'SolrUpdateResponse::getHttpStatusMessage' => + 'solrupdateresponse::gethttpstatusmessage' => array ( 0 => 'string', ), - 'SolrUpdateResponse::getRawRequest' => + 'solrupdateresponse::getrawrequest' => array ( 0 => 'string', ), - 'SolrUpdateResponse::getRawRequestHeaders' => + 'solrupdateresponse::getrawrequestheaders' => array ( 0 => 'string', ), - 'SolrUpdateResponse::getRawResponse' => + 'solrupdateresponse::getrawresponse' => array ( 0 => 'string', ), - 'SolrUpdateResponse::getRawResponseHeaders' => + 'solrupdateresponse::getrawresponseheaders' => array ( 0 => 'string', ), - 'SolrUpdateResponse::getRequestUrl' => + 'solrupdateresponse::getrequesturl' => array ( 0 => 'string', ), - 'SolrUpdateResponse::getResponse' => + 'solrupdateresponse::getresponse' => array ( 0 => 'SolrObject', ), - 'SolrUpdateResponse::setParseMode' => + 'solrupdateresponse::setparsemode' => array ( 0 => 'bool', 'parser_mode=' => 'int', ), - 'SolrUpdateResponse::success' => + 'solrupdateresponse::success' => array ( 0 => 'bool', ), - 'SolrUtils::digestXmlResponse' => + 'solrutils::digestxmlresponse' => array ( 0 => 'SolrObject', 'xmlresponse' => 'string', 'parse_mode=' => 'int', ), - 'SolrUtils::escapeQueryChars' => + 'solrutils::escapequerychars' => array ( 0 => 'false|string', 'string' => 'string', ), - 'SolrUtils::getSolrVersion' => + 'solrutils::getsolrversion' => array ( 0 => 'string', ), - 'SolrUtils::queryPhrase' => + 'solrutils::queryphrase' => array ( 0 => 'string', 'string' => 'string', @@ -64767,18 +64767,18 @@ 0 => 'string', 'string' => 'string', ), - 'SphinxClient::__construct' => + 'sphinxclient::__construct' => array ( 0 => 'void', ), - 'SphinxClient::addQuery' => + 'sphinxclient::addquery' => array ( 0 => 'int', 'query' => 'string', 'index=' => 'string', 'comment=' => 'string', ), - 'SphinxClient::buildExcerpts' => + 'sphinxclient::buildexcerpts' => array ( 0 => 'array', 'docs' => 'array', @@ -64786,76 +64786,76 @@ 'words' => 'string', 'opts=' => 'array', ), - 'SphinxClient::buildKeywords' => + 'sphinxclient::buildkeywords' => array ( 0 => 'array', 'query' => 'string', 'index' => 'string', 'hits' => 'bool', ), - 'SphinxClient::close' => + 'sphinxclient::close' => array ( 0 => 'bool', ), - 'SphinxClient::escapeString' => + 'sphinxclient::escapestring' => array ( 0 => 'string', 'string' => 'string', ), - 'SphinxClient::getLastError' => + 'sphinxclient::getlasterror' => array ( 0 => 'string', ), - 'SphinxClient::getLastWarning' => + 'sphinxclient::getlastwarning' => array ( 0 => 'string', ), - 'SphinxClient::open' => + 'sphinxclient::open' => array ( 0 => 'bool', ), - 'SphinxClient::query' => + 'sphinxclient::query' => array ( 0 => 'array', 'query' => 'string', 'index=' => 'string', 'comment=' => 'string', ), - 'SphinxClient::resetFilters' => + 'sphinxclient::resetfilters' => array ( 0 => 'void', ), - 'SphinxClient::resetGroupBy' => + 'sphinxclient::resetgroupby' => array ( 0 => 'void', ), - 'SphinxClient::runQueries' => + 'sphinxclient::runqueries' => array ( 0 => 'array', ), - 'SphinxClient::setArrayResult' => + 'sphinxclient::setarrayresult' => array ( 0 => 'bool', 'array_result' => 'bool', ), - 'SphinxClient::setConnectTimeout' => + 'sphinxclient::setconnecttimeout' => array ( 0 => 'bool', 'timeout' => 'float', ), - 'SphinxClient::setFieldWeights' => + 'sphinxclient::setfieldweights' => array ( 0 => 'bool', 'weights' => 'array', ), - 'SphinxClient::setFilter' => + 'sphinxclient::setfilter' => array ( 0 => 'bool', 'attribute' => 'string', 'values' => 'array', 'exclude=' => 'bool', ), - 'SphinxClient::setFilterFloatRange' => + 'sphinxclient::setfilterfloatrange' => array ( 0 => 'bool', 'attribute' => 'string', @@ -64863,7 +64863,7 @@ 'max' => 'float', 'exclude=' => 'bool', ), - 'SphinxClient::setFilterRange' => + 'sphinxclient::setfilterrange' => array ( 0 => 'bool', 'attribute' => 'string', @@ -64871,7 +64871,7 @@ 'max' => 'int', 'exclude=' => 'bool', ), - 'SphinxClient::setGeoAnchor' => + 'sphinxclient::setgeoanchor' => array ( 0 => 'bool', 'attrlat' => 'string', @@ -64879,30 +64879,30 @@ 'latitude' => 'float', 'longitude' => 'float', ), - 'SphinxClient::setGroupBy' => + 'sphinxclient::setgroupby' => array ( 0 => 'bool', 'attribute' => 'string', 'func' => 'int', 'groupsort=' => 'string', ), - 'SphinxClient::setGroupDistinct' => + 'sphinxclient::setgroupdistinct' => array ( 0 => 'bool', 'attribute' => 'string', ), - 'SphinxClient::setIDRange' => + 'sphinxclient::setidrange' => array ( 0 => 'bool', 'min' => 'int', 'max' => 'int', ), - 'SphinxClient::setIndexWeights' => + 'sphinxclient::setindexweights' => array ( 0 => 'bool', 'weights' => 'array', ), - 'SphinxClient::setLimits' => + 'sphinxclient::setlimits' => array ( 0 => 'bool', 'offset' => 'int', @@ -64910,56 +64910,56 @@ 'max_matches=' => 'int', 'cutoff=' => 'int', ), - 'SphinxClient::setMatchMode' => + 'sphinxclient::setmatchmode' => array ( 0 => 'bool', 'mode' => 'int', ), - 'SphinxClient::setMaxQueryTime' => + 'sphinxclient::setmaxquerytime' => array ( 0 => 'bool', 'qtime' => 'int', ), - 'SphinxClient::setOverride' => + 'sphinxclient::setoverride' => array ( 0 => 'bool', 'attribute' => 'string', 'type' => 'int', 'values' => 'array', ), - 'SphinxClient::setRankingMode' => + 'sphinxclient::setrankingmode' => array ( 0 => 'bool', 'ranker' => 'int', ), - 'SphinxClient::setRetries' => + 'sphinxclient::setretries' => array ( 0 => 'bool', 'count' => 'int', 'delay=' => 'int', ), - 'SphinxClient::setSelect' => + 'sphinxclient::setselect' => array ( 0 => 'bool', 'clause' => 'string', ), - 'SphinxClient::setServer' => + 'sphinxclient::setserver' => array ( 0 => 'bool', 'server' => 'string', 'port' => 'int', ), - 'SphinxClient::setSortMode' => + 'sphinxclient::setsortmode' => array ( 0 => 'bool', 'mode' => 'int', 'sortby=' => 'string', ), - 'SphinxClient::status' => + 'sphinxclient::status' => array ( 0 => 'array', ), - 'SphinxClient::updateAttributes' => + 'sphinxclient::updateattributes' => array ( 0 => 'int', 'index' => 'string', @@ -65013,250 +65013,250 @@ 0 => 'int', 'object' => 'object', ), - 'SplDoublyLinkedList::__construct' => + 'spldoublylinkedlist::__construct' => array ( 0 => 'void', ), - 'SplDoublyLinkedList::add' => + 'spldoublylinkedlist::add' => array ( 0 => 'void', 'index' => 'int', 'value' => 'mixed', ), - 'SplDoublyLinkedList::bottom' => + 'spldoublylinkedlist::bottom' => array ( 0 => 'mixed', ), - 'SplDoublyLinkedList::count' => + 'spldoublylinkedlist::count' => array ( 0 => 'int', ), - 'SplDoublyLinkedList::current' => + 'spldoublylinkedlist::current' => array ( 0 => 'mixed', ), - 'SplDoublyLinkedList::getIteratorMode' => + 'spldoublylinkedlist::getiteratormode' => array ( 0 => 'int', ), - 'SplDoublyLinkedList::isEmpty' => + 'spldoublylinkedlist::isempty' => array ( 0 => 'bool', ), - 'SplDoublyLinkedList::key' => + 'spldoublylinkedlist::key' => array ( 0 => 'int', ), - 'SplDoublyLinkedList::next' => + 'spldoublylinkedlist::next' => array ( 0 => 'void', ), - 'SplDoublyLinkedList::offsetExists' => + 'spldoublylinkedlist::offsetexists' => array ( 0 => 'bool', 'index' => 'int', ), - 'SplDoublyLinkedList::offsetGet' => + 'spldoublylinkedlist::offsetget' => array ( 0 => 'mixed', 'index' => 'int', ), - 'SplDoublyLinkedList::offsetSet' => + 'spldoublylinkedlist::offsetset' => array ( 0 => 'void', 'index' => 'int|null', 'value' => 'mixed', ), - 'SplDoublyLinkedList::offsetUnset' => + 'spldoublylinkedlist::offsetunset' => array ( 0 => 'void', 'index' => 'int', ), - 'SplDoublyLinkedList::pop' => + 'spldoublylinkedlist::pop' => array ( 0 => 'mixed', ), - 'SplDoublyLinkedList::prev' => + 'spldoublylinkedlist::prev' => array ( 0 => 'void', ), - 'SplDoublyLinkedList::push' => + 'spldoublylinkedlist::push' => array ( 0 => 'void', 'value' => 'mixed', ), - 'SplDoublyLinkedList::rewind' => + 'spldoublylinkedlist::rewind' => array ( 0 => 'void', ), - 'SplDoublyLinkedList::serialize' => + 'spldoublylinkedlist::serialize' => array ( 0 => 'string', ), - 'SplDoublyLinkedList::setIteratorMode' => + 'spldoublylinkedlist::setiteratormode' => array ( 0 => 'int', 'mode' => 'int', ), - 'SplDoublyLinkedList::shift' => + 'spldoublylinkedlist::shift' => array ( 0 => 'mixed', ), - 'SplDoublyLinkedList::top' => + 'spldoublylinkedlist::top' => array ( 0 => 'mixed', ), - 'SplDoublyLinkedList::unserialize' => + 'spldoublylinkedlist::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'SplDoublyLinkedList::unshift' => + 'spldoublylinkedlist::unshift' => array ( 0 => 'void', 'value' => 'mixed', ), - 'SplDoublyLinkedList::valid' => + 'spldoublylinkedlist::valid' => array ( 0 => 'bool', ), - 'SplEnum::__construct' => + 'splenum::__construct' => array ( 0 => 'void', 'initial_value=' => 'mixed', 'strict=' => 'bool', ), - 'SplEnum::getConstList' => + 'splenum::getconstlist' => array ( 0 => 'array', 'include_default=' => 'bool', ), - 'SplFileInfo::__construct' => + 'splfileinfo::__construct' => array ( 0 => 'void', 'filename' => 'string', ), - 'SplFileInfo::__toString' => + 'splfileinfo::__tostring' => array ( 0 => 'string', ), - 'SplFileInfo::getATime' => + 'splfileinfo::getatime' => array ( 0 => 'false|int', ), - 'SplFileInfo::getBasename' => + 'splfileinfo::getbasename' => array ( 0 => 'string', 'suffix=' => 'string', ), - 'SplFileInfo::getCTime' => + 'splfileinfo::getctime' => array ( 0 => 'false|int', ), - 'SplFileInfo::getExtension' => + 'splfileinfo::getextension' => array ( 0 => 'string', ), - 'SplFileInfo::getFileInfo' => + 'splfileinfo::getfileinfo' => array ( 0 => 'SplFileInfo', 'class=' => 'class-string|null', ), - 'SplFileInfo::getFilename' => + 'splfileinfo::getfilename' => array ( 0 => 'string', ), - 'SplFileInfo::getGroup' => + 'splfileinfo::getgroup' => array ( 0 => 'false|int', ), - 'SplFileInfo::getInode' => + 'splfileinfo::getinode' => array ( 0 => 'false|int', ), - 'SplFileInfo::getLinkTarget' => + 'splfileinfo::getlinktarget' => array ( 0 => 'false|string', ), - 'SplFileInfo::getMTime' => + 'splfileinfo::getmtime' => array ( 0 => 'false|int', ), - 'SplFileInfo::getOwner' => + 'splfileinfo::getowner' => array ( 0 => 'false|int', ), - 'SplFileInfo::getPath' => + 'splfileinfo::getpath' => array ( 0 => 'string', ), - 'SplFileInfo::getPathInfo' => + 'splfileinfo::getpathinfo' => array ( 0 => 'SplFileInfo|null', 'class=' => 'class-string|null', ), - 'SplFileInfo::getPathname' => + 'splfileinfo::getpathname' => array ( 0 => 'string', ), - 'SplFileInfo::getPerms' => + 'splfileinfo::getperms' => array ( 0 => 'false|int', ), - 'SplFileInfo::getRealPath' => + 'splfileinfo::getrealpath' => array ( 0 => 'false|non-falsy-string', ), - 'SplFileInfo::getSize' => + 'splfileinfo::getsize' => array ( 0 => 'false|int', ), - 'SplFileInfo::getType' => + 'splfileinfo::gettype' => array ( 0 => 'false|string', ), - 'SplFileInfo::isDir' => + 'splfileinfo::isdir' => array ( 0 => 'bool', ), - 'SplFileInfo::isExecutable' => + 'splfileinfo::isexecutable' => array ( 0 => 'bool', ), - 'SplFileInfo::isFile' => + 'splfileinfo::isfile' => array ( 0 => 'bool', ), - 'SplFileInfo::isLink' => + 'splfileinfo::islink' => array ( 0 => 'bool', ), - 'SplFileInfo::isReadable' => + 'splfileinfo::isreadable' => array ( 0 => 'bool', ), - 'SplFileInfo::isWritable' => + 'splfileinfo::iswritable' => array ( 0 => 'bool', ), - 'SplFileInfo::openFile' => + 'splfileinfo::openfile' => array ( 0 => 'SplFileObject', 'mode=' => 'string', 'useIncludePath=' => 'bool', 'context=' => 'null|resource', ), - 'SplFileInfo::setFileClass' => + 'splfileinfo::setfileclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'SplFileInfo::setInfoClass' => + 'splfileinfo::setinfoclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'SplFileObject::__construct' => + 'splfileobject::__construct' => array ( 0 => 'void', 'filename' => 'string', @@ -65264,48 +65264,48 @@ 'useIncludePath=' => 'bool', 'context=' => 'null|resource', ), - 'SplFileObject::__toString' => + 'splfileobject::__tostring' => array ( 0 => 'string', ), - 'SplFileObject::current' => + 'splfileobject::current' => array ( 0 => 'array|false|string', ), - 'SplFileObject::eof' => + 'splfileobject::eof' => array ( 0 => 'bool', ), - 'SplFileObject::fflush' => + 'splfileobject::fflush' => array ( 0 => 'bool', ), - 'SplFileObject::fgetc' => + 'splfileobject::fgetc' => array ( 0 => 'false|string', ), - 'SplFileObject::fgetcsv' => + 'splfileobject::fgetcsv' => array ( 0 => 'array{0?: null|string, ..., string>}|false', 'separator=' => 'string', 'enclosure=' => 'string', 'escape=' => 'string', ), - 'SplFileObject::fgets' => + 'splfileobject::fgets' => array ( 0 => 'string', ), - 'SplFileObject::flock' => + 'splfileobject::flock' => array ( 0 => 'bool', 'operation' => 'int', '&w_wouldBlock=' => 'int', ), - 'SplFileObject::fpassthru' => + 'splfileobject::fpassthru' => array ( 0 => 'int', ), - 'SplFileObject::fputcsv' => + 'splfileobject::fputcsv' => array ( 0 => 'false|int', 'fields' => 'array', @@ -65314,841 +65314,841 @@ 'escape=' => 'string', 'eol=' => 'string', ), - 'SplFileObject::fread' => + 'splfileobject::fread' => array ( 0 => 'false|string', 'length' => 'int', ), - 'SplFileObject::fscanf' => + 'splfileobject::fscanf' => array ( 0 => 'array|int|null', 'format' => 'string', '&...w_vars=' => 'float|int|string', ), - 'SplFileObject::fseek' => + 'splfileobject::fseek' => array ( 0 => 'int', 'offset' => 'int', 'whence=' => 'int', ), - 'SplFileObject::fstat' => + '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' => + 'splfileobject::ftell' => array ( 0 => 'false|int', ), - 'SplFileObject::ftruncate' => + 'splfileobject::ftruncate' => array ( 0 => 'bool', 'size' => 'int', ), - 'SplFileObject::fwrite' => + 'splfileobject::fwrite' => array ( 0 => 'false|int', 'data' => 'string', 'length=' => 'int', ), - 'SplFileObject::getATime' => + 'splfileobject::getatime' => array ( 0 => 'false|int', ), - 'SplFileObject::getBasename' => + 'splfileobject::getbasename' => array ( 0 => 'string', 'suffix=' => 'string', ), - 'SplFileObject::getChildren' => + 'splfileobject::getchildren' => array ( 0 => 'null', ), - 'SplFileObject::getCsvControl' => + 'splfileobject::getcsvcontrol' => array ( 0 => 'array', ), - 'SplFileObject::getCTime' => + 'splfileobject::getctime' => array ( 0 => 'false|int', ), - 'SplFileObject::getCurrentLine' => + 'splfileobject::getcurrentline' => array ( 0 => 'string', ), - 'SplFileObject::getExtension' => + 'splfileobject::getextension' => array ( 0 => 'string', ), - 'SplFileObject::getFileInfo' => + 'splfileobject::getfileinfo' => array ( 0 => 'SplFileInfo', 'class=' => 'class-string|null', ), - 'SplFileObject::getFilename' => + 'splfileobject::getfilename' => array ( 0 => 'string', ), - 'SplFileObject::getFlags' => + 'splfileobject::getflags' => array ( 0 => 'int', ), - 'SplFileObject::getGroup' => + 'splfileobject::getgroup' => array ( 0 => 'false|int', ), - 'SplFileObject::getInode' => + 'splfileobject::getinode' => array ( 0 => 'false|int', ), - 'SplFileObject::getLinkTarget' => + 'splfileobject::getlinktarget' => array ( 0 => 'false|string', ), - 'SplFileObject::getMaxLineLen' => + 'splfileobject::getmaxlinelen' => array ( 0 => 'int', ), - 'SplFileObject::getMTime' => + 'splfileobject::getmtime' => array ( 0 => 'false|int', ), - 'SplFileObject::getOwner' => + 'splfileobject::getowner' => array ( 0 => 'false|int', ), - 'SplFileObject::getPath' => + 'splfileobject::getpath' => array ( 0 => 'string', ), - 'SplFileObject::getPathInfo' => + 'splfileobject::getpathinfo' => array ( 0 => 'SplFileInfo|null', 'class=' => 'class-string|null', ), - 'SplFileObject::getPathname' => + 'splfileobject::getpathname' => array ( 0 => 'string', ), - 'SplFileObject::getPerms' => + 'splfileobject::getperms' => array ( 0 => 'false|int', ), - 'SplFileObject::getRealPath' => + 'splfileobject::getrealpath' => array ( 0 => 'false|non-falsy-string', ), - 'SplFileObject::getSize' => + 'splfileobject::getsize' => array ( 0 => 'false|int', ), - 'SplFileObject::getType' => + 'splfileobject::gettype' => array ( 0 => 'false|string', ), - 'SplFileObject::hasChildren' => + 'splfileobject::haschildren' => array ( 0 => 'false', ), - 'SplFileObject::isDir' => + 'splfileobject::isdir' => array ( 0 => 'bool', ), - 'SplFileObject::isExecutable' => + 'splfileobject::isexecutable' => array ( 0 => 'bool', ), - 'SplFileObject::isFile' => + 'splfileobject::isfile' => array ( 0 => 'bool', ), - 'SplFileObject::isLink' => + 'splfileobject::islink' => array ( 0 => 'bool', ), - 'SplFileObject::isReadable' => + 'splfileobject::isreadable' => array ( 0 => 'bool', ), - 'SplFileObject::isWritable' => + 'splfileobject::iswritable' => array ( 0 => 'bool', ), - 'SplFileObject::key' => + 'splfileobject::key' => array ( 0 => 'int', ), - 'SplFileObject::next' => + 'splfileobject::next' => array ( 0 => 'void', ), - 'SplFileObject::openFile' => + 'splfileobject::openfile' => array ( 0 => 'SplFileObject', 'mode=' => 'string', 'useIncludePath=' => 'bool', 'context=' => 'null|resource', ), - 'SplFileObject::rewind' => + 'splfileobject::rewind' => array ( 0 => 'void', ), - 'SplFileObject::seek' => + 'splfileobject::seek' => array ( 0 => 'void', 'line' => 'int', ), - 'SplFileObject::setCsvControl' => + 'splfileobject::setcsvcontrol' => array ( 0 => 'void', 'separator=' => 'string', 'enclosure=' => 'string', 'escape=' => 'string', ), - 'SplFileObject::setFileClass' => + 'splfileobject::setfileclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'SplFileObject::setFlags' => + 'splfileobject::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'SplFileObject::setInfoClass' => + 'splfileobject::setinfoclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'SplFileObject::setMaxLineLen' => + 'splfileobject::setmaxlinelen' => array ( 0 => 'void', 'maxLength' => 'int', ), - 'SplFileObject::valid' => + 'splfileobject::valid' => array ( 0 => 'bool', ), - 'SplFixedArray::__construct' => + 'splfixedarray::__construct' => array ( 0 => 'void', 'size=' => 'int', ), - 'SplFixedArray::__wakeup' => + 'splfixedarray::__wakeup' => array ( 0 => 'void', ), - 'SplFixedArray::count' => + 'splfixedarray::count' => array ( 0 => 'int', ), - 'SplFixedArray::fromArray' => + 'splfixedarray::fromarray' => array ( 0 => 'SplFixedArray', 'array' => 'array', 'preserveKeys=' => 'bool', ), - 'SplFixedArray::getIterator' => + 'splfixedarray::getiterator' => array ( 0 => 'Iterator', ), - 'SplFixedArray::getSize' => + 'splfixedarray::getsize' => array ( 0 => 'int', ), - 'SplFixedArray::offsetExists' => + 'splfixedarray::offsetexists' => array ( 0 => 'bool', 'index' => 'int', ), - 'SplFixedArray::offsetGet' => + 'splfixedarray::offsetget' => array ( 0 => 'mixed', 'index' => 'int', ), - 'SplFixedArray::offsetSet' => + 'splfixedarray::offsetset' => array ( 0 => 'void', 'index' => 'int', 'value' => 'mixed', ), - 'SplFixedArray::offsetUnset' => + 'splfixedarray::offsetunset' => array ( 0 => 'void', 'index' => 'int', ), - 'SplFixedArray::setSize' => + 'splfixedarray::setsize' => array ( 0 => 'true', 'size' => 'int', ), - 'SplFixedArray::toArray' => + 'splfixedarray::toarray' => array ( 0 => 'array', ), - 'SplHeap::__construct' => + 'splheap::__construct' => array ( 0 => 'void', ), - 'SplHeap::compare' => + 'splheap::compare' => array ( 0 => 'int', 'value1' => 'mixed', 'value2' => 'mixed', ), - 'SplHeap::count' => + 'splheap::count' => array ( 0 => 'int', ), - 'SplHeap::current' => + 'splheap::current' => array ( 0 => 'mixed', ), - 'SplHeap::extract' => + 'splheap::extract' => array ( 0 => 'mixed', ), - 'SplHeap::insert' => + 'splheap::insert' => array ( 0 => 'true', 'value' => 'mixed', ), - 'SplHeap::isCorrupted' => + 'splheap::iscorrupted' => array ( 0 => 'bool', ), - 'SplHeap::isEmpty' => + 'splheap::isempty' => array ( 0 => 'bool', ), - 'SplHeap::key' => + 'splheap::key' => array ( 0 => 'int', ), - 'SplHeap::next' => + 'splheap::next' => array ( 0 => 'void', ), - 'SplHeap::recoverFromCorruption' => + 'splheap::recoverfromcorruption' => array ( 0 => 'true', ), - 'SplHeap::rewind' => + 'splheap::rewind' => array ( 0 => 'void', ), - 'SplHeap::top' => + 'splheap::top' => array ( 0 => 'mixed', ), - 'SplHeap::valid' => + 'splheap::valid' => array ( 0 => 'bool', ), - 'SplMaxHeap::__construct' => + 'splmaxheap::__construct' => array ( 0 => 'void', ), - 'SplMaxHeap::compare' => + 'splmaxheap::compare' => array ( 0 => 'int', 'value1' => 'mixed', 'value2' => 'mixed', ), - 'SplMinHeap::compare' => + 'splminheap::compare' => array ( 0 => 'int', 'value1' => 'mixed', 'value2' => 'mixed', ), - 'SplMinHeap::count' => + 'splminheap::count' => array ( 0 => 'int', ), - 'SplMinHeap::current' => + 'splminheap::current' => array ( 0 => 'mixed', ), - 'SplMinHeap::extract' => + 'splminheap::extract' => array ( 0 => 'mixed', ), - 'SplMinHeap::insert' => + 'splminheap::insert' => array ( 0 => 'true', 'value' => 'mixed', ), - 'SplMinHeap::isCorrupted' => + 'splminheap::iscorrupted' => array ( 0 => 'bool', ), - 'SplMinHeap::isEmpty' => + 'splminheap::isempty' => array ( 0 => 'bool', ), - 'SplMinHeap::key' => + 'splminheap::key' => array ( 0 => 'int', ), - 'SplMinHeap::next' => + 'splminheap::next' => array ( 0 => 'void', ), - 'SplMinHeap::recoverFromCorruption' => + 'splminheap::recoverfromcorruption' => array ( 0 => 'true', ), - 'SplMinHeap::rewind' => + 'splminheap::rewind' => array ( 0 => 'void', ), - 'SplMinHeap::top' => + 'splminheap::top' => array ( 0 => 'mixed', ), - 'SplMinHeap::valid' => + 'splminheap::valid' => array ( 0 => 'bool', ), - 'SplObjectStorage::__construct' => + 'splobjectstorage::__construct' => array ( 0 => 'void', ), - 'SplObjectStorage::addAll' => + 'splobjectstorage::addall' => array ( 0 => 'int', 'storage' => 'SplObjectStorage', ), - 'SplObjectStorage::attach' => + 'splobjectstorage::attach' => array ( 0 => 'void', 'object' => 'object', 'info=' => 'mixed', ), - 'SplObjectStorage::contains' => + 'splobjectstorage::contains' => array ( 0 => 'bool', 'object' => 'object', ), - 'SplObjectStorage::count' => + 'splobjectstorage::count' => array ( 0 => 'int', 'mode=' => 'int', ), - 'SplObjectStorage::current' => + 'splobjectstorage::current' => array ( 0 => 'object', ), - 'SplObjectStorage::detach' => + 'splobjectstorage::detach' => array ( 0 => 'void', 'object' => 'object', ), - 'SplObjectStorage::getHash' => + 'splobjectstorage::gethash' => array ( 0 => 'string', 'object' => 'object', ), - 'SplObjectStorage::getInfo' => + 'splobjectstorage::getinfo' => array ( 0 => 'mixed', ), - 'SplObjectStorage::key' => + 'splobjectstorage::key' => array ( 0 => 'int', ), - 'SplObjectStorage::next' => + 'splobjectstorage::next' => array ( 0 => 'void', ), - 'SplObjectStorage::offsetExists' => + 'splobjectstorage::offsetexists' => array ( 0 => 'bool', 'object' => 'object', ), - 'SplObjectStorage::offsetGet' => + 'splobjectstorage::offsetget' => array ( 0 => 'mixed', 'object' => 'object', ), - 'SplObjectStorage::offsetSet' => + 'splobjectstorage::offsetset' => array ( 0 => 'void', 'object' => 'object', 'info=' => 'mixed', ), - 'SplObjectStorage::offsetUnset' => + 'splobjectstorage::offsetunset' => array ( 0 => 'void', 'object' => 'object', ), - 'SplObjectStorage::removeAll' => + 'splobjectstorage::removeall' => array ( 0 => 'int', 'storage' => 'SplObjectStorage', ), - 'SplObjectStorage::removeAllExcept' => + 'splobjectstorage::removeallexcept' => array ( 0 => 'int', 'storage' => 'SplObjectStorage', ), - 'SplObjectStorage::rewind' => + 'splobjectstorage::rewind' => array ( 0 => 'void', ), - 'SplObjectStorage::serialize' => + 'splobjectstorage::serialize' => array ( 0 => 'string', ), - 'SplObjectStorage::setInfo' => + 'splobjectstorage::setinfo' => array ( 0 => 'void', 'info' => 'mixed', ), - 'SplObjectStorage::unserialize' => + 'splobjectstorage::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'SplObjectStorage::valid' => + 'splobjectstorage::valid' => array ( 0 => 'bool', ), - 'SplObserver::update' => + 'splobserver::update' => array ( 0 => 'void', 'subject' => 'SplSubject', ), - 'SplPriorityQueue::__construct' => + 'splpriorityqueue::__construct' => array ( 0 => 'void', ), - 'SplPriorityQueue::compare' => + 'splpriorityqueue::compare' => array ( 0 => 'int', 'priority1' => 'mixed', 'priority2' => 'mixed', ), - 'SplPriorityQueue::count' => + 'splpriorityqueue::count' => array ( 0 => 'int', ), - 'SplPriorityQueue::current' => + 'splpriorityqueue::current' => array ( 0 => 'mixed', ), - 'SplPriorityQueue::extract' => + 'splpriorityqueue::extract' => array ( 0 => 'mixed', ), - 'SplPriorityQueue::getExtractFlags' => + 'splpriorityqueue::getextractflags' => array ( 0 => 'int', ), - 'SplPriorityQueue::insert' => + 'splpriorityqueue::insert' => array ( 0 => 'true', 'value' => 'mixed', 'priority' => 'mixed', ), - 'SplPriorityQueue::isCorrupted' => + 'splpriorityqueue::iscorrupted' => array ( 0 => 'bool', ), - 'SplPriorityQueue::isEmpty' => + 'splpriorityqueue::isempty' => array ( 0 => 'bool', ), - 'SplPriorityQueue::key' => + 'splpriorityqueue::key' => array ( 0 => 'int', ), - 'SplPriorityQueue::next' => + 'splpriorityqueue::next' => array ( 0 => 'void', ), - 'SplPriorityQueue::recoverFromCorruption' => + 'splpriorityqueue::recoverfromcorruption' => array ( 0 => 'true', ), - 'SplPriorityQueue::rewind' => + 'splpriorityqueue::rewind' => array ( 0 => 'void', ), - 'SplPriorityQueue::setExtractFlags' => + 'splpriorityqueue::setextractflags' => array ( 0 => 'int', 'flags' => 'int', ), - 'SplPriorityQueue::top' => + 'splpriorityqueue::top' => array ( 0 => 'mixed', ), - 'SplPriorityQueue::valid' => + 'splpriorityqueue::valid' => array ( 0 => 'bool', ), - 'SplQueue::dequeue' => + 'splqueue::dequeue' => array ( 0 => 'mixed', ), - 'SplQueue::enqueue' => + 'splqueue::enqueue' => array ( 0 => 'void', 'value' => 'mixed', ), - 'SplQueue::getIteratorMode' => + 'splqueue::getiteratormode' => array ( 0 => 'int', ), - 'SplQueue::isEmpty' => + 'splqueue::isempty' => array ( 0 => 'bool', ), - 'SplQueue::key' => + 'splqueue::key' => array ( 0 => 'int', ), - 'SplQueue::next' => + 'splqueue::next' => array ( 0 => 'void', ), - 'SplQueue::offsetExists' => + 'splqueue::offsetexists' => array ( 0 => 'bool', 'index' => 'mixed', ), - 'SplQueue::offsetGet' => + 'splqueue::offsetget' => array ( 0 => 'mixed', 'index' => 'mixed', ), - 'SplQueue::offsetSet' => + 'splqueue::offsetset' => array ( 0 => 'void', 'index' => 'int|null', 'value' => 'mixed', ), - 'SplQueue::offsetUnset' => + 'splqueue::offsetunset' => array ( 0 => 'void', 'index' => 'mixed', ), - 'SplQueue::pop' => + 'splqueue::pop' => array ( 0 => 'mixed', ), - 'SplQueue::prev' => + 'splqueue::prev' => array ( 0 => 'void', ), - 'SplQueue::push' => + 'splqueue::push' => array ( 0 => 'void', 'value' => 'mixed', ), - 'SplQueue::rewind' => + 'splqueue::rewind' => array ( 0 => 'void', ), - 'SplQueue::serialize' => + 'splqueue::serialize' => array ( 0 => 'string', ), - 'SplQueue::setIteratorMode' => + 'splqueue::setiteratormode' => array ( 0 => 'int', 'mode' => 'int', ), - 'SplQueue::shift' => + 'splqueue::shift' => array ( 0 => 'mixed', ), - 'SplQueue::top' => + 'splqueue::top' => array ( 0 => 'mixed', ), - 'SplQueue::unserialize' => + 'splqueue::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'SplQueue::unshift' => + 'splqueue::unshift' => array ( 0 => 'void', 'value' => 'mixed', ), - 'SplQueue::valid' => + 'splqueue::valid' => array ( 0 => 'bool', ), - 'SplStack::__construct' => + 'splstack::__construct' => array ( 0 => 'void', ), - 'SplStack::add' => + 'splstack::add' => array ( 0 => 'void', 'index' => 'int', 'value' => 'mixed', ), - 'SplStack::bottom' => + 'splstack::bottom' => array ( 0 => 'mixed', ), - 'SplStack::count' => + 'splstack::count' => array ( 0 => 'int', ), - 'SplStack::current' => + 'splstack::current' => array ( 0 => 'mixed', ), - 'SplStack::getIteratorMode' => + 'splstack::getiteratormode' => array ( 0 => 'int', ), - 'SplStack::isEmpty' => + 'splstack::isempty' => array ( 0 => 'bool', ), - 'SplStack::key' => + 'splstack::key' => array ( 0 => 'int', ), - 'SplStack::next' => + 'splstack::next' => array ( 0 => 'void', ), - 'SplStack::offsetExists' => + 'splstack::offsetexists' => array ( 0 => 'bool', 'index' => 'mixed', ), - 'SplStack::offsetGet' => + 'splstack::offsetget' => array ( 0 => 'mixed', 'index' => 'mixed', ), - 'SplStack::offsetSet' => + 'splstack::offsetset' => array ( 0 => 'void', 'index' => 'int|null', 'value' => 'mixed', ), - 'SplStack::offsetUnset' => + 'splstack::offsetunset' => array ( 0 => 'void', 'index' => 'mixed', ), - 'SplStack::pop' => + 'splstack::pop' => array ( 0 => 'mixed', ), - 'SplStack::prev' => + 'splstack::prev' => array ( 0 => 'void', ), - 'SplStack::push' => + 'splstack::push' => array ( 0 => 'void', 'value' => 'mixed', ), - 'SplStack::rewind' => + 'splstack::rewind' => array ( 0 => 'void', ), - 'SplStack::serialize' => + 'splstack::serialize' => array ( 0 => 'string', ), - 'SplStack::setIteratorMode' => + 'splstack::setiteratormode' => array ( 0 => 'int', 'mode' => 'int', ), - 'SplStack::shift' => + 'splstack::shift' => array ( 0 => 'mixed', ), - 'SplStack::top' => + 'splstack::top' => array ( 0 => 'mixed', ), - 'SplStack::unserialize' => + 'splstack::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'SplStack::unshift' => + 'splstack::unshift' => array ( 0 => 'void', 'value' => 'mixed', ), - 'SplStack::valid' => + 'splstack::valid' => array ( 0 => 'bool', ), - 'SplSubject::attach' => + 'splsubject::attach' => array ( 0 => 'void', 'observer' => 'SplObserver', ), - 'SplSubject::detach' => + 'splsubject::detach' => array ( 0 => 'void', 'observer' => 'SplObserver', ), - 'SplSubject::notify' => + 'splsubject::notify' => array ( 0 => 'void', ), - 'SplTempFileObject::__construct' => + 'spltempfileobject::__construct' => array ( 0 => 'void', 'maxMemory=' => 'int', ), - 'SplTempFileObject::__toString' => + 'spltempfileobject::__tostring' => array ( 0 => 'string', ), - 'SplTempFileObject::current' => + 'spltempfileobject::current' => array ( 0 => 'array|false|string', ), - 'SplTempFileObject::eof' => + 'spltempfileobject::eof' => array ( 0 => 'bool', ), - 'SplTempFileObject::fflush' => + 'spltempfileobject::fflush' => array ( 0 => 'bool', ), - 'SplTempFileObject::fgetc' => + 'spltempfileobject::fgetc' => array ( 0 => 'false|string', ), - 'SplTempFileObject::fgetcsv' => + 'spltempfileobject::fgetcsv' => array ( 0 => 'array{0?: null|string, ..., string>}|false', 'separator=' => 'string', 'enclosure=' => 'string', 'escape=' => 'string', ), - 'SplTempFileObject::fgets' => + 'spltempfileobject::fgets' => array ( 0 => 'string', ), - 'SplTempFileObject::flock' => + 'spltempfileobject::flock' => array ( 0 => 'bool', 'operation' => 'int', '&w_wouldBlock=' => 'int', ), - 'SplTempFileObject::fpassthru' => + 'spltempfileobject::fpassthru' => array ( 0 => 'int', ), - 'SplTempFileObject::fputcsv' => + 'spltempfileobject::fputcsv' => array ( 0 => 'false|int', 'fields' => 'array', @@ -66157,254 +66157,254 @@ 'escape=' => 'string', 'eol=' => 'string', ), - 'SplTempFileObject::fread' => + 'spltempfileobject::fread' => array ( 0 => 'false|string', 'length' => 'int', ), - 'SplTempFileObject::fscanf' => + 'spltempfileobject::fscanf' => array ( 0 => 'array|int|null', 'format' => 'string', '&...w_vars=' => 'float|int|string', ), - 'SplTempFileObject::fseek' => + 'spltempfileobject::fseek' => array ( 0 => 'int', 'offset' => 'int', 'whence=' => 'int', ), - 'SplTempFileObject::fstat' => + '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' => + 'spltempfileobject::ftell' => array ( 0 => 'false|int', ), - 'SplTempFileObject::ftruncate' => + 'spltempfileobject::ftruncate' => array ( 0 => 'bool', 'size' => 'int', ), - 'SplTempFileObject::fwrite' => + 'spltempfileobject::fwrite' => array ( 0 => 'false|int', 'data' => 'string', 'length=' => 'int', ), - 'SplTempFileObject::getATime' => + 'spltempfileobject::getatime' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getBasename' => + 'spltempfileobject::getbasename' => array ( 0 => 'string', 'suffix=' => 'string', ), - 'SplTempFileObject::getChildren' => + 'spltempfileobject::getchildren' => array ( 0 => 'null', ), - 'SplTempFileObject::getCsvControl' => + 'spltempfileobject::getcsvcontrol' => array ( 0 => 'array', ), - 'SplTempFileObject::getCTime' => + 'spltempfileobject::getctime' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getCurrentLine' => + 'spltempfileobject::getcurrentline' => array ( 0 => 'string', ), - 'SplTempFileObject::getExtension' => + 'spltempfileobject::getextension' => array ( 0 => 'string', ), - 'SplTempFileObject::getFileInfo' => + 'spltempfileobject::getfileinfo' => array ( 0 => 'SplFileInfo', 'class=' => 'class-string|null', ), - 'SplTempFileObject::getFilename' => + 'spltempfileobject::getfilename' => array ( 0 => 'string', ), - 'SplTempFileObject::getFlags' => + 'spltempfileobject::getflags' => array ( 0 => 'int', ), - 'SplTempFileObject::getGroup' => + 'spltempfileobject::getgroup' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getInode' => + 'spltempfileobject::getinode' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getLinkTarget' => + 'spltempfileobject::getlinktarget' => array ( 0 => 'false|string', ), - 'SplTempFileObject::getMaxLineLen' => + 'spltempfileobject::getmaxlinelen' => array ( 0 => 'int', ), - 'SplTempFileObject::getMTime' => + 'spltempfileobject::getmtime' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getOwner' => + 'spltempfileobject::getowner' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getPath' => + 'spltempfileobject::getpath' => array ( 0 => 'string', ), - 'SplTempFileObject::getPathInfo' => + 'spltempfileobject::getpathinfo' => array ( 0 => 'SplFileInfo|null', 'class=' => 'class-string|null', ), - 'SplTempFileObject::getPathname' => + 'spltempfileobject::getpathname' => array ( 0 => 'string', ), - 'SplTempFileObject::getPerms' => + 'spltempfileobject::getperms' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getRealPath' => + 'spltempfileobject::getrealpath' => array ( 0 => 'false|non-falsy-string', ), - 'SplTempFileObject::getSize' => + 'spltempfileobject::getsize' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getType' => + 'spltempfileobject::gettype' => array ( 0 => 'false|string', ), - 'SplTempFileObject::hasChildren' => + 'spltempfileobject::haschildren' => array ( 0 => 'false', ), - 'SplTempFileObject::isDir' => + 'spltempfileobject::isdir' => array ( 0 => 'bool', ), - 'SplTempFileObject::isExecutable' => + 'spltempfileobject::isexecutable' => array ( 0 => 'bool', ), - 'SplTempFileObject::isFile' => + 'spltempfileobject::isfile' => array ( 0 => 'bool', ), - 'SplTempFileObject::isLink' => + 'spltempfileobject::islink' => array ( 0 => 'bool', ), - 'SplTempFileObject::isReadable' => + 'spltempfileobject::isreadable' => array ( 0 => 'bool', ), - 'SplTempFileObject::isWritable' => + 'spltempfileobject::iswritable' => array ( 0 => 'bool', ), - 'SplTempFileObject::key' => + 'spltempfileobject::key' => array ( 0 => 'int', ), - 'SplTempFileObject::next' => + 'spltempfileobject::next' => array ( 0 => 'void', ), - 'SplTempFileObject::openFile' => + 'spltempfileobject::openfile' => array ( 0 => 'SplTempFileObject', 'mode=' => 'string', 'useIncludePath=' => 'bool', 'context=' => 'null|resource', ), - 'SplTempFileObject::rewind' => + 'spltempfileobject::rewind' => array ( 0 => 'void', ), - 'SplTempFileObject::seek' => + 'spltempfileobject::seek' => array ( 0 => 'void', 'line' => 'int', ), - 'SplTempFileObject::setCsvControl' => + 'spltempfileobject::setcsvcontrol' => array ( 0 => 'void', 'separator=' => 'string', 'enclosure=' => 'string', 'escape=' => 'string', ), - 'SplTempFileObject::setFileClass' => + 'spltempfileobject::setfileclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'SplTempFileObject::setFlags' => + 'spltempfileobject::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'SplTempFileObject::setInfoClass' => + 'spltempfileobject::setinfoclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'SplTempFileObject::setMaxLineLen' => + 'spltempfileobject::setmaxlinelen' => array ( 0 => 'void', 'maxLength' => 'int', ), - 'SplTempFileObject::valid' => + 'spltempfileobject::valid' => array ( 0 => 'bool', ), - 'SplType::__construct' => + 'spltype::__construct' => array ( 0 => 'void', 'initial_value=' => 'mixed', 'strict=' => 'bool', ), - 'Spoofchecker::__construct' => + 'spoofchecker::__construct' => array ( 0 => 'void', ), - 'Spoofchecker::areConfusable' => + 'spoofchecker::areconfusable' => array ( 0 => 'bool', 'string1' => 'string', 'string2' => 'string', '&w_errorCode=' => 'int', ), - 'Spoofchecker::isSuspicious' => + 'spoofchecker::issuspicious' => array ( 0 => 'bool', 'string' => 'string', '&w_errorCode=' => 'int', ), - 'Spoofchecker::setAllowedLocales' => + 'spoofchecker::setallowedlocales' => array ( 0 => 'void', 'locales' => 'string', ), - 'Spoofchecker::setChecks' => + 'spoofchecker::setchecks' => array ( 0 => 'void', 'checks' => 'int', ), - 'Spoofchecker::setRestrictionLevel' => + 'spoofchecker::setrestrictionlevel' => array ( 0 => 'void', 'level' => 'int', @@ -66415,27 +66415,27 @@ 'format' => 'string', '...values=' => 'float|int|string', ), - 'SQLite3::__construct' => + 'sqlite3::__construct' => array ( 0 => 'void', 'filename' => 'string', 'flags=' => 'int', 'encryptionKey=' => 'string', ), - 'SQLite3::busyTimeout' => + 'sqlite3::busytimeout' => array ( 0 => 'bool', 'milliseconds' => 'int', ), - 'SQLite3::changes' => + 'sqlite3::changes' => array ( 0 => 'int', ), - 'SQLite3::close' => + 'sqlite3::close' => array ( 0 => 'bool', ), - 'SQLite3::createAggregate' => + 'sqlite3::createaggregate' => array ( 0 => 'bool', 'name' => 'string', @@ -66443,13 +66443,13 @@ 'finalCallback' => 'callable', 'argCount=' => 'int', ), - 'SQLite3::createCollation' => + 'sqlite3::createcollation' => array ( 0 => 'bool', 'name' => 'string', 'callback' => 'callable', ), - 'SQLite3::createFunction' => + 'sqlite3::createfunction' => array ( 0 => 'bool', 'name' => 'string', @@ -66457,46 +66457,46 @@ 'argCount=' => 'int', 'flags=' => 'int', ), - 'SQLite3::enableExceptions' => + 'sqlite3::enableexceptions' => array ( 0 => 'bool', 'enable=' => 'bool', ), - 'SQLite3::escapeString' => + 'sqlite3::escapestring' => array ( 0 => 'string', 'string' => 'string', ), - 'SQLite3::exec' => + 'sqlite3::exec' => array ( 0 => 'bool', 'query' => 'string', ), - 'SQLite3::lastErrorCode' => + 'sqlite3::lasterrorcode' => array ( 0 => 'int', ), - 'SQLite3::lastErrorMsg' => + 'sqlite3::lasterrormsg' => array ( 0 => 'string', ), - 'SQLite3::lastInsertRowID' => + 'sqlite3::lastinsertrowid' => array ( 0 => 'int', ), - 'SQLite3::loadExtension' => + 'sqlite3::loadextension' => array ( 0 => 'bool', 'name' => 'string', ), - 'SQLite3::open' => + 'sqlite3::open' => array ( 0 => 'void', 'filename' => 'string', 'flags=' => 'int', 'encryptionKey=' => 'string', ), - 'SQLite3::openBlob' => + 'sqlite3::openblob' => array ( 0 => 'false|resource', 'table' => 'string', @@ -66505,103 +66505,103 @@ 'database=' => 'string', 'flags=' => 'int', ), - 'SQLite3::prepare' => + 'sqlite3::prepare' => array ( 0 => 'SQLite3Stmt|false', 'query' => 'string', ), - 'SQLite3::query' => + 'sqlite3::query' => array ( 0 => 'SQLite3Result|false', 'query' => 'string', ), - 'SQLite3::querySingle' => + 'sqlite3::querysingle' => array ( 0 => 'array|null|scalar', 'query' => 'string', 'entireRow=' => 'bool', ), - 'SQLite3::version' => + 'sqlite3::version' => array ( 0 => 'array', ), - 'SQLite3Result::__construct' => + 'sqlite3result::__construct' => array ( 0 => 'void', ), - 'SQLite3Result::columnName' => + 'sqlite3result::columnname' => array ( 0 => 'string', 'column' => 'int', ), - 'SQLite3Result::columnType' => + 'sqlite3result::columntype' => array ( 0 => 'int', 'column' => 'int', ), - 'SQLite3Result::fetchArray' => + 'sqlite3result::fetcharray' => array ( 0 => 'array|false', 'mode=' => 'int', ), - 'SQLite3Result::finalize' => + 'sqlite3result::finalize' => array ( 0 => 'true', ), - 'SQLite3Result::numColumns' => + 'sqlite3result::numcolumns' => array ( 0 => 'int', ), - 'SQLite3Result::reset' => + 'sqlite3result::reset' => array ( 0 => 'bool', ), - 'SQLite3Stmt::__construct' => + 'sqlite3stmt::__construct' => array ( 0 => 'void', 'sqlite3' => 'sqlite3', 'query' => 'string', ), - 'SQLite3Stmt::bindParam' => + 'sqlite3stmt::bindparam' => array ( 0 => 'bool', 'param' => 'int|string', '&rw_var' => 'mixed', 'type=' => 'int', ), - 'SQLite3Stmt::bindValue' => + 'sqlite3stmt::bindvalue' => array ( 0 => 'bool', 'param' => 'int|string', 'value' => 'mixed', 'type=' => 'int', ), - 'SQLite3Stmt::clear' => + 'sqlite3stmt::clear' => array ( 0 => 'bool', ), - 'SQLite3Stmt::close' => + 'sqlite3stmt::close' => array ( 0 => 'true', ), - 'SQLite3Stmt::execute' => + 'sqlite3stmt::execute' => array ( 0 => 'SQLite3Result|false', ), - 'SQLite3Stmt::getSQL' => + 'sqlite3stmt::getsql' => array ( 0 => 'string', 'expand=' => 'bool', ), - 'SQLite3Stmt::paramCount' => + 'sqlite3stmt::paramcount' => array ( 0 => 'int', ), - 'SQLite3Stmt::readOnly' => + 'sqlite3stmt::readonly' => array ( 0 => 'bool', ), - 'SQLite3Stmt::reset' => + 'sqlite3stmt::reset' => array ( 0 => 'bool', ), @@ -66848,30 +66848,30 @@ 0 => 'bool', 'result' => 'resource', ), - 'SQLiteDatabase::__construct' => + 'sqlitedatabase::__construct' => array ( 0 => 'void', 'filename' => 'mixed', 'mode=' => 'int|mixed', '&error_message' => 'mixed', ), - 'SQLiteDatabase::arrayQuery' => + 'sqlitedatabase::arrayquery' => array ( 0 => 'array', 'query' => 'string', 'result_type=' => 'int', 'decode_binary=' => 'bool', ), - 'SQLiteDatabase::busyTimeout' => + 'sqlitedatabase::busytimeout' => array ( 0 => 'int', 'milliseconds' => 'int', ), - 'SQLiteDatabase::changes' => + 'sqlitedatabase::changes' => array ( 0 => 'int', ), - 'SQLiteDatabase::createAggregate' => + 'sqlitedatabase::createaggregate' => array ( 0 => 'mixed', 'function_name' => 'string', @@ -66879,243 +66879,243 @@ 'finalize_func' => 'callable', 'num_args=' => 'int', ), - 'SQLiteDatabase::createFunction' => + 'sqlitedatabase::createfunction' => array ( 0 => 'mixed', 'function_name' => 'string', 'callback' => 'callable', 'num_args=' => 'int', ), - 'SQLiteDatabase::exec' => + 'sqlitedatabase::exec' => array ( 0 => 'bool', 'query' => 'string', 'error_msg=' => 'string', ), - 'SQLiteDatabase::fetchColumnTypes' => + 'sqlitedatabase::fetchcolumntypes' => array ( 0 => 'array', 'table_name' => 'string', 'result_type=' => 'int', ), - 'SQLiteDatabase::lastError' => + 'sqlitedatabase::lasterror' => array ( 0 => 'int', ), - 'SQLiteDatabase::lastInsertRowid' => + 'sqlitedatabase::lastinsertrowid' => array ( 0 => 'int', ), - 'SQLiteDatabase::query' => + 'sqlitedatabase::query' => array ( 0 => 'SQLiteResult|false', 'query' => 'string', 'result_type=' => 'int', 'error_msg=' => 'string', ), - 'SQLiteDatabase::queryExec' => + 'sqlitedatabase::queryexec' => array ( 0 => 'bool', 'query' => 'string', '&w_error_msg=' => 'string', ), - 'SQLiteDatabase::singleQuery' => + 'sqlitedatabase::singlequery' => array ( 0 => 'array', 'query' => 'string', 'first_row_only=' => 'bool', 'decode_binary=' => 'bool', ), - 'SQLiteDatabase::unbufferedQuery' => + 'sqlitedatabase::unbufferedquery' => array ( 0 => 'SQLiteUnbuffered|false', 'query' => 'string', 'result_type=' => 'int', 'error_msg=' => 'string', ), - 'SQLiteException::__clone' => + 'sqliteexception::__clone' => array ( 0 => 'void', ), - 'SQLiteException::__construct' => + 'sqliteexception::__construct' => array ( 0 => 'void', 'message' => 'mixed', 'code' => 'mixed', 'previous' => 'mixed', ), - 'SQLiteException::__toString' => + 'sqliteexception::__tostring' => array ( 0 => 'string', ), - 'SQLiteException::__wakeup' => + 'sqliteexception::__wakeup' => array ( 0 => 'void', ), - 'SQLiteException::getCode' => + 'sqliteexception::getcode' => array ( 0 => 'int', ), - 'SQLiteException::getFile' => + 'sqliteexception::getfile' => array ( 0 => 'string', ), - 'SQLiteException::getLine' => + 'sqliteexception::getline' => array ( 0 => 'int', ), - 'SQLiteException::getMessage' => + 'sqliteexception::getmessage' => array ( 0 => 'string', ), - 'SQLiteException::getPrevious' => + 'sqliteexception::getprevious' => array ( 0 => 'RuntimeException|Throwable|null', ), - 'SQLiteException::getTrace' => + 'sqliteexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'SQLiteException::getTraceAsString' => + 'sqliteexception::gettraceasstring' => array ( 0 => 'string', ), - 'SQLiteResult::__construct' => + 'sqliteresult::__construct' => array ( 0 => 'void', ), - 'SQLiteResult::column' => + 'sqliteresult::column' => array ( 0 => 'mixed', 'index_or_name' => 'mixed', 'decode_binary=' => 'bool', ), - 'SQLiteResult::count' => + 'sqliteresult::count' => array ( 0 => 'int', ), - 'SQLiteResult::current' => + 'sqliteresult::current' => array ( 0 => 'array', 'result_type=' => 'int', 'decode_binary=' => 'bool', ), - 'SQLiteResult::fetch' => + 'sqliteresult::fetch' => array ( 0 => 'array', 'result_type=' => 'int', 'decode_binary=' => 'bool', ), - 'SQLiteResult::fetchAll' => + 'sqliteresult::fetchall' => array ( 0 => 'array', 'result_type=' => 'int', 'decode_binary=' => 'bool', ), - 'SQLiteResult::fetchObject' => + 'sqliteresult::fetchobject' => array ( 0 => 'object', 'class_name=' => 'string', 'ctor_params=' => 'array', 'decode_binary=' => 'bool', ), - 'SQLiteResult::fetchSingle' => + 'sqliteresult::fetchsingle' => array ( 0 => 'string', 'decode_binary=' => 'bool', ), - 'SQLiteResult::fieldName' => + 'sqliteresult::fieldname' => array ( 0 => 'string', 'field_index' => 'int', ), - 'SQLiteResult::hasPrev' => + 'sqliteresult::hasprev' => array ( 0 => 'bool', ), - 'SQLiteResult::key' => + 'sqliteresult::key' => array ( 0 => 'mixed|null', ), - 'SQLiteResult::next' => + 'sqliteresult::next' => array ( 0 => 'bool', ), - 'SQLiteResult::numFields' => + 'sqliteresult::numfields' => array ( 0 => 'int', ), - 'SQLiteResult::numRows' => + 'sqliteresult::numrows' => array ( 0 => 'int', ), - 'SQLiteResult::prev' => + 'sqliteresult::prev' => array ( 0 => 'bool', ), - 'SQLiteResult::rewind' => + 'sqliteresult::rewind' => array ( 0 => 'bool', ), - 'SQLiteResult::seek' => + 'sqliteresult::seek' => array ( 0 => 'bool', 'rownum' => 'int', ), - 'SQLiteResult::valid' => + 'sqliteresult::valid' => array ( 0 => 'bool', ), - 'SQLiteUnbuffered::column' => + 'sqliteunbuffered::column' => array ( 0 => 'void', 'index_or_name' => 'mixed', 'decode_binary=' => 'bool', ), - 'SQLiteUnbuffered::current' => + 'sqliteunbuffered::current' => array ( 0 => 'array', 'result_type=' => 'int', 'decode_binary=' => 'bool', ), - 'SQLiteUnbuffered::fetch' => + 'sqliteunbuffered::fetch' => array ( 0 => 'array', 'result_type=' => 'int', 'decode_binary=' => 'bool', ), - 'SQLiteUnbuffered::fetchAll' => + 'sqliteunbuffered::fetchall' => array ( 0 => 'array', 'result_type=' => 'int', 'decode_binary=' => 'bool', ), - 'SQLiteUnbuffered::fetchObject' => + 'sqliteunbuffered::fetchobject' => array ( 0 => 'object', 'class_name=' => 'string', 'ctor_params=' => 'array', 'decode_binary=' => 'bool', ), - 'SQLiteUnbuffered::fetchSingle' => + 'sqliteunbuffered::fetchsingle' => array ( 0 => 'string', 'decode_binary=' => 'bool', ), - 'SQLiteUnbuffered::fieldName' => + 'sqliteunbuffered::fieldname' => array ( 0 => 'string', 'field_index' => 'int', ), - 'SQLiteUnbuffered::next' => + 'sqliteunbuffered::next' => array ( 0 => 'bool', ), - 'SQLiteUnbuffered::numFields' => + 'sqliteunbuffered::numfields' => array ( 0 => 'int', ), - 'SQLiteUnbuffered::valid' => + 'sqliteunbuffered::valid' => array ( 0 => 'bool', ), @@ -68012,7 +68012,7 @@ 'a' => 'array', 'sample=' => 'bool', ), - 'Stomp::__construct' => + 'stomp::__construct' => array ( 0 => 'void', 'broker=' => 'string', @@ -68020,71 +68020,71 @@ 'password=' => 'string', 'headers=' => 'array|null', ), - 'Stomp::abort' => + 'stomp::abort' => array ( 0 => 'bool', 'transaction_id' => 'string', 'headers=' => 'array|null', ), - 'Stomp::ack' => + 'stomp::ack' => array ( 0 => 'bool', 'msg' => 'mixed', 'headers=' => 'array|null', ), - 'Stomp::begin' => + 'stomp::begin' => array ( 0 => 'bool', 'transaction_id' => 'string', 'headers=' => 'array|null', ), - 'Stomp::commit' => + 'stomp::commit' => array ( 0 => 'bool', 'transaction_id' => 'string', 'headers=' => 'array|null', ), - 'Stomp::error' => + 'stomp::error' => array ( 0 => 'string', ), - 'Stomp::getReadTimeout' => + 'stomp::getreadtimeout' => array ( 0 => 'array', ), - 'Stomp::getSessionId' => + 'stomp::getsessionid' => array ( 0 => 'string', ), - 'Stomp::hasFrame' => + 'stomp::hasframe' => array ( 0 => 'bool', ), - 'Stomp::readFrame' => + 'stomp::readframe' => array ( 0 => 'array', 'class_name=' => 'string', ), - 'Stomp::send' => + 'stomp::send' => array ( 0 => 'bool', 'destination' => 'string', 'msg' => 'mixed', 'headers=' => 'array|null', ), - 'Stomp::setReadTimeout' => + 'stomp::setreadtimeout' => array ( 0 => 'void', 'seconds' => 'int', 'microseconds=' => 'int|null', ), - 'Stomp::subscribe' => + 'stomp::subscribe' => array ( 0 => 'bool', 'destination' => 'string', 'headers=' => 'array|null', ), - 'Stomp::unsubscribe' => + 'stomp::unsubscribe' => array ( 0 => 'bool', 'destination' => 'string', @@ -68195,11 +68195,11 @@ array ( 0 => 'string', ), - 'StompException::getDetails' => + 'stompexception::getdetails' => array ( 0 => 'string', ), - 'StompFrame::__construct' => + 'stompframe::__construct' => array ( 0 => 'void', 'command=' => 'string', @@ -68670,81 +68670,81 @@ 0 => 'bool', 'protocol' => 'string', ), - 'streamWrapper::__construct' => + 'streamwrapper::__construct' => array ( 0 => 'void', ), - 'streamWrapper::__destruct' => + 'streamwrapper::__destruct' => array ( 0 => 'void', ), - 'streamWrapper::dir_closedir' => + 'streamwrapper::dir_closedir' => array ( 0 => 'bool', ), - 'streamWrapper::dir_opendir' => + 'streamwrapper::dir_opendir' => array ( 0 => 'bool', 'path' => 'string', 'options' => 'int', ), - 'streamWrapper::dir_readdir' => + 'streamwrapper::dir_readdir' => array ( 0 => 'string', ), - 'streamWrapper::dir_rewinddir' => + 'streamwrapper::dir_rewinddir' => array ( 0 => 'bool', ), - 'streamWrapper::mkdir' => + 'streamwrapper::mkdir' => array ( 0 => 'bool', 'path' => 'string', 'mode' => 'int', 'options' => 'int', ), - 'streamWrapper::rename' => + 'streamwrapper::rename' => array ( 0 => 'bool', 'path_from' => 'string', 'path_to' => 'string', ), - 'streamWrapper::rmdir' => + 'streamwrapper::rmdir' => array ( 0 => 'bool', 'path' => 'string', 'options' => 'int', ), - 'streamWrapper::stream_cast' => + 'streamwrapper::stream_cast' => array ( 0 => 'resource', 'cast_as' => 'int', ), - 'streamWrapper::stream_close' => + 'streamwrapper::stream_close' => array ( 0 => 'void', ), - 'streamWrapper::stream_eof' => + 'streamwrapper::stream_eof' => array ( 0 => 'bool', ), - 'streamWrapper::stream_flush' => + 'streamwrapper::stream_flush' => array ( 0 => 'bool', ), - 'streamWrapper::stream_lock' => + 'streamwrapper::stream_lock' => array ( 0 => 'bool', 'operation' => 'mode', ), - 'streamWrapper::stream_metadata' => + 'streamwrapper::stream_metadata' => array ( 0 => 'bool', 'path' => 'string', 'option' => 'int', 'value' => 'mixed', ), - 'streamWrapper::stream_open' => + 'streamwrapper::stream_open' => array ( 0 => 'bool', 'path' => 'string', @@ -68752,48 +68752,48 @@ 'options' => 'int', 'opened_path' => 'string', ), - 'streamWrapper::stream_read' => + 'streamwrapper::stream_read' => array ( 0 => 'string', 'count' => 'int', ), - 'streamWrapper::stream_seek' => + 'streamwrapper::stream_seek' => array ( 0 => 'bool', 'offset' => 'int', 'whence' => 'int', ), - 'streamWrapper::stream_set_option' => + 'streamwrapper::stream_set_option' => array ( 0 => 'bool', 'option' => 'int', 'arg1' => 'int', 'arg2' => 'int', ), - 'streamWrapper::stream_stat' => + 'streamwrapper::stream_stat' => array ( 0 => 'array', ), - 'streamWrapper::stream_tell' => + 'streamwrapper::stream_tell' => array ( 0 => 'int', ), - 'streamWrapper::stream_truncate' => + 'streamwrapper::stream_truncate' => array ( 0 => 'bool', 'new_size' => 'int', ), - 'streamWrapper::stream_write' => + 'streamwrapper::stream_write' => array ( 0 => 'int', 'data' => 'string', ), - 'streamWrapper::unlink' => + 'streamwrapper::unlink' => array ( 0 => 'bool', 'path' => 'string', ), - 'streamWrapper::url_stat' => + 'streamwrapper::url_stat' => array ( 0 => 'array', 'path' => 'string', @@ -68971,58 +68971,58 @@ 0 => 'string', 'value' => 'mixed', ), - 'styleObj::__construct' => + 'styleobj::__construct' => array ( 0 => 'void', 'label' => 'labelObj', 'style' => 'styleObj', ), - 'styleObj::convertToString' => + 'styleobj::converttostring' => array ( 0 => 'string', ), - 'styleObj::free' => + 'styleobj::free' => array ( 0 => 'void', ), - 'styleObj::getBinding' => + 'styleobj::getbinding' => array ( 0 => 'string', 'stylebinding' => 'mixed', ), - 'styleObj::getGeomTransform' => + 'styleobj::getgeomtransform' => array ( 0 => 'string', ), - 'styleObj::ms_newStyleObj' => + 'styleobj::ms_newstyleobj' => array ( 0 => 'styleObj', 'class' => 'classObj', 'style' => 'styleObj', ), - 'styleObj::removeBinding' => + 'styleobj::removebinding' => array ( 0 => 'int', 'stylebinding' => 'mixed', ), - 'styleObj::set' => + 'styleobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'styleObj::setBinding' => + 'styleobj::setbinding' => array ( 0 => 'int', 'stylebinding' => 'mixed', 'value' => 'string', ), - 'styleObj::setGeomTransform' => + 'styleobj::setgeomtransform' => array ( 0 => 'int', 'value' => 'string', ), - 'styleObj::updateFromString' => + 'styleobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', @@ -69077,7 +69077,7 @@ array ( 0 => 'array', ), - 'SVM::__construct' => + 'svm::__construct' => array ( 0 => 'void', ), @@ -69087,11 +69087,11 @@ 'problem' => 'array', 'number_of_folds' => 'int', ), - 'SVM::getOptions' => + 'svm::getoptions' => array ( 0 => 'array', ), - 'SVM::setOptions' => + 'svm::setoptions' => array ( 0 => 'bool', 'params' => 'array', @@ -69102,47 +69102,47 @@ 'problem' => 'array', 'weights=' => 'array', ), - 'SVMModel::__construct' => + 'svmmodel::__construct' => array ( 0 => 'void', 'filename=' => 'string', ), - 'SVMModel::checkProbabilityModel' => + 'svmmodel::checkprobabilitymodel' => array ( 0 => 'bool', ), - 'SVMModel::getLabels' => + 'svmmodel::getlabels' => array ( 0 => 'array', ), - 'SVMModel::getNrClass' => + 'svmmodel::getnrclass' => array ( 0 => 'int', ), - 'SVMModel::getSvmType' => + 'svmmodel::getsvmtype' => array ( 0 => 'int', ), - 'SVMModel::getSvrProbability' => + 'svmmodel::getsvrprobability' => array ( 0 => 'float', ), - 'SVMModel::load' => + 'svmmodel::load' => array ( 0 => 'bool', 'filename' => 'string', ), - 'SVMModel::predict' => + 'svmmodel::predict' => array ( 0 => 'float', 'data' => 'array', ), - 'SVMModel::predict_probability' => + 'svmmodel::predict_probability' => array ( 0 => 'float', 'data' => 'array', ), - 'SVMModel::save' => + 'svmmodel::save' => array ( 0 => 'bool', 'filename' => 'string', @@ -69878,84 +69878,84 @@ 'ymin' => 'float', 'ymax' => 'float', ), - 'SWFAction::__construct' => + 'swfaction::__construct' => array ( 0 => 'void', 'script' => 'string', ), - 'SWFBitmap::__construct' => + 'swfbitmap::__construct' => array ( 0 => 'void', 'file' => 'mixed', 'alphafile=' => 'mixed', ), - 'SWFBitmap::getHeight' => + 'swfbitmap::getheight' => array ( 0 => 'float', ), - 'SWFBitmap::getWidth' => + 'swfbitmap::getwidth' => array ( 0 => 'float', ), - 'SWFButton::__construct' => + 'swfbutton::__construct' => array ( 0 => 'void', ), - 'SWFButton::addAction' => + 'swfbutton::addaction' => array ( 0 => 'void', 'action' => 'swfaction', 'flags' => 'int', ), - 'SWFButton::addASound' => + 'swfbutton::addasound' => array ( 0 => 'SWFSoundInstance', 'sound' => 'swfsound', 'flags' => 'int', ), - 'SWFButton::addShape' => + 'swfbutton::addshape' => array ( 0 => 'void', 'shape' => 'swfshape', 'flags' => 'int', ), - 'SWFButton::setAction' => + 'swfbutton::setaction' => array ( 0 => 'void', 'action' => 'swfaction', ), - 'SWFButton::setDown' => + 'swfbutton::setdown' => array ( 0 => 'void', 'shape' => 'swfshape', ), - 'SWFButton::setHit' => + 'swfbutton::sethit' => array ( 0 => 'void', 'shape' => 'swfshape', ), - 'SWFButton::setMenu' => + 'swfbutton::setmenu' => array ( 0 => 'void', 'flag' => 'int', ), - 'SWFButton::setOver' => + 'swfbutton::setover' => array ( 0 => 'void', 'shape' => 'swfshape', ), - 'SWFButton::setUp' => + 'swfbutton::setup' => array ( 0 => 'void', 'shape' => 'swfshape', ), - 'SWFDisplayItem::addAction' => + 'swfdisplayitem::addaction' => array ( 0 => 'void', 'action' => 'swfaction', 'flags' => 'int', ), - 'SWFDisplayItem::addColor' => + 'swfdisplayitem::addcolor' => array ( 0 => 'void', 'red' => 'int', @@ -69963,51 +69963,51 @@ 'blue' => 'int', 'a=' => 'int', ), - 'SWFDisplayItem::endMask' => + 'swfdisplayitem::endmask' => array ( 0 => 'void', ), - 'SWFDisplayItem::getRot' => + 'swfdisplayitem::getrot' => array ( 0 => 'float', ), - 'SWFDisplayItem::getX' => + 'swfdisplayitem::getx' => array ( 0 => 'float', ), - 'SWFDisplayItem::getXScale' => + 'swfdisplayitem::getxscale' => array ( 0 => 'float', ), - 'SWFDisplayItem::getXSkew' => + 'swfdisplayitem::getxskew' => array ( 0 => 'float', ), - 'SWFDisplayItem::getY' => + 'swfdisplayitem::gety' => array ( 0 => 'float', ), - 'SWFDisplayItem::getYScale' => + 'swfdisplayitem::getyscale' => array ( 0 => 'float', ), - 'SWFDisplayItem::getYSkew' => + 'swfdisplayitem::getyskew' => array ( 0 => 'float', ), - 'SWFDisplayItem::move' => + 'swfdisplayitem::move' => array ( 0 => 'void', 'dx' => 'float', 'dy' => 'float', ), - 'SWFDisplayItem::moveTo' => + 'swfdisplayitem::moveto' => array ( 0 => 'void', 'x' => 'float', 'y' => 'float', ), - 'SWFDisplayItem::multColor' => + 'swfdisplayitem::multcolor' => array ( 0 => 'void', 'red' => 'float', @@ -70015,43 +70015,43 @@ 'blue' => 'float', 'a=' => 'float', ), - 'SWFDisplayItem::remove' => + 'swfdisplayitem::remove' => array ( 0 => 'void', ), - 'SWFDisplayItem::rotate' => + 'swfdisplayitem::rotate' => array ( 0 => 'void', 'angle' => 'float', ), - 'SWFDisplayItem::rotateTo' => + 'swfdisplayitem::rotateto' => array ( 0 => 'void', 'angle' => 'float', ), - 'SWFDisplayItem::scale' => + 'swfdisplayitem::scale' => array ( 0 => 'void', 'dx' => 'float', 'dy' => 'float', ), - 'SWFDisplayItem::scaleTo' => + 'swfdisplayitem::scaleto' => array ( 0 => 'void', 'x' => 'float', 'y=' => 'float', ), - 'SWFDisplayItem::setDepth' => + 'swfdisplayitem::setdepth' => array ( 0 => 'void', 'depth' => 'int', ), - 'SWFDisplayItem::setMaskLevel' => + 'swfdisplayitem::setmasklevel' => array ( 0 => 'void', 'level' => 'int', ), - 'SWFDisplayItem::setMatrix' => + 'swfdisplayitem::setmatrix' => array ( 0 => 'void', 'a' => 'float', @@ -70061,110 +70061,110 @@ 'x' => 'float', 'y' => 'float', ), - 'SWFDisplayItem::setName' => + 'swfdisplayitem::setname' => array ( 0 => 'void', 'name' => 'string', ), - 'SWFDisplayItem::setRatio' => + 'swfdisplayitem::setratio' => array ( 0 => 'void', 'ratio' => 'float', ), - 'SWFDisplayItem::skewX' => + 'swfdisplayitem::skewx' => array ( 0 => 'void', 'ddegrees' => 'float', ), - 'SWFDisplayItem::skewXTo' => + 'swfdisplayitem::skewxto' => array ( 0 => 'void', 'degrees' => 'float', ), - 'SWFDisplayItem::skewY' => + 'swfdisplayitem::skewy' => array ( 0 => 'void', 'ddegrees' => 'float', ), - 'SWFDisplayItem::skewYTo' => + 'swfdisplayitem::skewyto' => array ( 0 => 'void', 'degrees' => 'float', ), - 'SWFFill::moveTo' => + 'swffill::moveto' => array ( 0 => 'void', 'x' => 'float', 'y' => 'float', ), - 'SWFFill::rotateTo' => + 'swffill::rotateto' => array ( 0 => 'void', 'angle' => 'float', ), - 'SWFFill::scaleTo' => + 'swffill::scaleto' => array ( 0 => 'void', 'x' => 'float', 'y=' => 'float', ), - 'SWFFill::skewXTo' => + 'swffill::skewxto' => array ( 0 => 'void', 'x' => 'float', ), - 'SWFFill::skewYTo' => + 'swffill::skewyto' => array ( 0 => 'void', 'y' => 'float', ), - 'SWFFont::__construct' => + 'swffont::__construct' => array ( 0 => 'void', 'filename' => 'string', ), - 'SWFFont::getAscent' => + 'swffont::getascent' => array ( 0 => 'float', ), - 'SWFFont::getDescent' => + 'swffont::getdescent' => array ( 0 => 'float', ), - 'SWFFont::getLeading' => + 'swffont::getleading' => array ( 0 => 'float', ), - 'SWFFont::getShape' => + 'swffont::getshape' => array ( 0 => 'string', 'code' => 'int', ), - 'SWFFont::getUTF8Width' => + 'swffont::getutf8width' => array ( 0 => 'float', 'string' => 'string', ), - 'SWFFont::getWidth' => + 'swffont::getwidth' => array ( 0 => 'float', 'string' => 'string', ), - 'SWFFontChar::addChars' => + 'swffontchar::addchars' => array ( 0 => 'void', 'char' => 'string', ), - 'SWFFontChar::addUTF8Chars' => + 'swffontchar::addutf8chars' => array ( 0 => 'void', 'char' => 'string', ), - 'SWFGradient::__construct' => + 'swfgradient::__construct' => array ( 0 => 'void', ), - 'SWFGradient::addEntry' => + 'swfgradient::addentry' => array ( 0 => 'void', 'ratio' => 'float', @@ -70173,143 +70173,143 @@ 'blue' => 'int', 'alpha=' => 'int', ), - 'SWFMorph::__construct' => + 'swfmorph::__construct' => array ( 0 => 'void', ), - 'SWFMorph::getShape1' => + 'swfmorph::getshape1' => array ( 0 => 'SWFShape', ), - 'SWFMorph::getShape2' => + 'swfmorph::getshape2' => array ( 0 => 'SWFShape', ), - 'SWFMovie::__construct' => + 'swfmovie::__construct' => array ( 0 => 'void', 'version=' => 'int', ), - 'SWFMovie::add' => + 'swfmovie::add' => array ( 0 => 'mixed', 'instance' => 'object', ), - 'SWFMovie::addExport' => + 'swfmovie::addexport' => array ( 0 => 'void', 'char' => 'swfcharacter', 'name' => 'string', ), - 'SWFMovie::addFont' => + 'swfmovie::addfont' => array ( 0 => 'mixed', 'font' => 'swffont', ), - 'SWFMovie::importChar' => + 'swfmovie::importchar' => array ( 0 => 'SWFSprite', 'libswf' => 'string', 'name' => 'string', ), - 'SWFMovie::importFont' => + 'swfmovie::importfont' => array ( 0 => 'SWFFontChar', 'libswf' => 'string', 'name' => 'string', ), - 'SWFMovie::labelFrame' => + 'swfmovie::labelframe' => array ( 0 => 'void', 'label' => 'string', ), - 'SWFMovie::namedAnchor' => + 'swfmovie::namedanchor' => array ( 0 => 'mixed', ), - 'SWFMovie::nextFrame' => + 'swfmovie::nextframe' => array ( 0 => 'void', ), - 'SWFMovie::output' => + 'swfmovie::output' => array ( 0 => 'int', 'compression=' => 'int', ), - 'SWFMovie::protect' => + 'swfmovie::protect' => array ( 0 => 'mixed', ), - 'SWFMovie::remove' => + 'swfmovie::remove' => array ( 0 => 'void', 'instance' => 'object', ), - 'SWFMovie::save' => + 'swfmovie::save' => array ( 0 => 'int', 'filename' => 'string', 'compression=' => 'int', ), - 'SWFMovie::saveToFile' => + 'swfmovie::savetofile' => array ( 0 => 'int', 'x' => 'resource', 'compression=' => 'int', ), - 'SWFMovie::setbackground' => + 'swfmovie::setbackground' => array ( 0 => 'void', 'red' => 'int', 'green' => 'int', 'blue' => 'int', ), - 'SWFMovie::setDimension' => + 'swfmovie::setdimension' => array ( 0 => 'void', 'width' => 'float', 'height' => 'float', ), - 'SWFMovie::setFrames' => + 'swfmovie::setframes' => array ( 0 => 'void', 'number' => 'int', ), - 'SWFMovie::setRate' => + 'swfmovie::setrate' => array ( 0 => 'void', 'rate' => 'float', ), - 'SWFMovie::startSound' => + 'swfmovie::startsound' => array ( 0 => 'SWFSoundInstance', 'sound' => 'swfsound', ), - 'SWFMovie::stopSound' => + 'swfmovie::stopsound' => array ( 0 => 'void', 'sound' => 'swfsound', ), - 'SWFMovie::streamMP3' => + 'swfmovie::streammp3' => array ( 0 => 'int', 'mp3file' => 'mixed', 'skip=' => 'float', ), - 'SWFMovie::writeExports' => + 'swfmovie::writeexports' => array ( 0 => 'void', ), - 'SWFPrebuiltClip::__construct' => + 'swfprebuiltclip::__construct' => array ( 0 => 'void', 'file' => 'mixed', ), - 'SWFShape::__construct' => + 'swfshape::__construct' => array ( 0 => 'void', ), - 'SWFShape::addFill' => + 'swfshape::addfill' => array ( 0 => 'SWFFill', 'red' => 'int', @@ -70320,31 +70320,31 @@ 'flags=' => 'int', 'gradient=' => 'swfgradient', ), - 'SWFShape::addFill\'1' => + 'swfshape::addfill\'1' => array ( 0 => 'SWFFill', 'bitmap' => 'SWFBitmap', 'flags=' => 'int', ), - 'SWFShape::addFill\'2' => + 'swfshape::addfill\'2' => array ( 0 => 'SWFFill', 'gradient' => 'SWFGradient', 'flags=' => 'int', ), - 'SWFShape::drawArc' => + 'swfshape::drawarc' => array ( 0 => 'void', 'r' => 'float', 'startangle' => 'float', 'endangle' => 'float', ), - 'SWFShape::drawCircle' => + 'swfshape::drawcircle' => array ( 0 => 'void', 'r' => 'float', ), - 'SWFShape::drawCubic' => + 'swfshape::drawcubic' => array ( 0 => 'int', 'bx' => 'float', @@ -70354,7 +70354,7 @@ 'dx' => 'float', 'dy' => 'float', ), - 'SWFShape::drawCubicTo' => + 'swfshape::drawcubicto' => array ( 0 => 'int', 'bx' => 'float', @@ -70364,7 +70364,7 @@ 'dx' => 'float', 'dy' => 'float', ), - 'SWFShape::drawCurve' => + 'swfshape::drawcurve' => array ( 0 => 'int', 'controldx' => 'float', @@ -70374,7 +70374,7 @@ 'targetdx=' => 'float', 'targetdy=' => 'float', ), - 'SWFShape::drawCurveTo' => + 'swfshape::drawcurveto' => array ( 0 => 'int', 'controlx' => 'float', @@ -70384,38 +70384,38 @@ 'targetx=' => 'float', 'targety=' => 'float', ), - 'SWFShape::drawGlyph' => + 'swfshape::drawglyph' => array ( 0 => 'void', 'font' => 'swffont', 'character' => 'string', 'size=' => 'int', ), - 'SWFShape::drawLine' => + 'swfshape::drawline' => array ( 0 => 'void', 'dx' => 'float', 'dy' => 'float', ), - 'SWFShape::drawLineTo' => + 'swfshape::drawlineto' => array ( 0 => 'void', 'x' => 'float', 'y' => 'float', ), - 'SWFShape::movePen' => + 'swfshape::movepen' => array ( 0 => 'void', 'dx' => 'float', 'dy' => 'float', ), - 'SWFShape::movePenTo' => + 'swfshape::movepento' => array ( 0 => 'void', 'x' => 'float', 'y' => 'float', ), - 'SWFShape::setLeftFill' => + 'swfshape::setleftfill' => array ( 0 => 'mixed', 'fill' => 'swfgradient', @@ -70424,7 +70424,7 @@ 'blue' => 'int', 'a=' => 'int', ), - 'SWFShape::setLine' => + 'swfshape::setline' => array ( 0 => 'mixed', 'shape' => 'swfshape', @@ -70434,7 +70434,7 @@ 'blue' => 'int', 'a=' => 'int', ), - 'SWFShape::setRightFill' => + 'swfshape::setrightfill' => array ( 0 => 'mixed', 'fill' => 'swfgradient', @@ -70443,118 +70443,118 @@ 'blue' => 'int', 'a=' => 'int', ), - 'SWFSound' => + 'swfsound' => array ( 0 => 'SWFSound', 'filename' => 'string', 'flags=' => 'int', ), - 'SWFSound::__construct' => + 'swfsound::__construct' => array ( 0 => 'void', 'filename' => 'string', 'flags=' => 'int', ), - 'SWFSoundInstance::loopCount' => + 'swfsoundinstance::loopcount' => array ( 0 => 'void', 'point' => 'int', ), - 'SWFSoundInstance::loopInPoint' => + 'swfsoundinstance::loopinpoint' => array ( 0 => 'void', 'point' => 'int', ), - 'SWFSoundInstance::loopOutPoint' => + 'swfsoundinstance::loopoutpoint' => array ( 0 => 'void', 'point' => 'int', ), - 'SWFSoundInstance::noMultiple' => + 'swfsoundinstance::nomultiple' => array ( 0 => 'void', ), - 'SWFSprite::__construct' => + 'swfsprite::__construct' => array ( 0 => 'void', ), - 'SWFSprite::add' => + 'swfsprite::add' => array ( 0 => 'void', 'object' => 'object', ), - 'SWFSprite::labelFrame' => + 'swfsprite::labelframe' => array ( 0 => 'void', 'label' => 'string', ), - 'SWFSprite::nextFrame' => + 'swfsprite::nextframe' => array ( 0 => 'void', ), - 'SWFSprite::remove' => + 'swfsprite::remove' => array ( 0 => 'void', 'object' => 'object', ), - 'SWFSprite::setFrames' => + 'swfsprite::setframes' => array ( 0 => 'void', 'number' => 'int', ), - 'SWFSprite::startSound' => + 'swfsprite::startsound' => array ( 0 => 'SWFSoundInstance', 'sount' => 'swfsound', ), - 'SWFSprite::stopSound' => + 'swfsprite::stopsound' => array ( 0 => 'void', 'sount' => 'swfsound', ), - 'SWFText::__construct' => + 'swftext::__construct' => array ( 0 => 'void', ), - 'SWFText::addString' => + 'swftext::addstring' => array ( 0 => 'void', 'string' => 'string', ), - 'SWFText::addUTF8String' => + 'swftext::addutf8string' => array ( 0 => 'void', 'text' => 'string', ), - 'SWFText::getAscent' => + 'swftext::getascent' => array ( 0 => 'float', ), - 'SWFText::getDescent' => + 'swftext::getdescent' => array ( 0 => 'float', ), - 'SWFText::getLeading' => + 'swftext::getleading' => array ( 0 => 'float', ), - 'SWFText::getUTF8Width' => + 'swftext::getutf8width' => array ( 0 => 'float', 'string' => 'string', ), - 'SWFText::getWidth' => + 'swftext::getwidth' => array ( 0 => 'float', 'string' => 'string', ), - 'SWFText::moveTo' => + 'swftext::moveto' => array ( 0 => 'void', 'x' => 'float', 'y' => 'float', ), - 'SWFText::setColor' => + 'swftext::setcolor' => array ( 0 => 'void', 'red' => 'int', @@ -70562,48 +70562,48 @@ 'blue' => 'int', 'a=' => 'int', ), - 'SWFText::setFont' => + 'swftext::setfont' => array ( 0 => 'void', 'font' => 'swffont', ), - 'SWFText::setHeight' => + 'swftext::setheight' => array ( 0 => 'void', 'height' => 'float', ), - 'SWFText::setSpacing' => + 'swftext::setspacing' => array ( 0 => 'void', 'spacing' => 'float', ), - 'SWFTextField::__construct' => + 'swftextfield::__construct' => array ( 0 => 'void', 'flags=' => 'int', ), - 'SWFTextField::addChars' => + 'swftextfield::addchars' => array ( 0 => 'void', 'chars' => 'string', ), - 'SWFTextField::addString' => + 'swftextfield::addstring' => array ( 0 => 'void', 'string' => 'string', ), - 'SWFTextField::align' => + 'swftextfield::align' => array ( 0 => 'void', 'alignement' => 'int', ), - 'SWFTextField::setBounds' => + 'swftextfield::setbounds' => array ( 0 => 'void', 'width' => 'float', 'height' => 'float', ), - 'SWFTextField::setColor' => + 'swftextfield::setcolor' => array ( 0 => 'void', 'red' => 'int', @@ -70611,152 +70611,152 @@ 'blue' => 'int', 'a=' => 'int', ), - 'SWFTextField::setFont' => + 'swftextfield::setfont' => array ( 0 => 'void', 'font' => 'swffont', ), - 'SWFTextField::setHeight' => + 'swftextfield::setheight' => array ( 0 => 'void', 'height' => 'float', ), - 'SWFTextField::setIndentation' => + 'swftextfield::setindentation' => array ( 0 => 'void', 'width' => 'float', ), - 'SWFTextField::setLeftMargin' => + 'swftextfield::setleftmargin' => array ( 0 => 'void', 'width' => 'float', ), - 'SWFTextField::setLineSpacing' => + 'swftextfield::setlinespacing' => array ( 0 => 'void', 'height' => 'float', ), - 'SWFTextField::setMargins' => + 'swftextfield::setmargins' => array ( 0 => 'void', 'left' => 'float', 'right' => 'float', ), - 'SWFTextField::setName' => + 'swftextfield::setname' => array ( 0 => 'void', 'name' => 'string', ), - 'SWFTextField::setPadding' => + 'swftextfield::setpadding' => array ( 0 => 'void', 'padding' => 'float', ), - 'SWFTextField::setRightMargin' => + 'swftextfield::setrightmargin' => array ( 0 => 'void', 'width' => 'float', ), - 'SWFVideoStream::__construct' => + 'swfvideostream::__construct' => array ( 0 => 'void', 'file=' => 'string', ), - 'SWFVideoStream::getNumFrames' => + 'swfvideostream::getnumframes' => array ( 0 => 'int', ), - 'SWFVideoStream::setDimension' => + 'swfvideostream::setdimension' => array ( 0 => 'void', 'x' => 'int', 'y' => 'int', ), - 'Swish::__construct' => + 'swish::__construct' => array ( 0 => 'void', 'index_names' => 'string', ), - 'Swish::getMetaList' => + 'swish::getmetalist' => array ( 0 => 'array', 'index_name' => 'string', ), - 'Swish::getPropertyList' => + 'swish::getpropertylist' => array ( 0 => 'array', 'index_name' => 'string', ), - 'Swish::prepare' => + 'swish::prepare' => array ( 0 => 'object', 'query=' => 'string', ), - 'Swish::query' => + 'swish::query' => array ( 0 => 'object', 'query' => 'string', ), - 'SwishResult::getMetaList' => + 'swishresult::getmetalist' => array ( 0 => 'array', ), - 'SwishResult::stem' => + 'swishresult::stem' => array ( 0 => 'array', 'word' => 'string', ), - 'SwishResults::getParsedWords' => + 'swishresults::getparsedwords' => array ( 0 => 'array', 'index_name' => 'string', ), - 'SwishResults::getRemovedStopwords' => + 'swishresults::getremovedstopwords' => array ( 0 => 'array', 'index_name' => 'string', ), - 'SwishResults::nextResult' => + 'swishresults::nextresult' => array ( 0 => 'object', ), - 'SwishResults::seekResult' => + 'swishresults::seekresult' => array ( 0 => 'int', 'position' => 'int', ), - 'SwishSearch::execute' => + 'swishsearch::execute' => array ( 0 => 'object', 'query=' => 'string', ), - 'SwishSearch::resetLimit' => + 'swishsearch::resetlimit' => array ( 0 => 'mixed', ), - 'SwishSearch::setLimit' => + 'swishsearch::setlimit' => array ( 0 => 'mixed', 'property' => 'string', 'low' => 'string', 'high' => 'string', ), - 'SwishSearch::setPhraseDelimiter' => + 'swishsearch::setphrasedelimiter' => array ( 0 => 'mixed', 'delimiter' => 'string', ), - 'SwishSearch::setSort' => + 'swishsearch::setsort' => array ( 0 => 'mixed', 'sort' => 'string', ), - 'SwishSearch::setStructure' => + 'swishsearch::setstructure' => array ( 0 => 'mixed', 'structure' => 'int', ), - 'swoole\\async::dnsLookup' => + 'swoole\\async::dnslookup' => array ( 0 => 'void', 'hostname' => 'string', @@ -70770,7 +70770,7 @@ 'chunk_size=' => 'int', 'offset=' => 'int', ), - 'swoole\\async::readFile' => + 'swoole\\async::readfile' => array ( 0 => 'void', 'filename' => 'string', @@ -70789,7 +70789,7 @@ 'offset=' => 'int', 'callback=' => 'callable', ), - 'swoole\\async::writeFile' => + 'swoole\\async::writefile' => array ( 0 => 'void', 'filename' => 'string', @@ -70826,7 +70826,7 @@ array ( 0 => 'void', ), - 'swoole\\buffer::__toString' => + 'swoole\\buffer::__tostring' => array ( 0 => 'string', ), @@ -70909,7 +70909,7 @@ array ( 0 => 'array', ), - 'swoole\\client::isConnected' => + 'swoole\\client::isconnected' => array ( 0 => 'bool', ), @@ -70986,23 +70986,23 @@ array ( 0 => 'Connection', ), - 'swoole\\connection\\iterator::offsetExists' => + 'swoole\\connection\\iterator::offsetexists' => array ( 0 => 'bool', 'index' => 'int', ), - 'swoole\\connection\\iterator::offsetGet' => + 'swoole\\connection\\iterator::offsetget' => array ( 0 => 'Connection', 'index' => 'string', ), - 'swoole\\connection\\iterator::offsetSet' => + 'swoole\\connection\\iterator::offsetset' => array ( 0 => 'void', 'offset' => 'int', 'connection' => 'mixed', ), - 'swoole\\connection\\iterator::offsetUnset' => + 'swoole\\connection\\iterator::offsetunset' => array ( 0 => 'void', 'offset' => 'int', @@ -71068,7 +71068,7 @@ array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\client::isConnected' => + 'swoole\\coroutine\\client::isconnected' => array ( 0 => 'ReturnType', ), @@ -71096,7 +71096,7 @@ array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::addFile' => + 'swoole\\coroutine\\http\\client::addfile' => array ( 0 => 'ReturnType', ), @@ -71112,11 +71112,11 @@ array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::getDefer' => + 'swoole\\coroutine\\http\\client::getdefer' => array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::isConnected' => + 'swoole\\coroutine\\http\\client::isconnected' => array ( 0 => 'ReturnType', ), @@ -71132,23 +71132,23 @@ array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::setCookies' => + 'swoole\\coroutine\\http\\client::setcookies' => array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::setData' => + 'swoole\\coroutine\\http\\client::setdata' => array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::setDefer' => + 'swoole\\coroutine\\http\\client::setdefer' => array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::setHeaders' => + 'swoole\\coroutine\\http\\client::setheaders' => array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::setMethod' => + 'swoole\\coroutine\\http\\client::setmethod' => array ( 0 => 'ReturnType', ), @@ -71164,7 +71164,7 @@ array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\mysql::getDefer' => + 'swoole\\coroutine\\mysql::getdefer' => array ( 0 => 'ReturnType', ), @@ -71176,7 +71176,7 @@ array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\mysql::setDefer' => + 'swoole\\coroutine\\mysql::setdefer' => array ( 0 => 'ReturnType', ), @@ -71224,7 +71224,7 @@ array ( 0 => 'void', ), - 'swoole\\http\\client::addFile' => + 'swoole\\http\\client::addfile' => array ( 0 => 'void', 'path' => 'string', @@ -71257,7 +71257,7 @@ 'path' => 'string', 'callback' => 'callable', ), - 'swoole\\http\\client::isConnected' => + 'swoole\\http\\client::isconnected' => array ( 0 => 'bool', ), @@ -71286,22 +71286,22 @@ 0 => 'void', 'settings' => 'array', ), - 'swoole\\http\\client::setCookies' => + 'swoole\\http\\client::setcookies' => array ( 0 => 'void', 'cookies' => 'array', ), - 'swoole\\http\\client::setData' => + 'swoole\\http\\client::setdata' => array ( 0 => 'ReturnType', 'data' => 'string', ), - 'swoole\\http\\client::setHeaders' => + 'swoole\\http\\client::setheaders' => array ( 0 => 'void', 'headers' => 'array', ), - 'swoole\\http\\client::setMethod' => + 'swoole\\http\\client::setmethod' => array ( 0 => 'void', 'method' => 'string', @@ -71352,7 +71352,7 @@ 'value' => 'string', 'ucwords=' => 'string', ), - 'swoole\\http\\response::initHeader' => + 'swoole\\http\\response::initheader' => array ( 0 => 'ReturnType', ), @@ -71438,7 +71438,7 @@ 'server_config' => 'array', 'callback' => 'callable', ), - 'swoole\\mysql::getBuffer' => + 'swoole\\mysql::getbuffer' => array ( 0 => 'ReturnType', ), @@ -71484,7 +71484,7 @@ 0 => 'void', 'exit_code=' => 'string', ), - 'swoole\\process::freeQueue' => + 'swoole\\process::freequeue' => array ( 0 => 'void', ), @@ -71524,11 +71524,11 @@ array ( 0 => 'void', ), - 'swoole\\process::statQueue' => + 'swoole\\process::statqueue' => array ( 0 => 'array', ), - 'swoole\\process::useQueue' => + 'swoole\\process::usequeue' => array ( 0 => 'bool', 'key' => 'int', @@ -71550,7 +71550,7 @@ 'type' => 'string', 'value=' => 'string', ), - 'swoole\\redis\\server::setHandler' => + 'swoole\\redis\\server::sethandler' => array ( 0 => 'ReturnType', 'command' => 'string', @@ -71581,7 +71581,7 @@ 'port' => 'int', 'socket_type' => 'string', ), - 'swoole\\server::addProcess' => + 'swoole\\server::addprocess' => array ( 0 => 'bool', 'process' => 'swoole_process', @@ -71637,19 +71637,19 @@ 0 => 'void', 'data' => 'string', ), - 'swoole\\server::getClientInfo' => + 'swoole\\server::getclientinfo' => array ( 0 => 'ReturnType', 'fd' => 'int', 'reactor_id=' => 'int', ), - 'swoole\\server::getClientList' => + 'swoole\\server::getclientlist' => array ( 0 => 'array', 'start_fd' => 'int', 'pagesize=' => 'int', ), - 'swoole\\server::getLastError' => + 'swoole\\server::getlasterror' => array ( 0 => 'int', ), @@ -71705,7 +71705,7 @@ 'filename' => 'string', 'offset=' => 'int', ), - 'swoole\\server::sendMessage' => + 'swoole\\server::sendmessage' => array ( 0 => 'bool', 'worker_id' => 'int', @@ -71761,7 +71761,7 @@ 'timeout=' => 'float', 'worker_id=' => 'int', ), - 'swoole\\server::taskWaitMulti' => + 'swoole\\server::taskwaitmulti' => array ( 0 => 'void', 'tasks' => 'array', @@ -72071,47 +72071,47 @@ array ( 0 => 'string', ), - 'symbolObj::__construct' => + 'symbolobj::__construct' => array ( 0 => 'void', 'map' => 'mapObj', 'symbolname' => 'string', ), - 'symbolObj::free' => + 'symbolobj::free' => array ( 0 => 'void', ), - 'symbolObj::getPatternArray' => + 'symbolobj::getpatternarray' => array ( 0 => 'array', ), - 'symbolObj::getPointsArray' => + 'symbolobj::getpointsarray' => array ( 0 => 'array', ), - 'symbolObj::ms_newSymbolObj' => + 'symbolobj::ms_newsymbolobj' => array ( 0 => 'int', 'map' => 'mapObj', 'symbolname' => 'string', ), - 'symbolObj::set' => + 'symbolobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'symbolObj::setImagePath' => + 'symbolobj::setimagepath' => array ( 0 => 'int', 'filename' => 'string', ), - 'symbolObj::setPattern' => + 'symbolobj::setpattern' => array ( 0 => 'int', 'int' => 'array', ), - 'symbolObj::setPoints' => + 'symbolobj::setpoints' => array ( 0 => 'int', 'double' => 'array', @@ -72122,102 +72122,102 @@ 'target' => 'string', 'link' => 'string', ), - 'SyncEvent::__construct' => + 'syncevent::__construct' => array ( 0 => 'void', 'name=' => 'string', 'manual=' => 'bool', ), - 'SyncEvent::fire' => + 'syncevent::fire' => array ( 0 => 'bool', ), - 'SyncEvent::reset' => + 'syncevent::reset' => array ( 0 => 'bool', ), - 'SyncEvent::wait' => + 'syncevent::wait' => array ( 0 => 'bool', 'wait=' => 'int', ), - 'SyncMutex::__construct' => + 'syncmutex::__construct' => array ( 0 => 'void', 'name=' => 'string', ), - 'SyncMutex::lock' => + 'syncmutex::lock' => array ( 0 => 'bool', 'wait=' => 'int', ), - 'SyncMutex::unlock' => + 'syncmutex::unlock' => array ( 0 => 'bool', 'all=' => 'bool', ), - 'SyncReaderWriter::__construct' => + 'syncreaderwriter::__construct' => array ( 0 => 'void', 'name=' => 'string', 'autounlock=' => 'bool', ), - 'SyncReaderWriter::readlock' => + 'syncreaderwriter::readlock' => array ( 0 => 'bool', 'wait=' => 'int', ), - 'SyncReaderWriter::readunlock' => + 'syncreaderwriter::readunlock' => array ( 0 => 'bool', ), - 'SyncReaderWriter::writelock' => + 'syncreaderwriter::writelock' => array ( 0 => 'bool', 'wait=' => 'int', ), - 'SyncReaderWriter::writeunlock' => + 'syncreaderwriter::writeunlock' => array ( 0 => 'bool', ), - 'SyncSemaphore::__construct' => + 'syncsemaphore::__construct' => array ( 0 => 'void', 'name=' => 'string', 'initialval=' => 'int', 'autounlock=' => 'bool', ), - 'SyncSemaphore::lock' => + 'syncsemaphore::lock' => array ( 0 => 'bool', 'wait=' => 'int', ), - 'SyncSemaphore::unlock' => + 'syncsemaphore::unlock' => array ( 0 => 'bool', '&w_prevcount=' => 'int', ), - 'SyncSharedMemory::__construct' => + 'syncsharedmemory::__construct' => array ( 0 => 'void', 'name' => 'string', 'size' => 'int', ), - 'SyncSharedMemory::first' => + 'syncsharedmemory::first' => array ( 0 => 'bool', ), - 'SyncSharedMemory::read' => + 'syncsharedmemory::read' => array ( 0 => 'string', 'start=' => 'int', 'length=' => 'int', ), - 'SyncSharedMemory::size' => + 'syncsharedmemory::size' => array ( 0 => 'int', ), - 'SyncSharedMemory::write' => + 'syncsharedmemory::write' => array ( 0 => 'int', 'string=' => 'string', @@ -72278,329 +72278,329 @@ 0 => 'string', 'domain' => 'null|string', ), - 'Thread::__construct' => + 'thread::__construct' => array ( 0 => 'void', ), - 'Thread::addRef' => + 'thread::addref' => array ( 0 => 'void', ), - 'Thread::chunk' => + 'thread::chunk' => array ( 0 => 'array', 'size' => 'int', 'preserve' => 'bool', ), - 'Thread::count' => + 'thread::count' => array ( 0 => 'int', ), - 'Thread::delRef' => + 'thread::delref' => array ( 0 => 'void', ), - 'Thread::detach' => + 'thread::detach' => array ( 0 => 'void', ), - 'Thread::extend' => + 'thread::extend' => array ( 0 => 'bool', 'class' => 'string', ), - 'Thread::getCreatorId' => + 'thread::getcreatorid' => array ( 0 => 'int', ), - 'Thread::getCurrentThread' => + 'thread::getcurrentthread' => array ( 0 => 'Thread', ), - 'Thread::getCurrentThreadId' => + 'thread::getcurrentthreadid' => array ( 0 => 'int', ), - 'Thread::getRefCount' => + 'thread::getrefcount' => array ( 0 => 'int', ), - 'Thread::getTerminationInfo' => + 'thread::getterminationinfo' => array ( 0 => 'array', ), - 'Thread::getThreadId' => + 'thread::getthreadid' => array ( 0 => 'int', ), - 'Thread::globally' => + 'thread::globally' => array ( 0 => 'mixed', ), - 'Thread::isGarbage' => + 'thread::isgarbage' => array ( 0 => 'bool', ), - 'Thread::isJoined' => + 'thread::isjoined' => array ( 0 => 'bool', ), - 'Thread::isRunning' => + 'thread::isrunning' => array ( 0 => 'bool', ), - 'Thread::isStarted' => + 'thread::isstarted' => array ( 0 => 'bool', ), - 'Thread::isTerminated' => + 'thread::isterminated' => array ( 0 => 'bool', ), - 'Thread::isWaiting' => + 'thread::iswaiting' => array ( 0 => 'bool', ), - 'Thread::join' => + 'thread::join' => array ( 0 => 'bool', ), - 'Thread::kill' => + 'thread::kill' => array ( 0 => 'void', ), - 'Thread::lock' => + 'thread::lock' => array ( 0 => 'bool', ), - 'Thread::merge' => + 'thread::merge' => array ( 0 => 'bool', 'from' => 'mixed', 'overwrite=' => 'mixed', ), - 'Thread::notify' => + 'thread::notify' => array ( 0 => 'bool', ), - 'Thread::notifyOne' => + 'thread::notifyone' => array ( 0 => 'bool', ), - 'Thread::offsetExists' => + 'thread::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'Thread::offsetGet' => + 'thread::offsetget' => array ( 0 => 'mixed', 'offset' => 'int|string', ), - 'Thread::offsetSet' => + 'thread::offsetset' => array ( 0 => 'void', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'Thread::offsetUnset' => + 'thread::offsetunset' => array ( 0 => 'void', 'offset' => 'int|string', ), - 'Thread::pop' => + 'thread::pop' => array ( 0 => 'bool', ), - 'Thread::run' => + 'thread::run' => array ( 0 => 'void', ), - 'Thread::setGarbage' => + 'thread::setgarbage' => array ( 0 => 'void', ), - 'Thread::shift' => + 'thread::shift' => array ( 0 => 'bool', ), - 'Thread::start' => + 'thread::start' => array ( 0 => 'bool', 'options=' => 'int', ), - 'Thread::synchronized' => + 'thread::synchronized' => array ( 0 => 'mixed', 'block' => 'Closure', '_=' => 'mixed', ), - 'Thread::unlock' => + 'thread::unlock' => array ( 0 => 'bool', ), - 'Thread::wait' => + 'thread::wait' => array ( 0 => 'bool', 'timeout=' => 'int', ), - 'Threaded::__construct' => + 'threaded::__construct' => array ( 0 => 'void', ), - 'Threaded::addRef' => + 'threaded::addref' => array ( 0 => 'void', ), - 'Threaded::chunk' => + 'threaded::chunk' => array ( 0 => 'array', 'size' => 'int', 'preserve' => 'bool', ), - 'Threaded::count' => + 'threaded::count' => array ( 0 => 'int', ), - 'Threaded::delRef' => + 'threaded::delref' => array ( 0 => 'void', ), - 'Threaded::extend' => + 'threaded::extend' => array ( 0 => 'bool', 'class' => 'string', ), - 'Threaded::from' => + 'threaded::from' => array ( 0 => 'Threaded', 'run' => 'Closure', 'construct=' => 'Closure', 'args=' => 'array', ), - 'Threaded::getRefCount' => + 'threaded::getrefcount' => array ( 0 => 'int', ), - 'Threaded::getTerminationInfo' => + 'threaded::getterminationinfo' => array ( 0 => 'array', ), - 'Threaded::isGarbage' => + 'threaded::isgarbage' => array ( 0 => 'bool', ), - 'Threaded::isRunning' => + 'threaded::isrunning' => array ( 0 => 'bool', ), - 'Threaded::isTerminated' => + 'threaded::isterminated' => array ( 0 => 'bool', ), - 'Threaded::isWaiting' => + 'threaded::iswaiting' => array ( 0 => 'bool', ), - 'Threaded::lock' => + 'threaded::lock' => array ( 0 => 'bool', ), - 'Threaded::merge' => + 'threaded::merge' => array ( 0 => 'bool', 'from' => 'mixed', 'overwrite=' => 'bool', ), - 'Threaded::notify' => + 'threaded::notify' => array ( 0 => 'bool', ), - 'Threaded::notifyOne' => + 'threaded::notifyone' => array ( 0 => 'bool', ), - 'Threaded::offsetExists' => + 'threaded::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'Threaded::offsetGet' => + 'threaded::offsetget' => array ( 0 => 'mixed', 'offset' => 'int|string', ), - 'Threaded::offsetSet' => + 'threaded::offsetset' => array ( 0 => 'void', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'Threaded::offsetUnset' => + 'threaded::offsetunset' => array ( 0 => 'void', 'offset' => 'int|string', ), - 'Threaded::pop' => + 'threaded::pop' => array ( 0 => 'bool', ), - 'Threaded::run' => + 'threaded::run' => array ( 0 => 'void', ), - 'Threaded::setGarbage' => + 'threaded::setgarbage' => array ( 0 => 'void', ), - 'Threaded::shift' => + 'threaded::shift' => array ( 0 => 'mixed', ), - 'Threaded::synchronized' => + 'threaded::synchronized' => array ( 0 => 'mixed', 'block' => 'Closure', '...args=' => 'mixed', ), - 'Threaded::unlock' => + 'threaded::unlock' => array ( 0 => 'bool', ), - 'Threaded::wait' => + 'threaded::wait' => array ( 0 => 'bool', 'timeout=' => 'int', ), - 'Throwable::__toString' => + 'throwable::__tostring' => array ( 0 => 'string', ), - 'Throwable::getCode' => + 'throwable::getcode' => array ( 0 => 'int|string', ), - 'Throwable::getFile' => + 'throwable::getfile' => array ( 0 => 'string', ), - 'Throwable::getLine' => + 'throwable::getline' => array ( 0 => 'int', ), - 'Throwable::getMessage' => + 'throwable::getmessage' => array ( 0 => 'string', ), - 'Throwable::getPrevious' => + 'throwable::getprevious' => array ( 0 => 'Throwable|null', ), - 'Throwable::getTrace' => + 'throwable::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'Throwable::getTraceAsString' => + 'throwable::gettraceasstring' => array ( 0 => 'string', ), @@ -72616,7 +72616,7 @@ array ( 0 => 'null|tidyNode', ), - 'tidy::cleanRepair' => + 'tidy::cleanrepair' => array ( 0 => 'bool', ), @@ -72624,29 +72624,29 @@ array ( 0 => 'bool', ), - 'tidy::getConfig' => + 'tidy::getconfig' => array ( 0 => 'array', ), - 'tidy::getHtmlVer' => + 'tidy::gethtmlver' => array ( 0 => 'int', ), - 'tidy::getOpt' => + 'tidy::getopt' => array ( 0 => 'bool|int|string', 'option' => 'string', ), - 'tidy::getOptDoc' => + 'tidy::getoptdoc' => array ( 0 => 'string', 'option' => 'string', ), - 'tidy::getRelease' => + 'tidy::getrelease' => array ( 0 => 'string', ), - 'tidy::getStatus' => + 'tidy::getstatus' => array ( 0 => 'int', ), @@ -72658,15 +72658,15 @@ array ( 0 => 'null|tidyNode', ), - 'tidy::isXhtml' => + 'tidy::isxhtml' => array ( 0 => 'bool', ), - 'tidy::isXml' => + 'tidy::isxml' => array ( 0 => 'bool', ), - 'tidy::parseFile' => + 'tidy::parsefile' => array ( 0 => 'bool', 'filename' => 'string', @@ -72674,14 +72674,14 @@ 'encoding=' => 'null|string', 'useIncludePath=' => 'bool', ), - 'tidy::parseString' => + 'tidy::parsestring' => array ( 0 => 'bool', 'string' => 'string', 'config=' => 'array|null|string', 'encoding=' => 'null|string', ), - 'tidy::repairFile' => + 'tidy::repairfile' => array ( 0 => 'string', 'filename' => 'string', @@ -72689,7 +72689,7 @@ 'encoding=' => 'null|string', 'useIncludePath=' => 'bool', ), - 'tidy::repairString' => + 'tidy::repairstring' => array ( 0 => 'string', 'string' => 'string', @@ -72857,43 +72857,43 @@ 0 => 'int', 'tidy' => 'tidy', ), - 'tidyNode::__construct' => + 'tidynode::__construct' => array ( 0 => 'void', ), - 'tidyNode::getParent' => + 'tidynode::getparent' => array ( 0 => 'null|tidyNode', ), - 'tidyNode::hasChildren' => + 'tidynode::haschildren' => array ( 0 => 'bool', ), - 'tidyNode::hasSiblings' => + 'tidynode::hassiblings' => array ( 0 => 'bool', ), - 'tidyNode::isAsp' => + 'tidynode::isasp' => array ( 0 => 'bool', ), - 'tidyNode::isComment' => + 'tidynode::iscomment' => array ( 0 => 'bool', ), - 'tidyNode::isHtml' => + 'tidynode::ishtml' => array ( 0 => 'bool', ), - 'tidyNode::isJste' => + 'tidynode::isjste' => array ( 0 => 'bool', ), - 'tidyNode::isPhp' => + 'tidynode::isphp' => array ( 0 => 'bool', ), - 'tidyNode::isText' => + 'tidynode::istext' => array ( 0 => 'bool', ), @@ -72976,38 +72976,38 @@ 0 => 'string', 'id' => 'int', ), - 'TokyoTyrant::__construct' => + 'tokyotyrant::__construct' => array ( 0 => 'void', 'host=' => 'string', 'port=' => 'int', 'options=' => 'array', ), - 'TokyoTyrant::add' => + 'tokyotyrant::add' => array ( 0 => 'float|int', 'key' => 'string', 'increment' => 'float', 'type=' => 'int', ), - 'TokyoTyrant::connect' => + 'tokyotyrant::connect' => array ( 0 => 'TokyoTyrant', 'host' => 'string', 'port=' => 'int', 'options=' => 'array', ), - 'TokyoTyrant::connectUri' => + 'tokyotyrant::connecturi' => array ( 0 => 'TokyoTyrant', 'uri' => 'string', ), - 'TokyoTyrant::copy' => + 'tokyotyrant::copy' => array ( 0 => 'TokyoTyrant', 'path' => 'string', ), - 'TokyoTyrant::ext' => + 'tokyotyrant::ext' => array ( 0 => 'string', 'name' => 'string', @@ -73015,69 +73015,69 @@ 'key' => 'string', 'value' => 'string', ), - 'TokyoTyrant::fwmKeys' => + 'tokyotyrant::fwmkeys' => array ( 0 => 'array', 'prefix' => 'string', 'max_recs' => 'int', ), - 'TokyoTyrant::get' => + 'tokyotyrant::get' => array ( 0 => 'array', 'keys' => 'mixed', ), - 'TokyoTyrant::getIterator' => + 'tokyotyrant::getiterator' => array ( 0 => 'TokyoTyrantIterator', ), - 'TokyoTyrant::num' => + 'tokyotyrant::num' => array ( 0 => 'int', ), - 'TokyoTyrant::out' => + 'tokyotyrant::out' => array ( 0 => 'string', 'keys' => 'mixed', ), - 'TokyoTyrant::put' => + 'tokyotyrant::put' => array ( 0 => 'TokyoTyrant', 'keys' => 'mixed', 'value=' => 'string', ), - 'TokyoTyrant::putCat' => + 'tokyotyrant::putcat' => array ( 0 => 'TokyoTyrant', 'keys' => 'mixed', 'value=' => 'string', ), - 'TokyoTyrant::putKeep' => + 'tokyotyrant::putkeep' => array ( 0 => 'TokyoTyrant', 'keys' => 'mixed', 'value=' => 'string', ), - 'TokyoTyrant::putNr' => + 'tokyotyrant::putnr' => array ( 0 => 'TokyoTyrant', 'keys' => 'mixed', 'value=' => 'string', ), - 'TokyoTyrant::putShl' => + 'tokyotyrant::putshl' => array ( 0 => 'mixed', 'key' => 'string', 'value' => 'string', 'width' => 'int', ), - 'TokyoTyrant::restore' => + 'tokyotyrant::restore' => array ( 0 => 'mixed', 'log_dir' => 'string', 'timestamp' => 'int', 'check_consistency=' => 'bool', ), - 'TokyoTyrant::setMaster' => + 'tokyotyrant::setmaster' => array ( 0 => 'mixed', 'host' => 'string', @@ -73085,181 +73085,181 @@ 'timestamp' => 'int', 'check_consistency=' => 'bool', ), - 'TokyoTyrant::size' => + 'tokyotyrant::size' => array ( 0 => 'int', 'key' => 'string', ), - 'TokyoTyrant::stat' => + 'tokyotyrant::stat' => array ( 0 => 'array', ), - 'TokyoTyrant::sync' => + 'tokyotyrant::sync' => array ( 0 => 'mixed', ), - 'TokyoTyrant::tune' => + 'tokyotyrant::tune' => array ( 0 => 'TokyoTyrant', 'timeout' => 'float', 'options=' => 'int', ), - 'TokyoTyrant::vanish' => + 'tokyotyrant::vanish' => array ( 0 => 'mixed', ), - 'TokyoTyrantIterator::__construct' => + 'tokyotyrantiterator::__construct' => array ( 0 => 'void', 'object' => 'mixed', ), - 'TokyoTyrantIterator::current' => + 'tokyotyrantiterator::current' => array ( 0 => 'mixed', ), - 'TokyoTyrantIterator::key' => + 'tokyotyrantiterator::key' => array ( 0 => 'mixed', ), - 'TokyoTyrantIterator::next' => + 'tokyotyrantiterator::next' => array ( 0 => 'mixed', ), - 'TokyoTyrantIterator::rewind' => + 'tokyotyrantiterator::rewind' => array ( 0 => 'void', ), - 'TokyoTyrantIterator::valid' => + 'tokyotyrantiterator::valid' => array ( 0 => 'bool', ), - 'TokyoTyrantQuery::__construct' => + 'tokyotyrantquery::__construct' => array ( 0 => 'void', 'table' => 'TokyoTyrantTable', ), - 'TokyoTyrantQuery::addCond' => + 'tokyotyrantquery::addcond' => array ( 0 => 'mixed', 'name' => 'string', 'op' => 'int', 'expr' => 'string', ), - 'TokyoTyrantQuery::count' => + 'tokyotyrantquery::count' => array ( 0 => 'int', ), - 'TokyoTyrantQuery::current' => + 'tokyotyrantquery::current' => array ( 0 => 'array', ), - 'TokyoTyrantQuery::hint' => + 'tokyotyrantquery::hint' => array ( 0 => 'string', ), - 'TokyoTyrantQuery::key' => + 'tokyotyrantquery::key' => array ( 0 => 'string', ), - 'TokyoTyrantQuery::metaSearch' => + 'tokyotyrantquery::metasearch' => array ( 0 => 'array', 'queries' => 'array', 'type' => 'int', ), - 'TokyoTyrantQuery::next' => + 'tokyotyrantquery::next' => array ( 0 => 'array', ), - 'TokyoTyrantQuery::out' => + 'tokyotyrantquery::out' => array ( 0 => 'TokyoTyrantQuery', ), - 'TokyoTyrantQuery::rewind' => + 'tokyotyrantquery::rewind' => array ( 0 => 'bool', ), - 'TokyoTyrantQuery::search' => + 'tokyotyrantquery::search' => array ( 0 => 'array', ), - 'TokyoTyrantQuery::setLimit' => + 'tokyotyrantquery::setlimit' => array ( 0 => 'mixed', 'max=' => 'int', 'skip=' => 'int', ), - 'TokyoTyrantQuery::setOrder' => + 'tokyotyrantquery::setorder' => array ( 0 => 'mixed', 'name' => 'string', 'type' => 'int', ), - 'TokyoTyrantQuery::valid' => + 'tokyotyrantquery::valid' => array ( 0 => 'bool', ), - 'TokyoTyrantTable::add' => + 'tokyotyranttable::add' => array ( 0 => 'void', 'key' => 'string', 'increment' => 'mixed', 'type=' => 'string', ), - 'TokyoTyrantTable::genUid' => + 'tokyotyranttable::genuid' => array ( 0 => 'int', ), - 'TokyoTyrantTable::get' => + 'tokyotyranttable::get' => array ( 0 => 'array', 'keys' => 'mixed', ), - 'TokyoTyrantTable::getIterator' => + 'tokyotyranttable::getiterator' => array ( 0 => 'TokyoTyrantIterator', ), - 'TokyoTyrantTable::getQuery' => + 'tokyotyranttable::getquery' => array ( 0 => 'TokyoTyrantQuery', ), - 'TokyoTyrantTable::out' => + 'tokyotyranttable::out' => array ( 0 => 'void', 'keys' => 'mixed', ), - 'TokyoTyrantTable::put' => + 'tokyotyranttable::put' => array ( 0 => 'int', 'key' => 'string', 'columns' => 'array', ), - 'TokyoTyrantTable::putCat' => + 'tokyotyranttable::putcat' => array ( 0 => 'void', 'key' => 'string', 'columns' => 'array', ), - 'TokyoTyrantTable::putKeep' => + 'tokyotyranttable::putkeep' => array ( 0 => 'void', 'key' => 'string', 'columns' => 'array', ), - 'TokyoTyrantTable::putNr' => + 'tokyotyranttable::putnr' => array ( 0 => 'void', 'keys' => 'mixed', 'value=' => 'string', ), - 'TokyoTyrantTable::putShl' => + 'tokyotyranttable::putshl' => array ( 0 => 'void', 'key' => 'string', 'value' => 'string', 'width' => 'int', ), - 'TokyoTyrantTable::setIndex' => + 'tokyotyranttable::setindex' => array ( 0 => 'mixed', 'column' => 'string', @@ -74448,35 +74448,35 @@ 'trait' => 'string', 'autoload=' => 'bool', ), - 'Transliterator::create' => + 'transliterator::create' => array ( 0 => 'Transliterator|null', 'id' => 'string', 'direction=' => 'int', ), - 'Transliterator::createFromRules' => + 'transliterator::createfromrules' => array ( 0 => 'Transliterator|null', 'rules' => 'string', 'direction=' => 'int', ), - 'Transliterator::createInverse' => + 'transliterator::createinverse' => array ( 0 => 'Transliterator|null', ), - 'Transliterator::getErrorCode' => + 'transliterator::geterrorcode' => array ( 0 => 'int', ), - 'Transliterator::getErrorMessage' => + 'transliterator::geterrormessage' => array ( 0 => 'string', ), - 'Transliterator::listIDs' => + 'transliterator::listids' => array ( 0 => 'array', ), - 'Transliterator::transliterate' => + 'transliterator::transliterate' => array ( 0 => 'false|string', 'string' => 'string', @@ -74534,42 +74534,42 @@ 'string' => 'string', 'characters=' => 'string', ), - 'TypeError::__construct' => + 'typeerror::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'TypeError::__toString' => + 'typeerror::__tostring' => array ( 0 => 'string', ), - 'TypeError::getCode' => + 'typeerror::getcode' => array ( 0 => 'int', ), - 'TypeError::getFile' => + 'typeerror::getfile' => array ( 0 => 'string', ), - 'TypeError::getLine' => + 'typeerror::getline' => array ( 0 => 'int', ), - 'TypeError::getMessage' => + 'typeerror::getmessage' => array ( 0 => 'string', ), - 'TypeError::getPrevious' => + 'typeerror::getprevious' => array ( 0 => 'Throwable|null', ), - 'TypeError::getTrace' => + 'typeerror::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'TypeError::getTraceAsString' => + 'typeerror::gettraceasstring' => array ( 0 => 'string', ), @@ -74584,19 +74584,19 @@ 0 => 'string', 'string' => 'string', ), - 'UConverter::__construct' => + 'uconverter::__construct' => array ( 0 => 'void', 'destination_encoding=' => 'null|string', 'source_encoding=' => 'null|string', ), - 'UConverter::convert' => + 'uconverter::convert' => array ( 0 => 'string', 'str' => 'string', 'reverse=' => 'bool', ), - 'UConverter::fromUCallback' => + 'uconverter::fromucallback' => array ( 0 => 'array|int|null|string', 'reason' => 'int', @@ -74604,68 +74604,68 @@ 'codePoint' => 'int', '&w_error' => 'int', ), - 'UConverter::getAliases' => + 'uconverter::getaliases' => array ( 0 => 'array|false|null', 'name' => 'string', ), - 'UConverter::getAvailable' => + 'uconverter::getavailable' => array ( 0 => 'array', ), - 'UConverter::getDestinationEncoding' => + 'uconverter::getdestinationencoding' => array ( 0 => 'false|null|string', ), - 'UConverter::getDestinationType' => + 'uconverter::getdestinationtype' => array ( 0 => 'false|int|null', ), - 'UConverter::getErrorCode' => + 'uconverter::geterrorcode' => array ( 0 => 'int', ), - 'UConverter::getErrorMessage' => + 'uconverter::geterrormessage' => array ( 0 => 'null|string', ), - 'UConverter::getSourceEncoding' => + 'uconverter::getsourceencoding' => array ( 0 => 'false|null|string', ), - 'UConverter::getSourceType' => + 'uconverter::getsourcetype' => array ( 0 => 'false|int|null', ), - 'UConverter::getStandards' => + 'uconverter::getstandards' => array ( 0 => 'array|null', ), - 'UConverter::getSubstChars' => + 'uconverter::getsubstchars' => array ( 0 => 'false|null|string', ), - 'UConverter::reasonText' => + 'uconverter::reasontext' => array ( 0 => 'string', 'reason' => 'int', ), - 'UConverter::setDestinationEncoding' => + 'uconverter::setdestinationencoding' => array ( 0 => 'bool', 'encoding' => 'string', ), - 'UConverter::setSourceEncoding' => + 'uconverter::setsourceencoding' => array ( 0 => 'bool', 'encoding' => 'string', ), - 'UConverter::setSubstChars' => + 'uconverter::setsubstchars' => array ( 0 => 'bool', 'chars' => 'string', ), - 'UConverter::toUCallback' => + 'uconverter::toucallback' => array ( 0 => 'array|int|null|string', 'reason' => 'int', @@ -74673,7 +74673,7 @@ 'codeUnits' => 'string', '&w_error' => 'int', ), - 'UConverter::transcode' => + 'uconverter::transcode' => array ( 0 => 'string', 'str' => 'string', @@ -74828,7 +74828,7 @@ 'var' => 'int', 'val' => 'string', ), - 'ui\\area::onDraw' => + 'ui\\area::ondraw' => array ( 0 => 'mixed', 'pen' => 'UI\\Draw\\Pen', @@ -74836,14 +74836,14 @@ 'clipPoint' => 'UI\\Point', 'clipSize' => 'UI\\Size', ), - 'ui\\area::onKey' => + 'ui\\area::onkey' => array ( 0 => 'mixed', 'key' => 'string', 'ext' => 'int', 'flags' => 'int', ), - 'ui\\area::onMouse' => + 'ui\\area::onmouse' => array ( 0 => 'mixed', 'areaPoint' => 'UI\\Point', @@ -74854,13 +74854,13 @@ array ( 0 => 'mixed', ), - 'ui\\area::scrollTo' => + 'ui\\area::scrollto' => array ( 0 => 'mixed', 'point' => 'UI\\Point', 'size' => 'UI\\Size', ), - 'ui\\area::setSize' => + 'ui\\area::setsize' => array ( 0 => 'mixed', 'size' => 'UI\\Size', @@ -74877,11 +74877,11 @@ array ( 0 => 'mixed', ), - 'ui\\control::getParent' => + 'ui\\control::getparent' => array ( 0 => 'UI\\Control', ), - 'ui\\control::getTopLevel' => + 'ui\\control::gettoplevel' => array ( 0 => 'int', ), @@ -74889,15 +74889,15 @@ array ( 0 => 'mixed', ), - 'ui\\control::isEnabled' => + 'ui\\control::isenabled' => array ( 0 => 'bool', ), - 'ui\\control::isVisible' => + 'ui\\control::isvisible' => array ( 0 => 'bool', ), - 'ui\\control::setParent' => + 'ui\\control::setparent' => array ( 0 => 'mixed', 'parent' => 'UI\\Control', @@ -74917,59 +74917,59 @@ 0 => 'bool', 'index' => 'int', ), - 'ui\\controls\\box::getOrientation' => + 'ui\\controls\\box::getorientation' => array ( 0 => 'int', ), - 'ui\\controls\\box::isPadded' => + 'ui\\controls\\box::ispadded' => array ( 0 => 'bool', ), - 'ui\\controls\\box::setPadded' => + 'ui\\controls\\box::setpadded' => array ( 0 => 'mixed', 'padded' => 'bool', ), - 'ui\\controls\\button::getText' => + 'ui\\controls\\button::gettext' => array ( 0 => 'string', ), - 'ui\\controls\\button::onClick' => + 'ui\\controls\\button::onclick' => array ( 0 => 'mixed', ), - 'ui\\controls\\button::setText' => + 'ui\\controls\\button::settext' => array ( 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\check::getText' => + 'ui\\controls\\check::gettext' => array ( 0 => 'string', ), - 'ui\\controls\\check::isChecked' => + 'ui\\controls\\check::ischecked' => array ( 0 => 'bool', ), - 'ui\\controls\\check::onToggle' => + 'ui\\controls\\check::ontoggle' => array ( 0 => 'mixed', ), - 'ui\\controls\\check::setChecked' => + 'ui\\controls\\check::setchecked' => array ( 0 => 'mixed', 'checked' => 'bool', ), - 'ui\\controls\\check::setText' => + 'ui\\controls\\check::settext' => array ( 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\colorbutton::getColor' => + 'ui\\controls\\colorbutton::getcolor' => array ( 0 => 'UI\\Color', ), - 'ui\\controls\\colorbutton::onChange' => + 'ui\\controls\\colorbutton::onchange' => array ( 0 => 'mixed', ), @@ -74978,15 +74978,15 @@ 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\combo::getSelected' => + 'ui\\controls\\combo::getselected' => array ( 0 => 'int', ), - 'ui\\controls\\combo::onSelected' => + 'ui\\controls\\combo::onselected' => array ( 0 => 'mixed', ), - 'ui\\controls\\combo::setSelected' => + 'ui\\controls\\combo::setselected' => array ( 0 => 'mixed', 'index' => 'int', @@ -74996,37 +74996,37 @@ 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\editablecombo::getText' => + 'ui\\controls\\editablecombo::gettext' => array ( 0 => 'string', ), - 'ui\\controls\\editablecombo::onChange' => + 'ui\\controls\\editablecombo::onchange' => array ( 0 => 'mixed', ), - 'ui\\controls\\editablecombo::setText' => + 'ui\\controls\\editablecombo::settext' => array ( 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\entry::getText' => + 'ui\\controls\\entry::gettext' => array ( 0 => 'string', ), - 'ui\\controls\\entry::isReadOnly' => + 'ui\\controls\\entry::isreadonly' => array ( 0 => 'bool', ), - 'ui\\controls\\entry::onChange' => + 'ui\\controls\\entry::onchange' => array ( 0 => 'mixed', ), - 'ui\\controls\\entry::setReadOnly' => + 'ui\\controls\\entry::setreadonly' => array ( 0 => 'mixed', 'readOnly' => 'bool', ), - 'ui\\controls\\entry::setText' => + 'ui\\controls\\entry::settext' => array ( 0 => 'mixed', 'text' => 'string', @@ -75043,11 +75043,11 @@ 0 => 'bool', 'index' => 'int', ), - 'ui\\controls\\form::isPadded' => + 'ui\\controls\\form::ispadded' => array ( 0 => 'bool', ), - 'ui\\controls\\form::setPadded' => + 'ui\\controls\\form::setpadded' => array ( 0 => 'mixed', 'padded' => 'bool', @@ -75065,11 +75065,11 @@ 'vexpand' => 'bool', 'valign' => 'int', ), - 'ui\\controls\\grid::isPadded' => + 'ui\\controls\\grid::ispadded' => array ( 0 => 'bool', ), - 'ui\\controls\\grid::setPadded' => + 'ui\\controls\\grid::setpadded' => array ( 0 => 'mixed', 'padding' => 'bool', @@ -75079,29 +75079,29 @@ 0 => 'mixed', 'control' => 'UI\\Control', ), - 'ui\\controls\\group::getTitle' => + 'ui\\controls\\group::gettitle' => array ( 0 => 'string', ), - 'ui\\controls\\group::hasMargin' => + 'ui\\controls\\group::hasmargin' => array ( 0 => 'bool', ), - 'ui\\controls\\group::setMargin' => + 'ui\\controls\\group::setmargin' => array ( 0 => 'mixed', 'margin' => 'bool', ), - 'ui\\controls\\group::setTitle' => + 'ui\\controls\\group::settitle' => array ( 0 => 'mixed', 'title' => 'string', ), - 'ui\\controls\\label::getText' => + 'ui\\controls\\label::gettext' => array ( 0 => 'string', ), - 'ui\\controls\\label::setText' => + 'ui\\controls\\label::settext' => array ( 0 => 'mixed', 'text' => 'string', @@ -75111,33 +75111,33 @@ 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\multilineentry::getText' => + 'ui\\controls\\multilineentry::gettext' => array ( 0 => 'string', ), - 'ui\\controls\\multilineentry::isReadOnly' => + 'ui\\controls\\multilineentry::isreadonly' => array ( 0 => 'bool', ), - 'ui\\controls\\multilineentry::onChange' => + 'ui\\controls\\multilineentry::onchange' => array ( 0 => 'mixed', ), - 'ui\\controls\\multilineentry::setReadOnly' => + 'ui\\controls\\multilineentry::setreadonly' => array ( 0 => 'mixed', 'readOnly' => 'bool', ), - 'ui\\controls\\multilineentry::setText' => + 'ui\\controls\\multilineentry::settext' => array ( 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\progress::getValue' => + 'ui\\controls\\progress::getvalue' => array ( 0 => 'int', ), - 'ui\\controls\\progress::setValue' => + 'ui\\controls\\progress::setvalue' => array ( 0 => 'mixed', 'value' => 'int', @@ -75147,41 +75147,41 @@ 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\radio::getSelected' => + 'ui\\controls\\radio::getselected' => array ( 0 => 'int', ), - 'ui\\controls\\radio::onSelected' => + 'ui\\controls\\radio::onselected' => array ( 0 => 'mixed', ), - 'ui\\controls\\radio::setSelected' => + 'ui\\controls\\radio::setselected' => array ( 0 => 'mixed', 'index' => 'int', ), - 'ui\\controls\\slider::getValue' => + 'ui\\controls\\slider::getvalue' => array ( 0 => 'int', ), - 'ui\\controls\\slider::onChange' => + 'ui\\controls\\slider::onchange' => array ( 0 => 'mixed', ), - 'ui\\controls\\slider::setValue' => + 'ui\\controls\\slider::setvalue' => array ( 0 => 'mixed', 'value' => 'int', ), - 'ui\\controls\\spin::getValue' => + 'ui\\controls\\spin::getvalue' => array ( 0 => 'int', ), - 'ui\\controls\\spin::onChange' => + 'ui\\controls\\spin::onchange' => array ( 0 => 'mixed', ), - 'ui\\controls\\spin::setValue' => + 'ui\\controls\\spin::setvalue' => array ( 0 => 'mixed', 'value' => 'int', @@ -75197,12 +75197,12 @@ 0 => 'bool', 'index' => 'int', ), - 'ui\\controls\\tab::hasMargin' => + 'ui\\controls\\tab::hasmargin' => array ( 0 => 'bool', 'page' => 'int', ), - 'ui\\controls\\tab::insertAt' => + 'ui\\controls\\tab::insertat' => array ( 0 => 'mixed', 'name' => 'string', @@ -75213,27 +75213,27 @@ array ( 0 => 'int', ), - 'ui\\controls\\tab::setMargin' => + 'ui\\controls\\tab::setmargin' => array ( 0 => 'mixed', 'page' => 'int', 'margin' => 'bool', ), - 'ui\\draw\\brush::getColor' => + 'ui\\draw\\brush::getcolor' => array ( 0 => 'UI\\Draw\\Color', ), - 'ui\\draw\\brush\\gradient::delStop' => + 'ui\\draw\\brush\\gradient::delstop' => array ( 0 => 'int', 'index' => 'int', ), - 'ui\\draw\\color::getChannel' => + 'ui\\draw\\color::getchannel' => array ( 0 => 'float', 'channel' => 'int', ), - 'ui\\draw\\color::setChannel' => + 'ui\\draw\\color::setchannel' => array ( 0 => 'void', 'channel' => 'int', @@ -75243,7 +75243,7 @@ array ( 0 => 'mixed', ), - 'ui\\draw\\matrix::isInvertible' => + 'ui\\draw\\matrix::isinvertible' => array ( 0 => 'bool', ), @@ -75275,13 +75275,13 @@ 0 => 'mixed', 'point' => 'UI\\Point', ), - 'ui\\draw\\path::addRectangle' => + 'ui\\draw\\path::addrectangle' => array ( 0 => 'mixed', 'point' => 'UI\\Point', 'size' => 'UI\\Size', ), - 'ui\\draw\\path::arcTo' => + 'ui\\draw\\path::arcto' => array ( 0 => 'mixed', 'point' => 'UI\\Point', @@ -75290,7 +75290,7 @@ 'sweep' => 'float', 'negative' => 'float', ), - 'ui\\draw\\path::bezierTo' => + 'ui\\draw\\path::bezierto' => array ( 0 => 'mixed', 'point' => 'UI\\Point', @@ -75299,7 +75299,7 @@ 'sweep' => 'float', 'negative' => 'float', ), - 'ui\\draw\\path::closeFigure' => + 'ui\\draw\\path::closefigure' => array ( 0 => 'mixed', ), @@ -75307,7 +75307,7 @@ array ( 0 => 'mixed', ), - 'ui\\draw\\path::lineTo' => + 'ui\\draw\\path::lineto' => array ( 0 => 'mixed', 'point' => 'UI\\Point', @@ -75316,12 +75316,12 @@ 'sweep' => 'float', 'negative' => 'float', ), - 'ui\\draw\\path::newFigure' => + 'ui\\draw\\path::newfigure' => array ( 0 => 'mixed', 'point' => 'UI\\Point', ), - 'ui\\draw\\path::newFigureWithArc' => + 'ui\\draw\\path::newfigurewitharc' => array ( 0 => 'mixed', 'point' => 'UI\\Point', @@ -75354,79 +75354,79 @@ 'point' => 'UI\\Point', 'layout' => 'UI\\Draw\\Text\\Layout', ), - 'ui\\draw\\stroke::getCap' => + 'ui\\draw\\stroke::getcap' => array ( 0 => 'int', ), - 'ui\\draw\\stroke::getJoin' => + 'ui\\draw\\stroke::getjoin' => array ( 0 => 'int', ), - 'ui\\draw\\stroke::getMiterLimit' => + 'ui\\draw\\stroke::getmiterlimit' => array ( 0 => 'float', ), - 'ui\\draw\\stroke::getThickness' => + 'ui\\draw\\stroke::getthickness' => array ( 0 => 'float', ), - 'ui\\draw\\stroke::setCap' => + 'ui\\draw\\stroke::setcap' => array ( 0 => 'mixed', 'cap' => 'int', ), - 'ui\\draw\\stroke::setJoin' => + 'ui\\draw\\stroke::setjoin' => array ( 0 => 'mixed', 'join' => 'int', ), - 'ui\\draw\\stroke::setMiterLimit' => + 'ui\\draw\\stroke::setmiterlimit' => array ( 0 => 'mixed', 'limit' => 'float', ), - 'ui\\draw\\stroke::setThickness' => + 'ui\\draw\\stroke::setthickness' => array ( 0 => 'mixed', 'thickness' => 'float', ), - 'ui\\draw\\text\\font::getAscent' => + 'ui\\draw\\text\\font::getascent' => array ( 0 => 'float', ), - 'ui\\draw\\text\\font::getDescent' => + 'ui\\draw\\text\\font::getdescent' => array ( 0 => 'float', ), - 'ui\\draw\\text\\font::getLeading' => + 'ui\\draw\\text\\font::getleading' => array ( 0 => 'float', ), - 'ui\\draw\\text\\font::getUnderlinePosition' => + 'ui\\draw\\text\\font::getunderlineposition' => array ( 0 => 'float', ), - 'ui\\draw\\text\\font::getUnderlineThickness' => + 'ui\\draw\\text\\font::getunderlinethickness' => array ( 0 => 'float', ), - 'ui\\draw\\text\\font\\descriptor::getFamily' => + 'ui\\draw\\text\\font\\descriptor::getfamily' => array ( 0 => 'string', ), - 'ui\\draw\\text\\font\\descriptor::getItalic' => + 'ui\\draw\\text\\font\\descriptor::getitalic' => array ( 0 => 'int', ), - 'ui\\draw\\text\\font\\descriptor::getSize' => + 'ui\\draw\\text\\font\\descriptor::getsize' => array ( 0 => 'float', ), - 'ui\\draw\\text\\font\\descriptor::getStretch' => + 'ui\\draw\\text\\font\\descriptor::getstretch' => array ( 0 => 'int', ), - 'ui\\draw\\text\\font\\descriptor::getWeight' => + 'ui\\draw\\text\\font\\descriptor::getweight' => array ( 0 => 'int', ), @@ -75434,7 +75434,7 @@ array ( 0 => 'array', ), - 'ui\\draw\\text\\layout::setWidth' => + 'ui\\draw\\text\\layout::setwidth' => array ( 0 => 'mixed', 'width' => 'float', @@ -75443,7 +75443,7 @@ array ( 0 => 'void', ), - 'ui\\executor::onExecute' => + 'ui\\executor::onexecute' => array ( 0 => 'void', ), @@ -75453,28 +75453,28 @@ 'name' => 'string', 'type=' => 'string', ), - 'ui\\menu::appendAbout' => + 'ui\\menu::appendabout' => array ( 0 => 'UI\\MenuItem', 'type=' => 'string', ), - 'ui\\menu::appendCheck' => + 'ui\\menu::appendcheck' => array ( 0 => 'UI\\MenuItem', 'name' => 'string', 'type=' => 'string', ), - 'ui\\menu::appendPreferences' => + 'ui\\menu::appendpreferences' => array ( 0 => 'UI\\MenuItem', 'type=' => 'string', ), - 'ui\\menu::appendQuit' => + 'ui\\menu::appendquit' => array ( 0 => 'UI\\MenuItem', 'type=' => 'string', ), - 'ui\\menu::appendSeparator' => + 'ui\\menu::appendseparator' => array ( 0 => 'mixed', ), @@ -75486,33 +75486,33 @@ array ( 0 => 'mixed', ), - 'ui\\menuitem::isChecked' => + 'ui\\menuitem::ischecked' => array ( 0 => 'bool', ), - 'ui\\menuitem::onClick' => + 'ui\\menuitem::onclick' => array ( 0 => 'mixed', ), - 'ui\\menuitem::setChecked' => + 'ui\\menuitem::setchecked' => array ( 0 => 'mixed', 'checked' => 'bool', ), - 'ui\\point::getX' => + 'ui\\point::getx' => array ( 0 => 'float', ), - 'ui\\point::getY' => + 'ui\\point::gety' => array ( 0 => 'float', ), - 'ui\\point::setX' => + 'ui\\point::setx' => array ( 0 => 'mixed', 'point' => 'float', ), - 'ui\\point::setY' => + 'ui\\point::sety' => array ( 0 => 'mixed', 'point' => 'float', @@ -75526,20 +75526,20 @@ 0 => 'void', 'flags=' => 'int', ), - 'ui\\size::getHeight' => + 'ui\\size::getheight' => array ( 0 => 'float', ), - 'ui\\size::getWidth' => + 'ui\\size::getwidth' => array ( 0 => 'float', ), - 'ui\\size::setHeight' => + 'ui\\size::setheight' => array ( 0 => 'mixed', 'size' => 'float', ), - 'ui\\size::setWidth' => + 'ui\\size::setwidth' => array ( 0 => 'mixed', 'size' => 'float', @@ -75555,23 +75555,23 @@ 'title' => 'string', 'msg' => 'string', ), - 'ui\\window::getSize' => + 'ui\\window::getsize' => array ( 0 => 'UI\\Size', ), - 'ui\\window::getTitle' => + 'ui\\window::gettitle' => array ( 0 => 'string', ), - 'ui\\window::hasBorders' => + 'ui\\window::hasborders' => array ( 0 => 'bool', ), - 'ui\\window::hasMargin' => + 'ui\\window::hasmargin' => array ( 0 => 'bool', ), - 'ui\\window::isFullScreen' => + 'ui\\window::isfullscreen' => array ( 0 => 'bool', ), @@ -75581,7 +75581,7 @@ 'title' => 'string', 'msg' => 'string', ), - 'ui\\window::onClosing' => + 'ui\\window::onclosing' => array ( 0 => 'int', ), @@ -75593,27 +75593,27 @@ array ( 0 => 'string', ), - 'ui\\window::setBorders' => + 'ui\\window::setborders' => array ( 0 => 'mixed', 'borders' => 'bool', ), - 'ui\\window::setFullScreen' => + 'ui\\window::setfullscreen' => array ( 0 => 'mixed', 'full' => 'bool', ), - 'ui\\window::setMargin' => + 'ui\\window::setmargin' => array ( 0 => 'mixed', 'margin' => 'bool', ), - 'ui\\window::setSize' => + 'ui\\window::setsize' => array ( 0 => 'mixed', 'size' => 'UI\\Size', ), - 'ui\\window::setTitle' => + 'ui\\window::settitle' => array ( 0 => 'mixed', 'title' => 'string', @@ -75629,81 +75629,81 @@ 0 => 'int', 'mask=' => 'int|null', ), - 'UnderflowException::__construct' => + 'underflowexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'UnderflowException::__toString' => + 'underflowexception::__tostring' => array ( 0 => 'string', ), - 'UnderflowException::getCode' => + 'underflowexception::getcode' => array ( 0 => 'int', ), - 'UnderflowException::getFile' => + 'underflowexception::getfile' => array ( 0 => 'string', ), - 'UnderflowException::getLine' => + 'underflowexception::getline' => array ( 0 => 'int', ), - 'UnderflowException::getMessage' => + 'underflowexception::getmessage' => array ( 0 => 'string', ), - 'UnderflowException::getPrevious' => + 'underflowexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'UnderflowException::getTrace' => + 'underflowexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'UnderflowException::getTraceAsString' => + 'underflowexception::gettraceasstring' => array ( 0 => 'string', ), - 'UnexpectedValueException::__construct' => + 'unexpectedvalueexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'UnexpectedValueException::__toString' => + 'unexpectedvalueexception::__tostring' => array ( 0 => 'string', ), - 'UnexpectedValueException::getCode' => + 'unexpectedvalueexception::getcode' => array ( 0 => 'int', ), - 'UnexpectedValueException::getFile' => + 'unexpectedvalueexception::getfile' => array ( 0 => 'string', ), - 'UnexpectedValueException::getLine' => + 'unexpectedvalueexception::getline' => array ( 0 => 'int', ), - 'UnexpectedValueException::getMessage' => + 'unexpectedvalueexception::getmessage' => array ( 0 => 'string', ), - 'UnexpectedValueException::getPrevious' => + 'unexpectedvalueexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'UnexpectedValueException::getTrace' => + 'unexpectedvalueexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'UnexpectedValueException::getTraceAsString' => + 'unexpectedvalueexception::gettraceasstring' => array ( 0 => 'string', ), @@ -76050,7 +76050,7 @@ 0 => 'string', 'string' => 'string', ), - 'V8Js::__construct' => + 'v8js::__construct' => array ( 0 => 'void', 'object_name=' => 'string', @@ -76059,22 +76059,22 @@ 'report_uncaught_exceptions=' => 'bool', 'snapshot_blob=' => 'string', ), - 'V8Js::clearPendingException' => + 'v8js::clearpendingexception' => array ( 0 => 'mixed', ), - 'V8Js::compileString' => + 'v8js::compilestring' => array ( 0 => 'resource', 'script' => 'mixed', 'identifier=' => 'string', ), - 'V8Js::createSnapshot' => + 'v8js::createsnapshot' => array ( 0 => 'false|string', 'embed_source' => 'string', ), - 'V8Js::executeScript' => + 'v8js::executescript' => array ( 0 => 'mixed', 'script' => 'resource', @@ -76082,22 +76082,22 @@ 'time_limit=' => 'int', 'memory_limit=' => 'int', ), - 'V8Js::executeString' => + 'v8js::executestring' => array ( 0 => 'mixed', 'script' => 'string', 'identifier=' => 'string', 'flags=' => 'int', ), - 'V8Js::getExtensions' => + 'v8js::getextensions' => array ( 0 => 'array', ), - 'V8Js::getPendingException' => + 'v8js::getpendingexception' => array ( 0 => 'V8JsException|null', ), - 'V8Js::registerExtension' => + 'v8js::registerextension' => array ( 0 => 'bool', 'extension_name' => 'string', @@ -76105,115 +76105,115 @@ 'dependencies=' => 'array', 'auto_enable=' => 'bool', ), - 'V8Js::setAverageObjectSize' => + 'v8js::setaverageobjectsize' => array ( 0 => 'mixed', 'average_object_size' => 'int', ), - 'V8Js::setMemoryLimit' => + 'v8js::setmemorylimit' => array ( 0 => 'mixed', 'limit' => 'int', ), - 'V8Js::setModuleLoader' => + 'v8js::setmoduleloader' => array ( 0 => 'mixed', 'loader' => 'callable', ), - 'V8Js::setModuleNormaliser' => + 'v8js::setmodulenormaliser' => array ( 0 => 'mixed', 'normaliser' => 'callable', ), - 'V8Js::setTimeLimit' => + 'v8js::settimelimit' => array ( 0 => 'mixed', 'limit' => 'int', ), - 'V8JsException::getJsFileName' => + 'v8jsexception::getjsfilename' => array ( 0 => 'string', ), - 'V8JsException::getJsLineNumber' => + 'v8jsexception::getjslinenumber' => array ( 0 => 'int', ), - 'V8JsException::getJsSourceLine' => + 'v8jsexception::getjssourceline' => array ( 0 => 'int', ), - 'V8JsException::getJsTrace' => + 'v8jsexception::getjstrace' => array ( 0 => 'string', ), - 'V8JsScriptException::__clone' => + 'v8jsscriptexception::__clone' => array ( 0 => 'void', ), - 'V8JsScriptException::__construct' => + 'v8jsscriptexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'V8JsScriptException::__toString' => + 'v8jsscriptexception::__tostring' => array ( 0 => 'string', ), - 'V8JsScriptException::__wakeup' => + 'v8jsscriptexception::__wakeup' => array ( 0 => 'void', ), - 'V8JsScriptException::getCode' => + 'v8jsscriptexception::getcode' => array ( 0 => 'int', ), - 'V8JsScriptException::getFile' => + 'v8jsscriptexception::getfile' => array ( 0 => 'string', ), - 'V8JsScriptException::getJsEndColumn' => + 'v8jsscriptexception::getjsendcolumn' => array ( 0 => 'int', ), - 'V8JsScriptException::getJsFileName' => + 'v8jsscriptexception::getjsfilename' => array ( 0 => 'string', ), - 'V8JsScriptException::getJsLineNumber' => + 'v8jsscriptexception::getjslinenumber' => array ( 0 => 'int', ), - 'V8JsScriptException::getJsSourceLine' => + 'v8jsscriptexception::getjssourceline' => array ( 0 => 'string', ), - 'V8JsScriptException::getJsStartColumn' => + 'v8jsscriptexception::getjsstartcolumn' => array ( 0 => 'int', ), - 'V8JsScriptException::getJsTrace' => + 'v8jsscriptexception::getjstrace' => array ( 0 => 'string', ), - 'V8JsScriptException::getLine' => + 'v8jsscriptexception::getline' => array ( 0 => 'int', ), - 'V8JsScriptException::getMessage' => + 'v8jsscriptexception::getmessage' => array ( 0 => 'string', ), - 'V8JsScriptException::getPrevious' => + 'v8jsscriptexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'V8JsScriptException::getTrace' => + 'v8jsscriptexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'V8JsScriptException::getTraceAsString' => + 'v8jsscriptexception::gettraceasstring' => array ( 0 => 'string', ), @@ -76229,7 +76229,7 @@ 'value' => 'mixed', 'return=' => 'bool', ), - 'VARIANT::__construct' => + 'variant::__construct' => array ( 0 => 'void', 'value=' => 'mixed', @@ -76386,113 +76386,113 @@ 'left' => 'mixed', 'right' => 'mixed', ), - 'VarnishAdmin::__construct' => + 'varnishadmin::__construct' => array ( 0 => 'void', 'args=' => 'array', ), - 'VarnishAdmin::auth' => + 'varnishadmin::auth' => array ( 0 => 'bool', ), - 'VarnishAdmin::ban' => + 'varnishadmin::ban' => array ( 0 => 'int', 'vcl_regex' => 'string', ), - 'VarnishAdmin::banUrl' => + 'varnishadmin::banurl' => array ( 0 => 'int', 'vcl_regex' => 'string', ), - 'VarnishAdmin::clearPanic' => + 'varnishadmin::clearpanic' => array ( 0 => 'int', ), - 'VarnishAdmin::connect' => + 'varnishadmin::connect' => array ( 0 => 'bool', ), - 'VarnishAdmin::disconnect' => + 'varnishadmin::disconnect' => array ( 0 => 'bool', ), - 'VarnishAdmin::getPanic' => + 'varnishadmin::getpanic' => array ( 0 => 'string', ), - 'VarnishAdmin::getParams' => + 'varnishadmin::getparams' => array ( 0 => 'array', ), - 'VarnishAdmin::isRunning' => + 'varnishadmin::isrunning' => array ( 0 => 'bool', ), - 'VarnishAdmin::setCompat' => + 'varnishadmin::setcompat' => array ( 0 => 'void', 'compat' => 'int', ), - 'VarnishAdmin::setHost' => + 'varnishadmin::sethost' => array ( 0 => 'void', 'host' => 'string', ), - 'VarnishAdmin::setIdent' => + 'varnishadmin::setident' => array ( 0 => 'void', 'ident' => 'string', ), - 'VarnishAdmin::setParam' => + 'varnishadmin::setparam' => array ( 0 => 'int', 'name' => 'string', 'value' => 'int|string', ), - 'VarnishAdmin::setPort' => + 'varnishadmin::setport' => array ( 0 => 'void', 'port' => 'int', ), - 'VarnishAdmin::setSecret' => + 'varnishadmin::setsecret' => array ( 0 => 'void', 'secret' => 'string', ), - 'VarnishAdmin::setTimeout' => + 'varnishadmin::settimeout' => array ( 0 => 'void', 'timeout' => 'int', ), - 'VarnishAdmin::start' => + 'varnishadmin::start' => array ( 0 => 'int', ), - 'VarnishAdmin::stop' => + 'varnishadmin::stop' => array ( 0 => 'int', ), - 'VarnishLog::__construct' => + 'varnishlog::__construct' => array ( 0 => 'void', 'args=' => 'array', ), - 'VarnishLog::getLine' => + 'varnishlog::getline' => array ( 0 => 'array', ), - 'VarnishLog::getTagName' => + 'varnishlog::gettagname' => array ( 0 => 'string', 'index' => 'int', ), - 'VarnishStat::__construct' => + 'varnishstat::__construct' => array ( 0 => 'void', 'args=' => 'array', ), - 'VarnishStat::getSnapshot' => + 'varnishstat::getsnapshot' => array ( 0 => 'array', ), @@ -76643,153 +76643,153 @@ 'format' => 'string', 'values' => 'array', ), - 'Vtiful\\Kernel\\Chart::__construct' => + 'vtiful\\kernel\\chart::__construct' => array ( 0 => 'void', 'handle' => 'resource', 'type' => 'int', ), - 'Vtiful\\Kernel\\Chart::axisNameX' => + 'vtiful\\kernel\\chart::axisnamex' => array ( 0 => 'Vtiful\\Kernel\\Chart', 'name' => 'string', ), - 'Vtiful\\Kernel\\Chart::axisNameY' => + 'vtiful\\kernel\\chart::axisnamey' => array ( 0 => 'Vtiful\\Kernel\\Chart', 'name' => 'string', ), - 'Vtiful\\Kernel\\Chart::legendSetPosition' => + 'vtiful\\kernel\\chart::legendsetposition' => array ( 0 => 'Vtiful\\Kernel\\Chart', 'type' => 'int', ), - 'Vtiful\\Kernel\\Chart::series' => + 'vtiful\\kernel\\chart::series' => array ( 0 => 'Vtiful\\Kernel\\Chart', 'value' => 'string', 'categories=' => 'string', ), - 'Vtiful\\Kernel\\Chart::seriesName' => + 'vtiful\\kernel\\chart::seriesname' => array ( 0 => 'Vtiful\\Kernel\\Chart', 'value' => 'string', ), - 'Vtiful\\Kernel\\Chart::style' => + 'vtiful\\kernel\\chart::style' => array ( 0 => 'Vtiful\\Kernel\\Chart', 'style' => 'int', ), - 'Vtiful\\Kernel\\Chart::title' => + 'vtiful\\kernel\\chart::title' => array ( 0 => 'Vtiful\\Kernel\\Chart', 'title' => 'string', ), - 'Vtiful\\Kernel\\Chart::toResource' => + 'vtiful\\kernel\\chart::toresource' => array ( 0 => 'resource', ), - 'Vtiful\\Kernel\\Excel::__construct' => + 'vtiful\\kernel\\excel::__construct' => array ( 0 => 'void', 'config' => 'array', ), - 'Vtiful\\Kernel\\Excel::activateSheet' => + 'vtiful\\kernel\\excel::activatesheet' => array ( 0 => 'bool', 'sheet_name' => 'string', ), - 'Vtiful\\Kernel\\Excel::addSheet' => + 'vtiful\\kernel\\excel::addsheet' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'sheet_name=' => 'null|string', ), - 'Vtiful\\Kernel\\Excel::autoFilter' => + 'vtiful\\kernel\\excel::autofilter' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'range' => 'string', ), - 'Vtiful\\Kernel\\Excel::checkoutSheet' => + 'vtiful\\kernel\\excel::checkoutsheet' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'sheet_name' => 'string', ), - 'Vtiful\\Kernel\\Excel::close' => + 'vtiful\\kernel\\excel::close' => array ( 0 => 'Vtiful\\Kernel\\Excel', ), - 'Vtiful\\Kernel\\Excel::columnIndexFromString' => + 'vtiful\\kernel\\excel::columnindexfromstring' => array ( 0 => 'int', 'index' => 'string', ), - 'Vtiful\\Kernel\\Excel::constMemory' => + 'vtiful\\kernel\\excel::constmemory' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'file_name' => 'string', 'sheet_name=' => 'null|string', ), - 'Vtiful\\Kernel\\Excel::data' => + 'vtiful\\kernel\\excel::data' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'data' => 'array', ), - 'Vtiful\\Kernel\\Excel::defaultFormat' => + 'vtiful\\kernel\\excel::defaultformat' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'format_handle' => 'resource', ), - 'Vtiful\\Kernel\\Excel::existSheet' => + 'vtiful\\kernel\\excel::existsheet' => array ( 0 => 'bool', 'sheet_name' => 'string', ), - 'Vtiful\\Kernel\\Excel::fileName' => + 'vtiful\\kernel\\excel::filename' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'file_name' => 'string', 'sheet_name=' => 'null|string', ), - 'Vtiful\\Kernel\\Excel::freezePanes' => + 'vtiful\\kernel\\excel::freezepanes' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', 'column' => 'int', ), - 'Vtiful\\Kernel\\Excel::getHandle' => + 'vtiful\\kernel\\excel::gethandle' => array ( 0 => 'resource', ), - 'Vtiful\\Kernel\\Excel::getSheetData' => + 'vtiful\\kernel\\excel::getsheetdata' => array ( 0 => 'array|false', ), - 'Vtiful\\Kernel\\Excel::gridline' => + 'vtiful\\kernel\\excel::gridline' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'option=' => 'int', ), - 'Vtiful\\Kernel\\Excel::header' => + 'vtiful\\kernel\\excel::header' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'header' => 'array', 'format_handle=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::insertChart' => + 'vtiful\\kernel\\excel::insertchart' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', 'column' => 'int', 'chart_resource' => 'resource', ), - 'Vtiful\\Kernel\\Excel::insertComment' => + 'vtiful\\kernel\\excel::insertcomment' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', 'column' => 'int', 'comment' => 'string', ), - 'Vtiful\\Kernel\\Excel::insertDate' => + 'vtiful\\kernel\\excel::insertdate' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', @@ -76798,7 +76798,7 @@ 'format=' => 'null|string', 'format_handle=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::insertFormula' => + 'vtiful\\kernel\\excel::insertformula' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', @@ -76806,7 +76806,7 @@ 'formula' => 'string', 'format_handle=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::insertImage' => + 'vtiful\\kernel\\excel::insertimage' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', @@ -76815,7 +76815,7 @@ 'width=' => 'float|null', 'height=' => 'float|null', ), - 'Vtiful\\Kernel\\Excel::insertText' => + 'vtiful\\kernel\\excel::inserttext' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', @@ -76824,7 +76824,7 @@ 'format=' => 'null|string', 'format_handle=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::insertUrl' => + 'vtiful\\kernel\\excel::inserturl' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', @@ -76834,45 +76834,45 @@ 'tool_tip=' => 'null|string', 'format=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::mergeCells' => + 'vtiful\\kernel\\excel::mergecells' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'range' => 'string', 'data' => 'string', 'format_handle=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::nextCellCallback' => + 'vtiful\\kernel\\excel::nextcellcallback' => array ( 0 => 'void', 'fci' => 'callable(int, int, mixed)', 'sheet_name=' => 'null|string', ), - 'Vtiful\\Kernel\\Excel::nextRow' => + 'vtiful\\kernel\\excel::nextrow' => array ( 0 => 'array|false', 'zv_type_t=' => 'array|null', ), - 'Vtiful\\Kernel\\Excel::openFile' => + 'vtiful\\kernel\\excel::openfile' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'zs_file_name' => 'string', ), - 'Vtiful\\Kernel\\Excel::openSheet' => + 'vtiful\\kernel\\excel::opensheet' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'zs_sheet_name=' => 'null|string', 'zl_flag=' => 'int|null', ), - 'Vtiful\\Kernel\\Excel::output' => + 'vtiful\\kernel\\excel::output' => array ( 0 => 'string', ), - 'Vtiful\\Kernel\\Excel::protection' => + 'vtiful\\kernel\\excel::protection' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'password=' => 'null|string', ), - 'Vtiful\\Kernel\\Excel::putCSV' => + 'vtiful\\kernel\\excel::putcsv' => array ( 0 => 'bool', 'fp' => 'resource', @@ -76880,7 +76880,7 @@ 'enclosure_str=' => 'null|string', 'escape_str=' => 'null|string', ), - 'Vtiful\\Kernel\\Excel::putCSVCallback' => + 'vtiful\\kernel\\excel::putcsvcallback' => array ( 0 => 'bool', 'callback' => 'callable(array):array', @@ -76889,31 +76889,31 @@ 'enclosure_str=' => 'null|string', 'escape_str=' => 'null|string', ), - 'Vtiful\\Kernel\\Excel::setColumn' => + 'vtiful\\kernel\\excel::setcolumn' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'range' => 'string', 'width' => 'float', 'format_handle=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::setCurrentSheetHide' => + 'vtiful\\kernel\\excel::setcurrentsheethide' => array ( 0 => 'Vtiful\\Kernel\\Excel', ), - 'Vtiful\\Kernel\\Excel::setCurrentSheetIsFirst' => + 'vtiful\\kernel\\excel::setcurrentsheetisfirst' => array ( 0 => 'Vtiful\\Kernel\\Excel', ), - 'Vtiful\\Kernel\\Excel::setGlobalType' => + 'vtiful\\kernel\\excel::setglobaltype' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'zv_type_t' => 'int', ), - 'Vtiful\\Kernel\\Excel::setLandscape' => + 'vtiful\\kernel\\excel::setlandscape' => array ( 0 => 'Vtiful\\Kernel\\Excel', ), - 'Vtiful\\Kernel\\Excel::setMargins' => + 'vtiful\\kernel\\excel::setmargins' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'left=' => 'float|null', @@ -76921,175 +76921,175 @@ 'top=' => 'float|null', 'bottom=' => 'float|null', ), - 'Vtiful\\Kernel\\Excel::setPaper' => + 'vtiful\\kernel\\excel::setpaper' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'paper' => 'int', ), - 'Vtiful\\Kernel\\Excel::setPortrait' => + 'vtiful\\kernel\\excel::setportrait' => array ( 0 => 'Vtiful\\Kernel\\Excel', ), - 'Vtiful\\Kernel\\Excel::setRow' => + 'vtiful\\kernel\\excel::setrow' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'range' => 'string', 'height' => 'float', 'format_handle=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::setSkipRows' => + 'vtiful\\kernel\\excel::setskiprows' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'zv_skip_t' => 'int', ), - 'Vtiful\\Kernel\\Excel::setType' => + 'vtiful\\kernel\\excel::settype' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'zv_type_t' => 'array', ), - 'Vtiful\\Kernel\\Excel::sheetList' => + 'vtiful\\kernel\\excel::sheetlist' => array ( 0 => 'array', ), - 'Vtiful\\Kernel\\Excel::showComment' => + 'vtiful\\kernel\\excel::showcomment' => array ( 0 => 'Vtiful\\Kernel\\Excel', ), - 'Vtiful\\Kernel\\Excel::stringFromColumnIndex' => + 'vtiful\\kernel\\excel::stringfromcolumnindex' => array ( 0 => 'string', 'index' => 'int', ), - 'Vtiful\\Kernel\\Excel::timestampFromDateDouble' => + 'vtiful\\kernel\\excel::timestampfromdatedouble' => array ( 0 => 'int', 'index' => 'float|null', ), - 'Vtiful\\Kernel\\Excel::validation' => + 'vtiful\\kernel\\excel::validation' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'range' => 'string', 'validation_resource' => 'resource', ), - 'Vtiful\\Kernel\\Excel::zoom' => + 'vtiful\\kernel\\excel::zoom' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'scale' => 'int', ), - 'Vtiful\\Kernel\\Format::__construct' => + 'vtiful\\kernel\\format::__construct' => array ( 0 => 'void', 'handle' => 'resource', ), - 'Vtiful\\Kernel\\Format::align' => + 'vtiful\\kernel\\format::align' => array ( 0 => 'Vtiful\\Kernel\\Format', '...style' => 'int', ), - 'Vtiful\\Kernel\\Format::background' => + 'vtiful\\kernel\\format::background' => array ( 0 => 'Vtiful\\Kernel\\Format', 'color' => 'int', 'pattern=' => 'int', ), - 'Vtiful\\Kernel\\Format::bold' => + 'vtiful\\kernel\\format::bold' => array ( 0 => 'Vtiful\\Kernel\\Format', ), - 'Vtiful\\Kernel\\Format::border' => + 'vtiful\\kernel\\format::border' => array ( 0 => 'Vtiful\\Kernel\\Format', 'style' => 'int', ), - 'Vtiful\\Kernel\\Format::font' => + 'vtiful\\kernel\\format::font' => array ( 0 => 'Vtiful\\Kernel\\Format', 'font' => 'string', ), - 'Vtiful\\Kernel\\Format::fontColor' => + 'vtiful\\kernel\\format::fontcolor' => array ( 0 => 'Vtiful\\Kernel\\Format', 'color' => 'int', ), - 'Vtiful\\Kernel\\Format::fontSize' => + 'vtiful\\kernel\\format::fontsize' => array ( 0 => 'Vtiful\\Kernel\\Format', 'size' => 'float', ), - 'Vtiful\\Kernel\\Format::italic' => + 'vtiful\\kernel\\format::italic' => array ( 0 => 'Vtiful\\Kernel\\Format', ), - 'Vtiful\\Kernel\\Format::number' => + 'vtiful\\kernel\\format::number' => array ( 0 => 'Vtiful\\Kernel\\Format', 'format' => 'string', ), - 'Vtiful\\Kernel\\Format::strikeout' => + 'vtiful\\kernel\\format::strikeout' => array ( 0 => 'Vtiful\\Kernel\\Format', ), - 'Vtiful\\Kernel\\Format::toResource' => + 'vtiful\\kernel\\format::toresource' => array ( 0 => 'resource', ), - 'Vtiful\\Kernel\\Format::underline' => + 'vtiful\\kernel\\format::underline' => array ( 0 => 'Vtiful\\Kernel\\Format', 'style' => 'int', ), - 'Vtiful\\Kernel\\Format::unlocked' => + 'vtiful\\kernel\\format::unlocked' => array ( 0 => 'Vtiful\\Kernel\\Format', ), - 'Vtiful\\Kernel\\Format::wrap' => + 'vtiful\\kernel\\format::wrap' => array ( 0 => 'Vtiful\\Kernel\\Format', ), - 'Vtiful\\Kernel\\Validation::__construct' => + 'vtiful\\kernel\\validation::__construct' => array ( 0 => 'void', ), - 'Vtiful\\Kernel\\Validation::criteriaType' => + 'vtiful\\kernel\\validation::criteriatype' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'type' => 'int', ), - 'Vtiful\\Kernel\\Validation::maximumFormula' => + 'vtiful\\kernel\\validation::maximumformula' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'maximum_formula' => 'string', ), - 'Vtiful\\Kernel\\Validation::maximumNumber' => + 'vtiful\\kernel\\validation::maximumnumber' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'maximum_number' => 'float', ), - 'Vtiful\\Kernel\\Validation::minimumFormula' => + 'vtiful\\kernel\\validation::minimumformula' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'minimum_formula' => 'string', ), - 'Vtiful\\Kernel\\Validation::minimumNumber' => + 'vtiful\\kernel\\validation::minimumnumber' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'minimum_number' => 'float', ), - 'Vtiful\\Kernel\\Validation::toResource' => + 'vtiful\\kernel\\validation::toresource' => array ( 0 => 'resource', ), - 'Vtiful\\Kernel\\Validation::validationType' => + 'vtiful\\kernel\\validation::validationtype' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'type' => 'int', ), - 'Vtiful\\Kernel\\Validation::valueList' => + 'vtiful\\kernel\\validation::valuelist' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'value_list' => 'array', ), - 'Vtiful\\Kernel\\Validation::valueNumber' => + 'vtiful\\kernel\\validation::valuenumber' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'value_number' => 'int', @@ -77162,66 +77162,66 @@ 'var_name' => 'mixed', '...vars=' => 'mixed', ), - 'WeakMap::count' => + 'weakmap::count' => array ( 0 => 'int', ), - 'WeakMap::getIterator' => + 'weakmap::getiterator' => array ( 0 => 'Iterator', ), - 'WeakMap::offsetExists' => + 'weakmap::offsetexists' => array ( 0 => 'bool', 'object' => 'object', ), - 'WeakMap::offsetGet' => + 'weakmap::offsetget' => array ( 0 => 'mixed', 'object' => 'object', ), - 'WeakMap::offsetSet' => + 'weakmap::offsetset' => array ( 0 => 'void', 'object' => 'object', 'value' => 'mixed', ), - 'WeakMap::offsetUnset' => + 'weakmap::offsetunset' => array ( 0 => 'void', 'object' => 'object', ), - 'Weakref::acquire' => + 'weakref::acquire' => array ( 0 => 'bool', ), - 'Weakref::get' => + 'weakref::get' => array ( 0 => 'object', ), - 'Weakref::release' => + 'weakref::release' => array ( 0 => 'bool', ), - 'Weakref::valid' => + 'weakref::valid' => array ( 0 => 'bool', ), - 'webObj::convertToString' => + 'webobj::converttostring' => array ( 0 => 'string', ), - 'webObj::free' => + 'webobj::free' => array ( 0 => 'void', ), - 'webObj::set' => + 'webobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'webObj::updateFromString' => + 'webobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', @@ -77448,7 +77448,7 @@ array ( 0 => 'null|string', ), - 'wkhtmltox\\image\\converter::getVersion' => + 'wkhtmltox\\image\\converter::getversion' => array ( 0 => 'string', ), @@ -77461,7 +77461,7 @@ array ( 0 => 'null|string', ), - 'wkhtmltox\\pdf\\converter::getVersion' => + 'wkhtmltox\\pdf\\converter::getversion' => array ( 0 => 'string', ), @@ -77473,199 +77473,199 @@ 'break=' => 'string', 'cut_long_words=' => 'bool', ), - 'Worker::__construct' => + 'worker::__construct' => array ( 0 => 'void', ), - 'Worker::addRef' => + 'worker::addref' => array ( 0 => 'void', ), - 'Worker::chunk' => + 'worker::chunk' => array ( 0 => 'array', 'size' => 'int', 'preserve' => 'bool', ), - 'Worker::collect' => + 'worker::collect' => array ( 0 => 'int', 'collector=' => 'callable', ), - 'Worker::count' => + 'worker::count' => array ( 0 => 'int', ), - 'Worker::delRef' => + 'worker::delref' => array ( 0 => 'void', ), - 'Worker::detach' => + 'worker::detach' => array ( 0 => 'void', ), - 'Worker::extend' => + 'worker::extend' => array ( 0 => 'bool', 'class' => 'string', ), - 'Worker::getCreatorId' => + 'worker::getcreatorid' => array ( 0 => 'int', ), - 'Worker::getCurrentThread' => + 'worker::getcurrentthread' => array ( 0 => 'Thread', ), - 'Worker::getCurrentThreadId' => + 'worker::getcurrentthreadid' => array ( 0 => 'int', ), - 'Worker::getRefCount' => + 'worker::getrefcount' => array ( 0 => 'int', ), - 'Worker::getStacked' => + 'worker::getstacked' => array ( 0 => 'int', ), - 'Worker::getTerminationInfo' => + 'worker::getterminationinfo' => array ( 0 => 'array', ), - 'Worker::getThreadId' => + 'worker::getthreadid' => array ( 0 => 'int', ), - 'Worker::globally' => + 'worker::globally' => array ( 0 => 'mixed', ), - 'Worker::isGarbage' => + 'worker::isgarbage' => array ( 0 => 'bool', ), - 'Worker::isJoined' => + 'worker::isjoined' => array ( 0 => 'bool', ), - 'Worker::isRunning' => + 'worker::isrunning' => array ( 0 => 'bool', ), - 'Worker::isShutdown' => + 'worker::isshutdown' => array ( 0 => 'bool', ), - 'Worker::isStarted' => + 'worker::isstarted' => array ( 0 => 'bool', ), - 'Worker::isTerminated' => + 'worker::isterminated' => array ( 0 => 'bool', ), - 'Worker::isWaiting' => + 'worker::iswaiting' => array ( 0 => 'bool', ), - 'Worker::isWorking' => + 'worker::isworking' => array ( 0 => 'bool', ), - 'Worker::join' => + 'worker::join' => array ( 0 => 'bool', ), - 'Worker::kill' => + 'worker::kill' => array ( 0 => 'bool', ), - 'Worker::lock' => + 'worker::lock' => array ( 0 => 'bool', ), - 'Worker::merge' => + 'worker::merge' => array ( 0 => 'bool', 'from' => 'mixed', 'overwrite=' => 'mixed', ), - 'Worker::notify' => + 'worker::notify' => array ( 0 => 'bool', ), - 'Worker::notifyOne' => + 'worker::notifyone' => array ( 0 => 'bool', ), - 'Worker::offsetExists' => + 'worker::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'Worker::offsetGet' => + 'worker::offsetget' => array ( 0 => 'mixed', 'offset' => 'int|string', ), - 'Worker::offsetSet' => + 'worker::offsetset' => array ( 0 => 'void', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'Worker::offsetUnset' => + 'worker::offsetunset' => array ( 0 => 'void', 'offset' => 'int|string', ), - 'Worker::pop' => + 'worker::pop' => array ( 0 => 'bool', ), - 'Worker::run' => + 'worker::run' => array ( 0 => 'void', ), - 'Worker::setGarbage' => + 'worker::setgarbage' => array ( 0 => 'void', ), - 'Worker::shift' => + 'worker::shift' => array ( 0 => 'bool', ), - 'Worker::shutdown' => + 'worker::shutdown' => array ( 0 => 'bool', ), - 'Worker::stack' => + 'worker::stack' => array ( 0 => 'int', '&rw_work' => 'Threaded', ), - 'Worker::start' => + 'worker::start' => array ( 0 => 'bool', 'options=' => 'int', ), - 'Worker::synchronized' => + 'worker::synchronized' => array ( 0 => 'mixed', 'block' => 'Closure', '_=' => 'mixed', ), - 'Worker::unlock' => + 'worker::unlock' => array ( 0 => 'bool', ), - 'Worker::unstack' => + 'worker::unstack' => array ( 0 => 'int', '&rw_work=' => 'Threaded', ), - 'Worker::wait' => + 'worker::wait' => array ( 0 => 'bool', 'timeout=' => 'int', @@ -77848,44 +77848,44 @@ 0 => 'bool', 'prefix' => 'string', ), - 'Xcom::__construct' => + 'xcom::__construct' => array ( 0 => 'void', 'fabric_url=' => 'string', 'fabric_token=' => 'string', 'capability_token=' => 'string', ), - 'Xcom::decode' => + 'xcom::decode' => array ( 0 => 'object', 'avro_msg' => 'string', 'json_schema' => 'string', ), - 'Xcom::encode' => + 'xcom::encode' => array ( 0 => 'string', 'data' => 'stdClass', 'avro_schema' => 'string', ), - 'Xcom::getDebugOutput' => + 'xcom::getdebugoutput' => array ( 0 => 'string', ), - 'Xcom::getLastResponse' => + 'xcom::getlastresponse' => array ( 0 => 'string', ), - 'Xcom::getLastResponseInfo' => + 'xcom::getlastresponseinfo' => array ( 0 => 'array', ), - 'Xcom::getOnboardingURL' => + 'xcom::getonboardingurl' => array ( 0 => 'string', 'capability_name' => 'string', 'agreement_url' => 'string', ), - 'Xcom::send' => + 'xcom::send' => array ( 0 => 'int', 'topic' => 'string', @@ -77893,7 +77893,7 @@ 'json_schema=' => 'string', 'http_headers=' => 'array', ), - 'Xcom::sendAsync' => + 'xcom::sendasync' => array ( 0 => 'int', 'topic' => 'string', @@ -78366,334 +78366,334 @@ 'parser' => 'XMLParser', 'handler' => 'callable|null', ), - 'XMLDiff\\Base::__construct' => + 'xmldiff\\base::__construct' => array ( 0 => 'void', 'nsname' => 'string', ), - 'XMLDiff\\Base::diff' => + 'xmldiff\\base::diff' => array ( 0 => 'mixed', 'from' => 'mixed', 'to' => 'mixed', ), - 'XMLDiff\\Base::merge' => + 'xmldiff\\base::merge' => array ( 0 => 'mixed', 'src' => 'mixed', 'diff' => 'mixed', ), - 'XMLDiff\\DOM::diff' => + 'xmldiff\\dom::diff' => array ( 0 => 'DOMDocument', 'from' => 'DOMDocument', 'to' => 'DOMDocument', ), - 'XMLDiff\\DOM::merge' => + 'xmldiff\\dom::merge' => array ( 0 => 'DOMDocument', 'src' => 'DOMDocument', 'diff' => 'DOMDocument', ), - 'XMLDiff\\File::diff' => + 'xmldiff\\file::diff' => array ( 0 => 'string', 'from' => 'string', 'to' => 'string', ), - 'XMLDiff\\File::merge' => + 'xmldiff\\file::merge' => array ( 0 => 'string', 'src' => 'string', 'diff' => 'string', ), - 'XMLDiff\\Memory::diff' => + 'xmldiff\\memory::diff' => array ( 0 => 'string', 'from' => 'string', 'to' => 'string', ), - 'XMLDiff\\Memory::merge' => + 'xmldiff\\memory::merge' => array ( 0 => 'string', 'src' => 'string', 'diff' => 'string', ), - 'XMLReader::close' => + 'xmlreader::close' => array ( 0 => 'true', ), - 'XMLReader::expand' => + 'xmlreader::expand' => array ( 0 => 'DOMNode|false', 'baseNode=' => 'DOMNode|null', ), - 'XMLReader::getAttribute' => + 'xmlreader::getattribute' => array ( 0 => 'null|string', 'name' => 'string', ), - 'XMLReader::getAttributeNo' => + 'xmlreader::getattributeno' => array ( 0 => 'null|string', 'index' => 'int', ), - 'XMLReader::getAttributeNs' => + 'xmlreader::getattributens' => array ( 0 => 'null|string', 'name' => 'string', 'namespace' => 'string', ), - 'XMLReader::getParserProperty' => + 'xmlreader::getparserproperty' => array ( 0 => 'bool', 'property' => 'int', ), - 'XMLReader::isValid' => + 'xmlreader::isvalid' => array ( 0 => 'bool', ), - 'XMLReader::lookupNamespace' => + 'xmlreader::lookupnamespace' => array ( 0 => 'null|string', 'prefix' => 'string', ), - 'XMLReader::moveToAttribute' => + 'xmlreader::movetoattribute' => array ( 0 => 'bool', 'name' => 'string', ), - 'XMLReader::moveToAttributeNo' => + 'xmlreader::movetoattributeno' => array ( 0 => 'bool', 'index' => 'int', ), - 'XMLReader::moveToAttributeNs' => + 'xmlreader::movetoattributens' => array ( 0 => 'bool', 'name' => 'string', 'namespace' => 'string', ), - 'XMLReader::moveToElement' => + 'xmlreader::movetoelement' => array ( 0 => 'bool', ), - 'XMLReader::moveToFirstAttribute' => + 'xmlreader::movetofirstattribute' => array ( 0 => 'bool', ), - 'XMLReader::moveToNextAttribute' => + 'xmlreader::movetonextattribute' => array ( 0 => 'bool', ), - 'XMLReader::next' => + 'xmlreader::next' => array ( 0 => 'bool', 'name=' => 'null|string', ), - 'XMLReader::open' => + 'xmlreader::open' => array ( 0 => 'XmlReader|bool', 'uri' => 'string', 'encoding=' => 'null|string', 'flags=' => 'int', ), - 'XMLReader::read' => + 'xmlreader::read' => array ( 0 => 'bool', ), - 'XMLReader::readInnerXML' => + 'xmlreader::readinnerxml' => array ( 0 => 'string', ), - 'XMLReader::readOuterXML' => + 'xmlreader::readouterxml' => array ( 0 => 'string', ), - 'XMLReader::readString' => + 'xmlreader::readstring' => array ( 0 => 'string', ), - 'XMLReader::setParserProperty' => + 'xmlreader::setparserproperty' => array ( 0 => 'bool', 'property' => 'int', 'value' => 'bool', ), - 'XMLReader::setRelaxNGSchema' => + 'xmlreader::setrelaxngschema' => array ( 0 => 'bool', 'filename' => 'null|string', ), - 'XMLReader::setRelaxNGSchemaSource' => + 'xmlreader::setrelaxngschemasource' => array ( 0 => 'bool', 'source' => 'null|string', ), - 'XMLReader::setSchema' => + 'xmlreader::setschema' => array ( 0 => 'bool', 'filename' => 'null|string', ), - 'XMLReader::XML' => + 'xmlreader::xml' => array ( 0 => 'XMLReader|bool', 'source' => 'string', 'encoding=' => 'null|string', 'flags=' => 'int', ), - 'XMLWriter::endAttribute' => + 'xmlwriter::endattribute' => array ( 0 => 'bool', ), - 'XMLWriter::endCdata' => + 'xmlwriter::endcdata' => array ( 0 => 'bool', ), - 'XMLWriter::endComment' => + 'xmlwriter::endcomment' => array ( 0 => 'bool', ), - 'XMLWriter::endDocument' => + 'xmlwriter::enddocument' => array ( 0 => 'bool', ), - 'XMLWriter::endDtd' => + 'xmlwriter::enddtd' => array ( 0 => 'bool', ), - 'XMLWriter::endDtdAttlist' => + 'xmlwriter::enddtdattlist' => array ( 0 => 'bool', ), - 'XMLWriter::endDtdElement' => + 'xmlwriter::enddtdelement' => array ( 0 => 'bool', ), - 'XMLWriter::endDtdEntity' => + 'xmlwriter::enddtdentity' => array ( 0 => 'bool', ), - 'XMLWriter::endElement' => + 'xmlwriter::endelement' => array ( 0 => 'bool', ), - 'XMLWriter::endPi' => + 'xmlwriter::endpi' => array ( 0 => 'bool', ), - 'XMLWriter::flush' => + 'xmlwriter::flush' => array ( 0 => 'int|string', 'empty=' => 'bool', ), - 'XMLWriter::fullEndElement' => + 'xmlwriter::fullendelement' => array ( 0 => 'bool', ), - 'XMLWriter::openMemory' => + 'xmlwriter::openmemory' => array ( 0 => 'bool', ), - 'XMLWriter::openUri' => + 'xmlwriter::openuri' => array ( 0 => 'bool', 'uri' => 'string', ), - 'XMLWriter::outputMemory' => + 'xmlwriter::outputmemory' => array ( 0 => 'string', 'flush=' => 'bool', ), - 'XMLWriter::setIndent' => + 'xmlwriter::setindent' => array ( 0 => 'bool', 'enable' => 'bool', ), - 'XMLWriter::setIndentString' => + 'xmlwriter::setindentstring' => array ( 0 => 'bool', 'indentation' => 'string', ), - 'XMLWriter::startAttribute' => + 'xmlwriter::startattribute' => array ( 0 => 'bool', 'name' => 'string', ), - 'XMLWriter::startAttributeNs' => + 'xmlwriter::startattributens' => array ( 0 => 'bool', 'prefix' => 'null|string', 'name' => 'string', 'namespace' => 'null|string', ), - 'XMLWriter::startCdata' => + 'xmlwriter::startcdata' => array ( 0 => 'bool', ), - 'XMLWriter::startComment' => + 'xmlwriter::startcomment' => array ( 0 => 'bool', ), - 'XMLWriter::startDocument' => + 'xmlwriter::startdocument' => array ( 0 => 'bool', 'version=' => 'null|string', 'encoding=' => 'null|string', 'standalone=' => 'null|string', ), - 'XMLWriter::startDtd' => + 'xmlwriter::startdtd' => array ( 0 => 'bool', 'qualifiedName' => 'string', 'publicId=' => 'null|string', 'systemId=' => 'null|string', ), - 'XMLWriter::startDtdAttlist' => + 'xmlwriter::startdtdattlist' => array ( 0 => 'bool', 'name' => 'string', ), - 'XMLWriter::startDtdElement' => + 'xmlwriter::startdtdelement' => array ( 0 => 'bool', 'qualifiedName' => 'string', ), - 'XMLWriter::startDtdEntity' => + 'xmlwriter::startdtdentity' => array ( 0 => 'bool', 'name' => 'string', 'isParam' => 'bool', ), - 'XMLWriter::startElement' => + 'xmlwriter::startelement' => array ( 0 => 'bool', 'name' => 'string', ), - 'XMLWriter::startElementNs' => + 'xmlwriter::startelementns' => array ( 0 => 'bool', 'prefix' => 'null|string', 'name' => 'string', 'namespace' => 'null|string', ), - 'XMLWriter::startPi' => + 'xmlwriter::startpi' => array ( 0 => 'bool', 'target' => 'string', ), - 'XMLWriter::text' => + 'xmlwriter::text' => array ( 0 => 'bool', 'content' => 'string', ), - 'XMLWriter::writeAttribute' => + 'xmlwriter::writeattribute' => array ( 0 => 'bool', 'name' => 'string', 'value' => 'string', ), - 'XMLWriter::writeAttributeNs' => + 'xmlwriter::writeattributens' => array ( 0 => 'bool', 'prefix' => 'null|string', @@ -78701,17 +78701,17 @@ 'namespace' => 'null|string', 'value' => 'string', ), - 'XMLWriter::writeCdata' => + 'xmlwriter::writecdata' => array ( 0 => 'bool', 'content' => 'string', ), - 'XMLWriter::writeComment' => + 'xmlwriter::writecomment' => array ( 0 => 'bool', 'content' => 'string', ), - 'XMLWriter::writeDtd' => + 'xmlwriter::writedtd' => array ( 0 => 'bool', 'name' => 'string', @@ -78719,19 +78719,19 @@ 'systemId=' => 'null|string', 'content=' => 'null|string', ), - 'XMLWriter::writeDtdAttlist' => + 'xmlwriter::writedtdattlist' => array ( 0 => 'bool', 'name' => 'string', 'content' => 'string', ), - 'XMLWriter::writeDtdElement' => + 'xmlwriter::writedtdelement' => array ( 0 => 'bool', 'name' => 'string', 'content' => 'string', ), - 'XMLWriter::writeDtdEntity' => + 'xmlwriter::writedtdentity' => array ( 0 => 'bool', 'name' => 'string', @@ -78741,13 +78741,13 @@ 'systemId=' => 'null|string', 'notationData=' => 'null|string', ), - 'XMLWriter::writeElement' => + 'xmlwriter::writeelement' => array ( 0 => 'bool', 'name' => 'string', 'content=' => 'null|string', ), - 'XMLWriter::writeElementNs' => + 'xmlwriter::writeelementns' => array ( 0 => 'bool', 'prefix' => 'null|string', @@ -78755,13 +78755,13 @@ 'namespace' => 'null|string', 'content=' => 'null|string', ), - 'XMLWriter::writePi' => + 'xmlwriter::writepi' => array ( 0 => 'bool', 'target' => 'string', 'content' => 'string', ), - 'XMLWriter::writeRaw' => + 'xmlwriter::writeraw' => array ( 0 => 'bool', 'content' => 'string', @@ -79052,72 +79052,72 @@ array ( 0 => 'XPathContext', ), - 'XSLTProcessor::getParameter' => + 'xsltprocessor::getparameter' => array ( 0 => 'false|string', 'namespace' => 'string', 'name' => 'string', ), - 'XsltProcessor::getSecurityPrefs' => + 'xsltprocessor::getsecurityprefs' => array ( 0 => 'int', ), - 'XSLTProcessor::hasExsltSupport' => + 'xsltprocessor::hasexsltsupport' => array ( 0 => 'bool', ), - 'XSLTProcessor::importStylesheet' => + 'xsltprocessor::importstylesheet' => array ( 0 => 'bool', 'stylesheet' => 'object', ), - 'XSLTProcessor::registerPHPFunctions' => + 'xsltprocessor::registerphpfunctions' => array ( 0 => 'void', 'functions=' => 'array|null|string', ), - 'XSLTProcessor::removeParameter' => + 'xsltprocessor::removeparameter' => array ( 0 => 'bool', 'namespace' => 'string', 'name' => 'string', ), - 'XSLTProcessor::setParameter' => + 'xsltprocessor::setparameter' => array ( 0 => 'bool', 'namespace' => 'string', 'name' => 'string', 'value' => 'null|string', ), - 'XSLTProcessor::setParameter\'1' => + 'xsltprocessor::setparameter\'1' => array ( 0 => 'bool', 'namespace' => 'string', 'options' => 'array', ), - 'XSLTProcessor::setProfiling' => + 'xsltprocessor::setprofiling' => array ( 0 => 'true', 'filename' => 'null|string', ), - 'XsltProcessor::setSecurityPrefs' => + 'xsltprocessor::setsecurityprefs' => array ( 0 => 'int', 'preferences' => 'int', ), - 'XSLTProcessor::transformToDoc' => + 'xsltprocessor::transformtodoc' => array ( 0 => 'DOMDocument|false', 'document' => 'DOMNode', 'returnClass=' => 'null|string', ), - 'XSLTProcessor::transformToURI' => + 'xsltprocessor::transformtouri' => array ( 0 => 'int', 'document' => 'DOMDocument', 'uri' => 'string', ), - 'XSLTProcessor::transformToXML' => + 'xsltprocessor::transformtoxml' => array ( 0 => 'false|null|string', 'document' => 'DOMDocument', @@ -79163,22 +79163,22 @@ array ( 0 => 'array', ), - 'Yaconf::get' => + 'yaconf::get' => array ( 0 => 'mixed', 'name' => 'string', 'default_value=' => 'mixed', ), - 'Yaconf::has' => + 'yaconf::has' => array ( 0 => 'bool', 'name' => 'string', ), - 'Yaf\\Action_Abstract::__clone' => + 'yaf\\action_abstract::__clone' => array ( 0 => 'void', ), - 'Yaf\\Action_Abstract::__construct' => + 'yaf\\action_abstract::__construct' => array ( 0 => 'void', 'request' => 'Yaf\\Request_Abstract', @@ -79186,17 +79186,17 @@ 'view' => 'Yaf\\View_Interface', 'invokeArgs=' => 'array|null', ), - 'Yaf\\Action_Abstract::display' => + 'yaf\\action_abstract::display' => array ( 0 => 'bool', 'tpl' => 'string', 'parameters=' => 'array|null', ), - 'Yaf\\Action_Abstract::execute' => + 'yaf\\action_abstract::execute' => array ( 0 => 'mixed', ), - 'Yaf\\Action_Abstract::forward' => + 'yaf\\action_abstract::forward' => array ( 0 => 'bool', 'module' => 'string', @@ -79204,342 +79204,342 @@ 'action=' => 'string', 'parameters=' => 'array|null', ), - 'Yaf\\Action_Abstract::getController' => + 'yaf\\action_abstract::getcontroller' => array ( 0 => 'Yaf\\Controller_Abstract', ), - 'Yaf\\Action_Abstract::getInvokeArg' => + 'yaf\\action_abstract::getinvokearg' => array ( 0 => 'mixed|null', 'name' => 'string', ), - 'Yaf\\Action_Abstract::getInvokeArgs' => + 'yaf\\action_abstract::getinvokeargs' => array ( 0 => 'array', ), - 'Yaf\\Action_Abstract::getModuleName' => + 'yaf\\action_abstract::getmodulename' => array ( 0 => 'string', ), - 'Yaf\\Action_Abstract::getRequest' => + 'yaf\\action_abstract::getrequest' => array ( 0 => 'Yaf\\Request_Abstract', ), - 'Yaf\\Action_Abstract::getResponse' => + 'yaf\\action_abstract::getresponse' => array ( 0 => 'Yaf\\Response_Abstract', ), - 'Yaf\\Action_Abstract::getView' => + 'yaf\\action_abstract::getview' => array ( 0 => 'Yaf\\View_Interface', ), - 'Yaf\\Action_Abstract::getViewpath' => + 'yaf\\action_abstract::getviewpath' => array ( 0 => 'string', ), - 'Yaf\\Action_Abstract::init' => + 'yaf\\action_abstract::init' => array ( 0 => 'mixed', ), - 'Yaf\\Action_Abstract::initView' => + 'yaf\\action_abstract::initview' => array ( 0 => 'Yaf\\Response_Abstract', 'options=' => 'array|null', ), - 'Yaf\\Action_Abstract::redirect' => + 'yaf\\action_abstract::redirect' => array ( 0 => 'bool', 'url' => 'string', ), - 'Yaf\\Action_Abstract::render' => + 'yaf\\action_abstract::render' => array ( 0 => 'string', 'tpl' => 'string', 'parameters=' => 'array|null', ), - 'Yaf\\Action_Abstract::setViewpath' => + 'yaf\\action_abstract::setviewpath' => array ( 0 => 'bool', 'view_directory' => 'string', ), - 'Yaf\\Application::__clone' => + 'yaf\\application::__clone' => array ( 0 => 'void', ), - 'Yaf\\Application::__construct' => + 'yaf\\application::__construct' => array ( 0 => 'void', 'config' => 'array|string', 'envrion=' => 'string', ), - 'Yaf\\Application::__destruct' => + 'yaf\\application::__destruct' => array ( 0 => 'void', ), - 'Yaf\\Application::__sleep' => + 'yaf\\application::__sleep' => array ( 0 => 'array', ), - 'Yaf\\Application::__wakeup' => + 'yaf\\application::__wakeup' => array ( 0 => 'void', ), - 'Yaf\\Application::app' => + 'yaf\\application::app' => array ( 0 => 'Yaf\\Application|null', ), - 'Yaf\\Application::bootstrap' => + 'yaf\\application::bootstrap' => array ( 0 => 'Yaf\\Application', 'bootstrap=' => 'Yaf\\Bootstrap_Abstract|null', ), - 'Yaf\\Application::clearLastError' => + 'yaf\\application::clearlasterror' => array ( 0 => 'void', ), - 'Yaf\\Application::environ' => + 'yaf\\application::environ' => array ( 0 => 'string', ), - 'Yaf\\Application::execute' => + 'yaf\\application::execute' => array ( 0 => 'void', 'entry' => 'callable', '_=' => 'string', ), - 'Yaf\\Application::getAppDirectory' => + 'yaf\\application::getappdirectory' => array ( 0 => 'string', ), - 'Yaf\\Application::getConfig' => + 'yaf\\application::getconfig' => array ( 0 => 'Yaf\\Config_Abstract', ), - 'Yaf\\Application::getDispatcher' => + 'yaf\\application::getdispatcher' => array ( 0 => 'Yaf\\Dispatcher', ), - 'Yaf\\Application::getLastErrorMsg' => + 'yaf\\application::getlasterrormsg' => array ( 0 => 'string', ), - 'Yaf\\Application::getLastErrorNo' => + 'yaf\\application::getlasterrorno' => array ( 0 => 'int', ), - 'Yaf\\Application::getModules' => + 'yaf\\application::getmodules' => array ( 0 => 'array', ), - 'Yaf\\Application::run' => + 'yaf\\application::run' => array ( 0 => 'void', ), - 'Yaf\\Application::setAppDirectory' => + 'yaf\\application::setappdirectory' => array ( 0 => 'Yaf\\Application', 'directory' => 'string', ), - 'Yaf\\Config\\Ini::__construct' => + 'yaf\\config\\ini::__construct' => array ( 0 => 'void', 'config_file' => 'string', 'section=' => 'string', ), - 'Yaf\\Config\\Ini::__get' => + 'yaf\\config\\ini::__get' => array ( 0 => 'mixed', 'name=' => 'mixed', ), - 'Yaf\\Config\\Ini::__isset' => + 'yaf\\config\\ini::__isset' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Yaf\\Config\\Ini::__set' => + 'yaf\\config\\ini::__set' => array ( 0 => 'void', 'name' => 'mixed', 'value' => 'mixed', ), - 'Yaf\\Config\\Ini::count' => + 'yaf\\config\\ini::count' => array ( 0 => 'int', ), - 'Yaf\\Config\\Ini::current' => + 'yaf\\config\\ini::current' => array ( 0 => 'mixed', ), - 'Yaf\\Config\\Ini::get' => + 'yaf\\config\\ini::get' => array ( 0 => 'mixed', 'name=' => 'mixed', ), - 'Yaf\\Config\\Ini::key' => + 'yaf\\config\\ini::key' => array ( 0 => 'int|string', ), - 'Yaf\\Config\\Ini::next' => + 'yaf\\config\\ini::next' => array ( 0 => 'void', ), - 'Yaf\\Config\\Ini::offsetExists' => + 'yaf\\config\\ini::offsetexists' => array ( 0 => 'bool', 'name' => 'int|string', ), - 'Yaf\\Config\\Ini::offsetGet' => + 'yaf\\config\\ini::offsetget' => array ( 0 => 'mixed', 'name' => 'int|string', ), - 'Yaf\\Config\\Ini::offsetSet' => + 'yaf\\config\\ini::offsetset' => array ( 0 => 'void', 'name' => 'int|null|string', 'value' => 'mixed', ), - 'Yaf\\Config\\Ini::offsetUnset' => + 'yaf\\config\\ini::offsetunset' => array ( 0 => 'void', 'name' => 'int|string', ), - 'Yaf\\Config\\Ini::readonly' => + 'yaf\\config\\ini::readonly' => array ( 0 => 'bool', ), - 'Yaf\\Config\\Ini::rewind' => + 'yaf\\config\\ini::rewind' => array ( 0 => 'void', ), - 'Yaf\\Config\\Ini::set' => + 'yaf\\config\\ini::set' => array ( 0 => 'Yaf\\Config_Abstract', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf\\Config\\Ini::toArray' => + 'yaf\\config\\ini::toarray' => array ( 0 => 'array', ), - 'Yaf\\Config\\Ini::valid' => + 'yaf\\config\\ini::valid' => array ( 0 => 'bool', ), - 'Yaf\\Config\\Simple::__construct' => + 'yaf\\config\\simple::__construct' => array ( 0 => 'void', 'array' => 'array', 'readonly=' => 'string', ), - 'Yaf\\Config\\Simple::__get' => + 'yaf\\config\\simple::__get' => array ( 0 => 'mixed', 'name=' => 'mixed', ), - 'Yaf\\Config\\Simple::__isset' => + 'yaf\\config\\simple::__isset' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Yaf\\Config\\Simple::__set' => + 'yaf\\config\\simple::__set' => array ( 0 => 'void', 'name' => 'mixed', 'value' => 'mixed', ), - 'Yaf\\Config\\Simple::count' => + 'yaf\\config\\simple::count' => array ( 0 => 'int', ), - 'Yaf\\Config\\Simple::current' => + 'yaf\\config\\simple::current' => array ( 0 => 'mixed', ), - 'Yaf\\Config\\Simple::get' => + 'yaf\\config\\simple::get' => array ( 0 => 'mixed', 'name=' => 'mixed', ), - 'Yaf\\Config\\Simple::key' => + 'yaf\\config\\simple::key' => array ( 0 => 'int|string', ), - 'Yaf\\Config\\Simple::next' => + 'yaf\\config\\simple::next' => array ( 0 => 'void', ), - 'Yaf\\Config\\Simple::offsetExists' => + 'yaf\\config\\simple::offsetexists' => array ( 0 => 'bool', 'name' => 'int|string', ), - 'Yaf\\Config\\Simple::offsetGet' => + 'yaf\\config\\simple::offsetget' => array ( 0 => 'mixed', 'name' => 'int|string', ), - 'Yaf\\Config\\Simple::offsetSet' => + 'yaf\\config\\simple::offsetset' => array ( 0 => 'void', 'name' => 'int|null|string', 'value' => 'mixed', ), - 'Yaf\\Config\\Simple::offsetUnset' => + 'yaf\\config\\simple::offsetunset' => array ( 0 => 'void', 'name' => 'int|string', ), - 'Yaf\\Config\\Simple::readonly' => + 'yaf\\config\\simple::readonly' => array ( 0 => 'bool', ), - 'Yaf\\Config\\Simple::rewind' => + 'yaf\\config\\simple::rewind' => array ( 0 => 'void', ), - 'Yaf\\Config\\Simple::set' => + 'yaf\\config\\simple::set' => array ( 0 => 'Yaf\\Config_Abstract', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf\\Config\\Simple::toArray' => + 'yaf\\config\\simple::toarray' => array ( 0 => 'array', ), - 'Yaf\\Config\\Simple::valid' => + 'yaf\\config\\simple::valid' => array ( 0 => 'bool', ), - 'Yaf\\Config_Abstract::__construct' => + 'yaf\\config_abstract::__construct' => array ( 0 => 'void', ), - 'Yaf\\Config_Abstract::get' => + 'yaf\\config_abstract::get' => array ( 0 => 'mixed', 'name=' => 'string', ), - 'Yaf\\Config_Abstract::readonly' => + 'yaf\\config_abstract::readonly' => array ( 0 => 'bool', ), - 'Yaf\\Config_Abstract::set' => + 'yaf\\config_abstract::set' => array ( 0 => 'Yaf\\Config_Abstract', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf\\Config_Abstract::toArray' => + 'yaf\\config_abstract::toarray' => array ( 0 => 'array', ), - 'Yaf\\Controller_Abstract::__clone' => + 'yaf\\controller_abstract::__clone' => array ( 0 => 'void', ), - 'Yaf\\Controller_Abstract::__construct' => + 'yaf\\controller_abstract::__construct' => array ( 0 => 'void', 'request' => 'Yaf\\Request_Abstract', @@ -79547,13 +79547,13 @@ 'view' => 'Yaf\\View_Interface', 'invokeArgs=' => 'array|null', ), - 'Yaf\\Controller_Abstract::display' => + 'yaf\\controller_abstract::display' => array ( 0 => 'bool', 'tpl' => 'string', 'parameters=' => 'array|null', ), - 'Yaf\\Controller_Abstract::forward' => + 'yaf\\controller_abstract::forward' => array ( 0 => 'bool', 'module' => 'string', @@ -79561,484 +79561,484 @@ 'action=' => 'string', 'parameters=' => 'array|null', ), - 'Yaf\\Controller_Abstract::getInvokeArg' => + 'yaf\\controller_abstract::getinvokearg' => array ( 0 => 'mixed|null', 'name' => 'string', ), - 'Yaf\\Controller_Abstract::getInvokeArgs' => + 'yaf\\controller_abstract::getinvokeargs' => array ( 0 => 'array', ), - 'Yaf\\Controller_Abstract::getModuleName' => + 'yaf\\controller_abstract::getmodulename' => array ( 0 => 'string', ), - 'Yaf\\Controller_Abstract::getRequest' => + 'yaf\\controller_abstract::getrequest' => array ( 0 => 'Yaf\\Request_Abstract', ), - 'Yaf\\Controller_Abstract::getResponse' => + 'yaf\\controller_abstract::getresponse' => array ( 0 => 'Yaf\\Response_Abstract', ), - 'Yaf\\Controller_Abstract::getView' => + 'yaf\\controller_abstract::getview' => array ( 0 => 'Yaf\\View_Interface', ), - 'Yaf\\Controller_Abstract::getViewpath' => + 'yaf\\controller_abstract::getviewpath' => array ( 0 => 'string', ), - 'Yaf\\Controller_Abstract::init' => + 'yaf\\controller_abstract::init' => array ( 0 => 'mixed', ), - 'Yaf\\Controller_Abstract::initView' => + 'yaf\\controller_abstract::initview' => array ( 0 => 'Yaf\\Response_Abstract', 'options=' => 'array|null', ), - 'Yaf\\Controller_Abstract::redirect' => + 'yaf\\controller_abstract::redirect' => array ( 0 => 'bool', 'url' => 'string', ), - 'Yaf\\Controller_Abstract::render' => + 'yaf\\controller_abstract::render' => array ( 0 => 'string', 'tpl' => 'string', 'parameters=' => 'array|null', ), - 'Yaf\\Controller_Abstract::setViewpath' => + 'yaf\\controller_abstract::setviewpath' => array ( 0 => 'bool', 'view_directory' => 'string', ), - 'Yaf\\Dispatcher::__clone' => + 'yaf\\dispatcher::__clone' => array ( 0 => 'void', ), - 'Yaf\\Dispatcher::__construct' => + 'yaf\\dispatcher::__construct' => array ( 0 => 'void', ), - 'Yaf\\Dispatcher::__sleep' => + 'yaf\\dispatcher::__sleep' => array ( 0 => 'list', ), - 'Yaf\\Dispatcher::__wakeup' => + 'yaf\\dispatcher::__wakeup' => array ( 0 => 'void', ), - 'Yaf\\Dispatcher::autoRender' => + 'yaf\\dispatcher::autorender' => array ( 0 => 'Yaf\\Dispatcher', 'flag=' => 'bool', ), - 'Yaf\\Dispatcher::catchException' => + 'yaf\\dispatcher::catchexception' => array ( 0 => 'Yaf\\Dispatcher', 'flag=' => 'bool', ), - 'Yaf\\Dispatcher::disableView' => + 'yaf\\dispatcher::disableview' => array ( 0 => 'bool', ), - 'Yaf\\Dispatcher::dispatch' => + 'yaf\\dispatcher::dispatch' => array ( 0 => 'Yaf\\Response_Abstract', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Dispatcher::enableView' => + 'yaf\\dispatcher::enableview' => array ( 0 => 'Yaf\\Dispatcher', ), - 'Yaf\\Dispatcher::flushInstantly' => + 'yaf\\dispatcher::flushinstantly' => array ( 0 => 'Yaf\\Dispatcher', 'flag=' => 'bool', ), - 'Yaf\\Dispatcher::getApplication' => + 'yaf\\dispatcher::getapplication' => array ( 0 => 'Yaf\\Application', ), - 'Yaf\\Dispatcher::getInstance' => + 'yaf\\dispatcher::getinstance' => array ( 0 => 'Yaf\\Dispatcher', ), - 'Yaf\\Dispatcher::getRequest' => + 'yaf\\dispatcher::getrequest' => array ( 0 => 'Yaf\\Request_Abstract', ), - 'Yaf\\Dispatcher::getRouter' => + 'yaf\\dispatcher::getrouter' => array ( 0 => 'Yaf\\Router', ), - 'Yaf\\Dispatcher::initView' => + 'yaf\\dispatcher::initview' => array ( 0 => 'Yaf\\View_Interface', 'templates_dir' => 'string', 'options=' => 'array|null', ), - 'Yaf\\Dispatcher::registerPlugin' => + 'yaf\\dispatcher::registerplugin' => array ( 0 => 'Yaf\\Dispatcher', 'plugin' => 'Yaf\\Plugin_Abstract', ), - 'Yaf\\Dispatcher::returnResponse' => + 'yaf\\dispatcher::returnresponse' => array ( 0 => 'Yaf\\Dispatcher', 'flag' => 'bool', ), - 'Yaf\\Dispatcher::setDefaultAction' => + 'yaf\\dispatcher::setdefaultaction' => array ( 0 => 'Yaf\\Dispatcher', 'action' => 'string', ), - 'Yaf\\Dispatcher::setDefaultController' => + 'yaf\\dispatcher::setdefaultcontroller' => array ( 0 => 'Yaf\\Dispatcher', 'controller' => 'string', ), - 'Yaf\\Dispatcher::setDefaultModule' => + 'yaf\\dispatcher::setdefaultmodule' => array ( 0 => 'Yaf\\Dispatcher', 'module' => 'string', ), - 'Yaf\\Dispatcher::setErrorHandler' => + 'yaf\\dispatcher::seterrorhandler' => array ( 0 => 'Yaf\\Dispatcher', 'callback' => 'callable', 'error_types' => 'int', ), - 'Yaf\\Dispatcher::setRequest' => + 'yaf\\dispatcher::setrequest' => array ( 0 => 'Yaf\\Dispatcher', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Dispatcher::setView' => + 'yaf\\dispatcher::setview' => array ( 0 => 'Yaf\\Dispatcher', 'view' => 'Yaf\\View_Interface', ), - 'Yaf\\Dispatcher::throwException' => + 'yaf\\dispatcher::throwexception' => array ( 0 => 'Yaf\\Dispatcher', 'flag=' => 'bool', ), - 'Yaf\\Loader::__clone' => + 'yaf\\loader::__clone' => array ( 0 => 'void', ), - 'Yaf\\Loader::__construct' => + 'yaf\\loader::__construct' => array ( 0 => 'void', ), - 'Yaf\\Loader::__sleep' => + 'yaf\\loader::__sleep' => array ( 0 => 'list', ), - 'Yaf\\Loader::__wakeup' => + 'yaf\\loader::__wakeup' => array ( 0 => 'void', ), - 'Yaf\\Loader::autoload' => + 'yaf\\loader::autoload' => array ( 0 => 'bool', 'class_name' => 'string', ), - 'Yaf\\Loader::clearLocalNamespace' => + 'yaf\\loader::clearlocalnamespace' => array ( 0 => 'mixed', ), - 'Yaf\\Loader::getInstance' => + 'yaf\\loader::getinstance' => array ( 0 => 'Yaf\\Loader', 'local_library_path=' => 'string', 'global_library_path=' => 'string', ), - 'Yaf\\Loader::getLibraryPath' => + 'yaf\\loader::getlibrarypath' => array ( 0 => 'string', 'is_global=' => 'bool', ), - 'Yaf\\Loader::getLocalNamespace' => + 'yaf\\loader::getlocalnamespace' => array ( 0 => 'string', ), - 'Yaf\\Loader::import' => + 'yaf\\loader::import' => array ( 0 => 'bool', 'file' => 'string', ), - 'Yaf\\Loader::isLocalName' => + 'yaf\\loader::islocalname' => array ( 0 => 'bool', 'class_name' => 'string', ), - 'Yaf\\Loader::registerLocalNamespace' => + 'yaf\\loader::registerlocalnamespace' => array ( 0 => 'bool', 'name_prefix' => 'array|string', ), - 'Yaf\\Loader::setLibraryPath' => + 'yaf\\loader::setlibrarypath' => array ( 0 => 'Yaf\\Loader', 'directory' => 'string', 'global=' => 'bool', ), - 'Yaf\\Plugin_Abstract::dispatchLoopShutdown' => + 'yaf\\plugin_abstract::dispatchloopshutdown' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', 'response' => 'Yaf\\Response_Abstract', ), - 'Yaf\\Plugin_Abstract::dispatchLoopStartup' => + 'yaf\\plugin_abstract::dispatchloopstartup' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', 'response' => 'Yaf\\Response_Abstract', ), - 'Yaf\\Plugin_Abstract::postDispatch' => + 'yaf\\plugin_abstract::postdispatch' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', 'response' => 'Yaf\\Response_Abstract', ), - 'Yaf\\Plugin_Abstract::preDispatch' => + 'yaf\\plugin_abstract::predispatch' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', 'response' => 'Yaf\\Response_Abstract', ), - 'Yaf\\Plugin_Abstract::preResponse' => + 'yaf\\plugin_abstract::preresponse' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', 'response' => 'Yaf\\Response_Abstract', ), - 'Yaf\\Plugin_Abstract::routerShutdown' => + 'yaf\\plugin_abstract::routershutdown' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', 'response' => 'Yaf\\Response_Abstract', ), - 'Yaf\\Plugin_Abstract::routerStartup' => + 'yaf\\plugin_abstract::routerstartup' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', 'response' => 'Yaf\\Response_Abstract', ), - 'Yaf\\Registry::__clone' => + 'yaf\\registry::__clone' => array ( 0 => 'void', ), - 'Yaf\\Registry::__construct' => + 'yaf\\registry::__construct' => array ( 0 => 'void', ), - 'Yaf\\Registry::del' => + 'yaf\\registry::del' => array ( 0 => 'bool|null', 'name' => 'string', ), - 'Yaf\\Registry::get' => + 'yaf\\registry::get' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Yaf\\Registry::has' => + 'yaf\\registry::has' => array ( 0 => 'bool', 'name' => 'string', ), - 'Yaf\\Registry::set' => + 'yaf\\registry::set' => array ( 0 => 'bool', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf\\Request\\Http::__clone' => + 'yaf\\request\\http::__clone' => array ( 0 => 'void', ), - 'Yaf\\Request\\Http::__construct' => + 'yaf\\request\\http::__construct' => array ( 0 => 'void', 'request_uri' => 'string', 'base_uri' => 'string', ), - 'Yaf\\Request\\Http::get' => + 'yaf\\request\\http::get' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'string', ), - 'Yaf\\Request\\Http::getActionName' => + 'yaf\\request\\http::getactionname' => array ( 0 => 'string', ), - 'Yaf\\Request\\Http::getBaseUri' => + 'yaf\\request\\http::getbaseuri' => array ( 0 => 'string', ), - 'Yaf\\Request\\Http::getControllerName' => + 'yaf\\request\\http::getcontrollername' => array ( 0 => 'string', ), - 'Yaf\\Request\\Http::getCookie' => + 'yaf\\request\\http::getcookie' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::getEnv' => + 'yaf\\request\\http::getenv' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::getException' => + 'yaf\\request\\http::getexception' => array ( 0 => 'Yaf\\Exception', ), - 'Yaf\\Request\\Http::getFiles' => + 'yaf\\request\\http::getfiles' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::getLanguage' => + 'yaf\\request\\http::getlanguage' => array ( 0 => 'string', ), - 'Yaf\\Request\\Http::getMethod' => + 'yaf\\request\\http::getmethod' => array ( 0 => 'string', ), - 'Yaf\\Request\\Http::getModuleName' => + 'yaf\\request\\http::getmodulename' => array ( 0 => 'string', ), - 'Yaf\\Request\\Http::getParam' => + 'yaf\\request\\http::getparam' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::getParams' => + 'yaf\\request\\http::getparams' => array ( 0 => 'array', ), - 'Yaf\\Request\\Http::getPost' => + 'yaf\\request\\http::getpost' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::getQuery' => + 'yaf\\request\\http::getquery' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::getRequest' => + 'yaf\\request\\http::getrequest' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::getRequestUri' => + 'yaf\\request\\http::getrequesturi' => array ( 0 => 'string', ), - 'Yaf\\Request\\Http::getServer' => + 'yaf\\request\\http::getserver' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::isCli' => + 'yaf\\request\\http::iscli' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isDispatched' => + 'yaf\\request\\http::isdispatched' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isGet' => + 'yaf\\request\\http::isget' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isHead' => + 'yaf\\request\\http::ishead' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isOptions' => + 'yaf\\request\\http::isoptions' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isPost' => + 'yaf\\request\\http::ispost' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isPut' => + 'yaf\\request\\http::isput' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isRouted' => + 'yaf\\request\\http::isrouted' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isXmlHttpRequest' => + 'yaf\\request\\http::isxmlhttprequest' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::setActionName' => + 'yaf\\request\\http::setactionname' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'action' => 'string', ), - 'Yaf\\Request\\Http::setBaseUri' => + 'yaf\\request\\http::setbaseuri' => array ( 0 => 'bool', 'uri' => 'string', ), - 'Yaf\\Request\\Http::setControllerName' => + 'yaf\\request\\http::setcontrollername' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'controller' => 'string', ), - 'Yaf\\Request\\Http::setDispatched' => + 'yaf\\request\\http::setdispatched' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::setModuleName' => + 'yaf\\request\\http::setmodulename' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'module' => 'string', ), - 'Yaf\\Request\\Http::setParam' => + 'yaf\\request\\http::setparam' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'name' => 'array|string', 'value=' => 'string', ), - 'Yaf\\Request\\Http::setRequestUri' => + 'yaf\\request\\http::setrequesturi' => array ( 0 => 'mixed', 'uri' => 'string', ), - 'Yaf\\Request\\Http::setRouted' => + 'yaf\\request\\http::setrouted' => array ( 0 => 'Yaf\\Request_Abstract|bool', ), - 'Yaf\\Request\\Simple::__clone' => + 'yaf\\request\\simple::__clone' => array ( 0 => 'void', ), - 'Yaf\\Request\\Simple::__construct' => + 'yaf\\request\\simple::__construct' => array ( 0 => 'void', 'method' => 'string', @@ -80046,408 +80046,408 @@ 'action' => 'string', 'params=' => 'string', ), - 'Yaf\\Request\\Simple::get' => + 'yaf\\request\\simple::get' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'string', ), - 'Yaf\\Request\\Simple::getActionName' => + 'yaf\\request\\simple::getactionname' => array ( 0 => 'string', ), - 'Yaf\\Request\\Simple::getBaseUri' => + 'yaf\\request\\simple::getbaseuri' => array ( 0 => 'string', ), - 'Yaf\\Request\\Simple::getControllerName' => + 'yaf\\request\\simple::getcontrollername' => array ( 0 => 'string', ), - 'Yaf\\Request\\Simple::getCookie' => + 'yaf\\request\\simple::getcookie' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'string', ), - 'Yaf\\Request\\Simple::getEnv' => + 'yaf\\request\\simple::getenv' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Simple::getException' => + 'yaf\\request\\simple::getexception' => array ( 0 => 'Yaf\\Exception', ), - 'Yaf\\Request\\Simple::getFiles' => + 'yaf\\request\\simple::getfiles' => array ( 0 => 'array', 'name=' => 'mixed', 'default=' => 'null', ), - 'Yaf\\Request\\Simple::getLanguage' => + 'yaf\\request\\simple::getlanguage' => array ( 0 => 'string', ), - 'Yaf\\Request\\Simple::getMethod' => + 'yaf\\request\\simple::getmethod' => array ( 0 => 'string', ), - 'Yaf\\Request\\Simple::getModuleName' => + 'yaf\\request\\simple::getmodulename' => array ( 0 => 'string', ), - 'Yaf\\Request\\Simple::getParam' => + 'yaf\\request\\simple::getparam' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Simple::getParams' => + 'yaf\\request\\simple::getparams' => array ( 0 => 'array', ), - 'Yaf\\Request\\Simple::getPost' => + 'yaf\\request\\simple::getpost' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'string', ), - 'Yaf\\Request\\Simple::getQuery' => + 'yaf\\request\\simple::getquery' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'string', ), - 'Yaf\\Request\\Simple::getRequest' => + 'yaf\\request\\simple::getrequest' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'string', ), - 'Yaf\\Request\\Simple::getRequestUri' => + 'yaf\\request\\simple::getrequesturi' => array ( 0 => 'string', ), - 'Yaf\\Request\\Simple::getServer' => + 'yaf\\request\\simple::getserver' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Simple::isCli' => + 'yaf\\request\\simple::iscli' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isDispatched' => + 'yaf\\request\\simple::isdispatched' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isGet' => + 'yaf\\request\\simple::isget' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isHead' => + 'yaf\\request\\simple::ishead' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isOptions' => + 'yaf\\request\\simple::isoptions' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isPost' => + 'yaf\\request\\simple::ispost' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isPut' => + 'yaf\\request\\simple::isput' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isRouted' => + 'yaf\\request\\simple::isrouted' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isXmlHttpRequest' => + 'yaf\\request\\simple::isxmlhttprequest' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::setActionName' => + 'yaf\\request\\simple::setactionname' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'action' => 'string', ), - 'Yaf\\Request\\Simple::setBaseUri' => + 'yaf\\request\\simple::setbaseuri' => array ( 0 => 'bool', 'uri' => 'string', ), - 'Yaf\\Request\\Simple::setControllerName' => + 'yaf\\request\\simple::setcontrollername' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'controller' => 'string', ), - 'Yaf\\Request\\Simple::setDispatched' => + 'yaf\\request\\simple::setdispatched' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::setModuleName' => + 'yaf\\request\\simple::setmodulename' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'module' => 'string', ), - 'Yaf\\Request\\Simple::setParam' => + 'yaf\\request\\simple::setparam' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'name' => 'array|string', 'value=' => 'string', ), - 'Yaf\\Request\\Simple::setRequestUri' => + 'yaf\\request\\simple::setrequesturi' => array ( 0 => 'mixed', 'uri' => 'string', ), - 'Yaf\\Request\\Simple::setRouted' => + 'yaf\\request\\simple::setrouted' => array ( 0 => 'Yaf\\Request_Abstract|bool', ), - 'Yaf\\Request_Abstract::getActionName' => + 'yaf\\request_abstract::getactionname' => array ( 0 => 'string', ), - 'Yaf\\Request_Abstract::getBaseUri' => + 'yaf\\request_abstract::getbaseuri' => array ( 0 => 'string', ), - 'Yaf\\Request_Abstract::getControllerName' => + 'yaf\\request_abstract::getcontrollername' => array ( 0 => 'string', ), - 'Yaf\\Request_Abstract::getEnv' => + 'yaf\\request_abstract::getenv' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request_Abstract::getException' => + 'yaf\\request_abstract::getexception' => array ( 0 => 'Yaf\\Exception', ), - 'Yaf\\Request_Abstract::getLanguage' => + 'yaf\\request_abstract::getlanguage' => array ( 0 => 'string', ), - 'Yaf\\Request_Abstract::getMethod' => + 'yaf\\request_abstract::getmethod' => array ( 0 => 'string', ), - 'Yaf\\Request_Abstract::getModuleName' => + 'yaf\\request_abstract::getmodulename' => array ( 0 => 'string', ), - 'Yaf\\Request_Abstract::getParam' => + 'yaf\\request_abstract::getparam' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request_Abstract::getParams' => + 'yaf\\request_abstract::getparams' => array ( 0 => 'array', ), - 'Yaf\\Request_Abstract::getRequestUri' => + 'yaf\\request_abstract::getrequesturi' => array ( 0 => 'string', ), - 'Yaf\\Request_Abstract::getServer' => + 'yaf\\request_abstract::getserver' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request_Abstract::isCli' => + 'yaf\\request_abstract::iscli' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isDispatched' => + 'yaf\\request_abstract::isdispatched' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isGet' => + 'yaf\\request_abstract::isget' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isHead' => + 'yaf\\request_abstract::ishead' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isOptions' => + 'yaf\\request_abstract::isoptions' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isPost' => + 'yaf\\request_abstract::ispost' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isPut' => + 'yaf\\request_abstract::isput' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isRouted' => + 'yaf\\request_abstract::isrouted' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isXmlHttpRequest' => + 'yaf\\request_abstract::isxmlhttprequest' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::setActionName' => + 'yaf\\request_abstract::setactionname' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'action' => 'string', ), - 'Yaf\\Request_Abstract::setBaseUri' => + 'yaf\\request_abstract::setbaseuri' => array ( 0 => 'bool', 'uri' => 'string', ), - 'Yaf\\Request_Abstract::setControllerName' => + 'yaf\\request_abstract::setcontrollername' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'controller' => 'string', ), - 'Yaf\\Request_Abstract::setDispatched' => + 'yaf\\request_abstract::setdispatched' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::setModuleName' => + 'yaf\\request_abstract::setmodulename' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'module' => 'string', ), - 'Yaf\\Request_Abstract::setParam' => + 'yaf\\request_abstract::setparam' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'name' => 'array|string', 'value=' => 'string', ), - 'Yaf\\Request_Abstract::setRequestUri' => + 'yaf\\request_abstract::setrequesturi' => array ( 0 => 'mixed', 'uri' => 'string', ), - 'Yaf\\Request_Abstract::setRouted' => + 'yaf\\request_abstract::setrouted' => array ( 0 => 'Yaf\\Request_Abstract|bool', ), - 'Yaf\\Response\\Cli::__clone' => + 'yaf\\response\\cli::__clone' => array ( 0 => 'void', ), - 'Yaf\\Response\\Cli::__construct' => + 'yaf\\response\\cli::__construct' => array ( 0 => 'void', ), - 'Yaf\\Response\\Cli::__destruct' => + 'yaf\\response\\cli::__destruct' => array ( 0 => 'void', ), - 'Yaf\\Response\\Cli::__toString' => + 'yaf\\response\\cli::__tostring' => array ( 0 => 'string', ), - 'Yaf\\Response\\Cli::appendBody' => + 'yaf\\response\\cli::appendbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response\\Cli::clearBody' => + 'yaf\\response\\cli::clearbody' => array ( 0 => 'bool', 'key=' => 'string', ), - 'Yaf\\Response\\Cli::getBody' => + 'yaf\\response\\cli::getbody' => array ( 0 => 'mixed', 'key=' => 'null|string', ), - 'Yaf\\Response\\Cli::prependBody' => + 'yaf\\response\\cli::prependbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response\\Cli::setBody' => + 'yaf\\response\\cli::setbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response\\Http::__clone' => + 'yaf\\response\\http::__clone' => array ( 0 => 'void', ), - 'Yaf\\Response\\Http::__construct' => + 'yaf\\response\\http::__construct' => array ( 0 => 'void', ), - 'Yaf\\Response\\Http::__destruct' => + 'yaf\\response\\http::__destruct' => array ( 0 => 'void', ), - 'Yaf\\Response\\Http::__toString' => + 'yaf\\response\\http::__tostring' => array ( 0 => 'string', ), - 'Yaf\\Response\\Http::appendBody' => + 'yaf\\response\\http::appendbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response\\Http::clearBody' => + 'yaf\\response\\http::clearbody' => array ( 0 => 'bool', 'key=' => 'string', ), - 'Yaf\\Response\\Http::clearHeaders' => + 'yaf\\response\\http::clearheaders' => array ( 0 => 'Yaf\\Response_Abstract|false', 'name=' => 'string', ), - 'Yaf\\Response\\Http::getBody' => + 'yaf\\response\\http::getbody' => array ( 0 => 'mixed', 'key=' => 'null|string', ), - 'Yaf\\Response\\Http::getHeader' => + 'yaf\\response\\http::getheader' => array ( 0 => 'mixed', 'name=' => 'string', ), - 'Yaf\\Response\\Http::prependBody' => + 'yaf\\response\\http::prependbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response\\Http::response' => + 'yaf\\response\\http::response' => array ( 0 => 'bool', ), - 'Yaf\\Response\\Http::setAllHeaders' => + 'yaf\\response\\http::setallheaders' => array ( 0 => 'bool', 'headers' => 'array', ), - 'Yaf\\Response\\Http::setBody' => + 'yaf\\response\\http::setbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response\\Http::setHeader' => + 'yaf\\response\\http::setheader' => array ( 0 => 'bool', 'name' => 'string', @@ -80455,73 +80455,73 @@ 'replace=' => 'bool', 'response_code=' => 'int', ), - 'Yaf\\Response\\Http::setRedirect' => + 'yaf\\response\\http::setredirect' => array ( 0 => 'bool', 'url' => 'string', ), - 'Yaf\\Response_Abstract::__clone' => + 'yaf\\response_abstract::__clone' => array ( 0 => 'void', ), - 'Yaf\\Response_Abstract::__construct' => + 'yaf\\response_abstract::__construct' => array ( 0 => 'void', ), - 'Yaf\\Response_Abstract::__destruct' => + 'yaf\\response_abstract::__destruct' => array ( 0 => 'void', ), - 'Yaf\\Response_Abstract::__toString' => + 'yaf\\response_abstract::__tostring' => array ( 0 => 'void', ), - 'Yaf\\Response_Abstract::appendBody' => + 'yaf\\response_abstract::appendbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response_Abstract::clearBody' => + 'yaf\\response_abstract::clearbody' => array ( 0 => 'bool', 'key=' => 'string', ), - 'Yaf\\Response_Abstract::getBody' => + 'yaf\\response_abstract::getbody' => array ( 0 => 'mixed', 'key=' => 'null|string', ), - 'Yaf\\Response_Abstract::prependBody' => + 'yaf\\response_abstract::prependbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response_Abstract::setBody' => + 'yaf\\response_abstract::setbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Route\\Map::__construct' => + 'yaf\\route\\map::__construct' => array ( 0 => 'void', 'controller_prefer=' => 'bool', 'delimiter=' => 'string', ), - 'Yaf\\Route\\Map::assemble' => + 'yaf\\route\\map::assemble' => array ( 0 => 'bool', 'info' => 'array', 'query=' => 'array|null', ), - 'Yaf\\Route\\Map::route' => + 'yaf\\route\\map::route' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Route\\Regex::__construct' => + 'yaf\\route\\regex::__construct' => array ( 0 => 'void', 'match' => 'string', @@ -80530,42 +80530,42 @@ 'verify=' => 'array|null', 'reverse=' => 'string', ), - 'Yaf\\Route\\Regex::addConfig' => + 'yaf\\route\\regex::addconfig' => array ( 0 => 'Yaf\\Router|bool', 'config' => 'Yaf\\Config_Abstract', ), - 'Yaf\\Route\\Regex::addRoute' => + 'yaf\\route\\regex::addroute' => array ( 0 => 'Yaf\\Router|bool', 'name' => 'string', 'route' => 'Yaf\\Route_Interface', ), - 'Yaf\\Route\\Regex::assemble' => + 'yaf\\route\\regex::assemble' => array ( 0 => 'bool', 'info' => 'array', 'query=' => 'array|null', ), - 'Yaf\\Route\\Regex::getCurrentRoute' => + 'yaf\\route\\regex::getcurrentroute' => array ( 0 => 'string', ), - 'Yaf\\Route\\Regex::getRoute' => + 'yaf\\route\\regex::getroute' => array ( 0 => 'Yaf\\Route_Interface', 'name' => 'string', ), - 'Yaf\\Route\\Regex::getRoutes' => + 'yaf\\route\\regex::getroutes' => array ( 0 => 'array', ), - 'Yaf\\Route\\Regex::route' => + 'yaf\\route\\regex::route' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Route\\Rewrite::__construct' => + 'yaf\\route\\rewrite::__construct' => array ( 0 => 'void', 'match' => 'string', @@ -80573,348 +80573,348 @@ 'verify=' => 'array|null', 'reverse=' => 'string', ), - 'Yaf\\Route\\Rewrite::addConfig' => + 'yaf\\route\\rewrite::addconfig' => array ( 0 => 'Yaf\\Router|bool', 'config' => 'Yaf\\Config_Abstract', ), - 'Yaf\\Route\\Rewrite::addRoute' => + 'yaf\\route\\rewrite::addroute' => array ( 0 => 'Yaf\\Router|bool', 'name' => 'string', 'route' => 'Yaf\\Route_Interface', ), - 'Yaf\\Route\\Rewrite::assemble' => + 'yaf\\route\\rewrite::assemble' => array ( 0 => 'bool', 'info' => 'array', 'query=' => 'array|null', ), - 'Yaf\\Route\\Rewrite::getCurrentRoute' => + 'yaf\\route\\rewrite::getcurrentroute' => array ( 0 => 'string', ), - 'Yaf\\Route\\Rewrite::getRoute' => + 'yaf\\route\\rewrite::getroute' => array ( 0 => 'Yaf\\Route_Interface', 'name' => 'string', ), - 'Yaf\\Route\\Rewrite::getRoutes' => + 'yaf\\route\\rewrite::getroutes' => array ( 0 => 'array', ), - 'Yaf\\Route\\Rewrite::route' => + 'yaf\\route\\rewrite::route' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Route\\Simple::__construct' => + 'yaf\\route\\simple::__construct' => array ( 0 => 'void', 'module_name' => 'string', 'controller_name' => 'string', 'action_name' => 'string', ), - 'Yaf\\Route\\Simple::assemble' => + 'yaf\\route\\simple::assemble' => array ( 0 => 'bool', 'info' => 'array', 'query=' => 'array|null', ), - 'Yaf\\Route\\Simple::route' => + 'yaf\\route\\simple::route' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Route\\Supervar::__construct' => + 'yaf\\route\\supervar::__construct' => array ( 0 => 'void', 'supervar_name' => 'string', ), - 'Yaf\\Route\\Supervar::assemble' => + 'yaf\\route\\supervar::assemble' => array ( 0 => 'bool', 'info' => 'array', 'query=' => 'array|null', ), - 'Yaf\\Route\\Supervar::route' => + 'yaf\\route\\supervar::route' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Route_Interface::__construct' => + 'yaf\\route_interface::__construct' => array ( 0 => 'Yaf\\Route_Interface', ), - 'Yaf\\Route_Interface::assemble' => + 'yaf\\route_interface::assemble' => array ( 0 => 'bool', 'info' => 'array', 'query=' => 'array|null', ), - 'Yaf\\Route_Interface::route' => + 'yaf\\route_interface::route' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Route_Static::assemble' => + 'yaf\\route_static::assemble' => array ( 0 => 'bool', 'info' => 'array', 'query=' => 'array|null', ), - 'Yaf\\Route_Static::match' => + 'yaf\\route_static::match' => array ( 0 => 'bool', 'uri' => 'string', ), - 'Yaf\\Route_Static::route' => + 'yaf\\route_static::route' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Router::__construct' => + 'yaf\\router::__construct' => array ( 0 => 'void', ), - 'Yaf\\Router::addConfig' => + 'yaf\\router::addconfig' => array ( 0 => 'Yaf\\Router|false', 'config' => 'Yaf\\Config_Abstract', ), - 'Yaf\\Router::addRoute' => + 'yaf\\router::addroute' => array ( 0 => 'Yaf\\Router|false', 'name' => 'string', 'route' => 'Yaf\\Route_Interface', ), - 'Yaf\\Router::getCurrentRoute' => + 'yaf\\router::getcurrentroute' => array ( 0 => 'string', ), - 'Yaf\\Router::getRoute' => + 'yaf\\router::getroute' => array ( 0 => 'Yaf\\Route_Interface', 'name' => 'string', ), - 'Yaf\\Router::getRoutes' => + 'yaf\\router::getroutes' => array ( 0 => 'array', ), - 'Yaf\\Router::route' => + 'yaf\\router::route' => array ( 0 => 'Yaf\\Router|false', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Session::__clone' => + 'yaf\\session::__clone' => array ( 0 => 'void', ), - 'Yaf\\Session::__construct' => + 'yaf\\session::__construct' => array ( 0 => 'void', ), - 'Yaf\\Session::__get' => + 'yaf\\session::__get' => array ( 0 => 'void', 'name' => 'mixed', ), - 'Yaf\\Session::__isset' => + 'yaf\\session::__isset' => array ( 0 => 'void', 'name' => 'mixed', ), - 'Yaf\\Session::__set' => + 'yaf\\session::__set' => array ( 0 => 'void', 'name' => 'mixed', 'value' => 'mixed', ), - 'Yaf\\Session::__sleep' => + 'yaf\\session::__sleep' => array ( 0 => 'list', ), - 'Yaf\\Session::__unset' => + 'yaf\\session::__unset' => array ( 0 => 'void', 'name' => 'mixed', ), - 'Yaf\\Session::__wakeup' => + 'yaf\\session::__wakeup' => array ( 0 => 'void', ), - 'Yaf\\Session::count' => + 'yaf\\session::count' => array ( 0 => 'int', ), - 'Yaf\\Session::current' => + 'yaf\\session::current' => array ( 0 => 'mixed', ), - 'Yaf\\Session::del' => + 'yaf\\session::del' => array ( 0 => 'Yaf\\Session|false', 'name' => 'string', ), - 'Yaf\\Session::get' => + 'yaf\\session::get' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Yaf\\Session::getInstance' => + 'yaf\\session::getinstance' => array ( 0 => 'Yaf\\Session', ), - 'Yaf\\Session::has' => + 'yaf\\session::has' => array ( 0 => 'bool', 'name' => 'string', ), - 'Yaf\\Session::key' => + 'yaf\\session::key' => array ( 0 => 'int|string', ), - 'Yaf\\Session::next' => + 'yaf\\session::next' => array ( 0 => 'void', ), - 'Yaf\\Session::offsetExists' => + 'yaf\\session::offsetexists' => array ( 0 => 'bool', 'name' => 'int|string', ), - 'Yaf\\Session::offsetGet' => + 'yaf\\session::offsetget' => array ( 0 => 'mixed', 'name' => 'int|string', ), - 'Yaf\\Session::offsetSet' => + 'yaf\\session::offsetset' => array ( 0 => 'void', 'name' => 'int|null|string', 'value' => 'mixed', ), - 'Yaf\\Session::offsetUnset' => + 'yaf\\session::offsetunset' => array ( 0 => 'void', 'name' => 'int|string', ), - 'Yaf\\Session::rewind' => + 'yaf\\session::rewind' => array ( 0 => 'void', ), - 'Yaf\\Session::set' => + 'yaf\\session::set' => array ( 0 => 'Yaf\\Session|false', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf\\Session::start' => + 'yaf\\session::start' => array ( 0 => 'Yaf\\Session', ), - 'Yaf\\Session::valid' => + 'yaf\\session::valid' => array ( 0 => 'bool', ), - 'Yaf\\View\\Simple::__construct' => + 'yaf\\view\\simple::__construct' => array ( 0 => 'void', 'template_dir' => 'string', 'options=' => 'array|null', ), - 'Yaf\\View\\Simple::__get' => + 'yaf\\view\\simple::__get' => array ( 0 => 'mixed', 'name=' => 'null', ), - 'Yaf\\View\\Simple::__isset' => + 'yaf\\view\\simple::__isset' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Yaf\\View\\Simple::__set' => + 'yaf\\view\\simple::__set' => array ( 0 => 'void', 'name' => 'string', 'value=' => 'mixed', ), - 'Yaf\\View\\Simple::assign' => + 'yaf\\view\\simple::assign' => array ( 0 => 'Yaf\\View\\Simple', 'name' => 'array|string', 'value=' => 'mixed', ), - 'Yaf\\View\\Simple::assignRef' => + 'yaf\\view\\simple::assignref' => array ( 0 => 'Yaf\\View\\Simple', 'name' => 'string', '&value' => 'mixed', ), - 'Yaf\\View\\Simple::clear' => + 'yaf\\view\\simple::clear' => array ( 0 => 'Yaf\\View\\Simple', 'name=' => 'string', ), - 'Yaf\\View\\Simple::display' => + 'yaf\\view\\simple::display' => array ( 0 => 'bool', 'tpl' => 'string', 'tpl_vars=' => 'array|null', ), - 'Yaf\\View\\Simple::eval' => + 'yaf\\view\\simple::eval' => array ( 0 => 'bool|null', 'tpl_str' => 'string', 'vars=' => 'array|null', ), - 'Yaf\\View\\Simple::getScriptPath' => + 'yaf\\view\\simple::getscriptpath' => array ( 0 => 'string', ), - 'Yaf\\View\\Simple::render' => + 'yaf\\view\\simple::render' => array ( 0 => 'null|string', 'tpl' => 'string', 'tpl_vars=' => 'array|null', ), - 'Yaf\\View\\Simple::setScriptPath' => + 'yaf\\view\\simple::setscriptpath' => array ( 0 => 'Yaf\\View\\Simple', 'template_dir' => 'string', ), - 'Yaf\\View_Interface::assign' => + 'yaf\\view_interface::assign' => array ( 0 => 'bool', 'name' => 'array|string', 'value' => 'mixed', ), - 'Yaf\\View_Interface::display' => + 'yaf\\view_interface::display' => array ( 0 => 'bool', 'tpl' => 'string', 'tpl_vars=' => 'array|null', ), - 'Yaf\\View_Interface::getScriptPath' => + 'yaf\\view_interface::getscriptpath' => array ( 0 => 'string', ), - 'Yaf\\View_Interface::render' => + 'yaf\\view_interface::render' => array ( 0 => 'string', 'tpl' => 'string', 'tpl_vars=' => 'array|null', ), - 'Yaf\\View_Interface::setScriptPath' => + 'yaf\\view_interface::setscriptpath' => array ( 0 => 'void', 'template_dir' => 'string', ), - 'Yaf_Action_Abstract::__clone' => + 'yaf_action_abstract::__clone' => array ( 0 => 'void', ), - 'Yaf_Action_Abstract::__construct' => + 'yaf_action_abstract::__construct' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', @@ -80922,19 +80922,19 @@ 'view' => 'Yaf_View_Interface', 'invokeArgs=' => 'array|null', ), - 'Yaf_Action_Abstract::display' => + 'yaf_action_abstract::display' => array ( 0 => 'bool', 'tpl' => 'string', 'parameters=' => 'array|null', ), - 'Yaf_Action_Abstract::execute' => + 'yaf_action_abstract::execute' => array ( 0 => 'mixed', 'arg=' => 'mixed', '...args=' => 'mixed', ), - 'Yaf_Action_Abstract::forward' => + 'yaf_action_abstract::forward' => array ( 0 => 'bool', 'module' => 'string', @@ -80942,368 +80942,368 @@ 'action=' => 'string', 'parameters=' => 'array|null', ), - 'Yaf_Action_Abstract::getController' => + 'yaf_action_abstract::getcontroller' => array ( 0 => 'Yaf_Controller_Abstract', ), - 'Yaf_Action_Abstract::getControllerName' => + 'yaf_action_abstract::getcontrollername' => array ( 0 => 'string', ), - 'Yaf_Action_Abstract::getInvokeArg' => + 'yaf_action_abstract::getinvokearg' => array ( 0 => 'mixed|null', 'name' => 'string', ), - 'Yaf_Action_Abstract::getInvokeArgs' => + 'yaf_action_abstract::getinvokeargs' => array ( 0 => 'array', ), - 'Yaf_Action_Abstract::getModuleName' => + 'yaf_action_abstract::getmodulename' => array ( 0 => 'string', ), - 'Yaf_Action_Abstract::getRequest' => + 'yaf_action_abstract::getrequest' => array ( 0 => 'Yaf_Request_Abstract', ), - 'Yaf_Action_Abstract::getResponse' => + 'yaf_action_abstract::getresponse' => array ( 0 => 'Yaf_Response_Abstract', ), - 'Yaf_Action_Abstract::getView' => + 'yaf_action_abstract::getview' => array ( 0 => 'Yaf_View_Interface', ), - 'Yaf_Action_Abstract::getViewpath' => + 'yaf_action_abstract::getviewpath' => array ( 0 => 'string', ), - 'Yaf_Action_Abstract::init' => + 'yaf_action_abstract::init' => array ( 0 => 'mixed', ), - 'Yaf_Action_Abstract::initView' => + 'yaf_action_abstract::initview' => array ( 0 => 'Yaf_Response_Abstract', 'options=' => 'array|null', ), - 'Yaf_Action_Abstract::redirect' => + 'yaf_action_abstract::redirect' => array ( 0 => 'bool', 'url' => 'string', ), - 'Yaf_Action_Abstract::render' => + 'yaf_action_abstract::render' => array ( 0 => 'string', 'tpl' => 'string', 'parameters=' => 'array|null', ), - 'Yaf_Action_Abstract::setViewpath' => + 'yaf_action_abstract::setviewpath' => array ( 0 => 'bool', 'view_directory' => 'string', ), - 'Yaf_Application::__clone' => + 'yaf_application::__clone' => array ( 0 => 'void', ), - 'Yaf_Application::__construct' => + 'yaf_application::__construct' => array ( 0 => 'void', 'config' => 'mixed', 'envrion=' => 'string', ), - 'Yaf_Application::__destruct' => + 'yaf_application::__destruct' => array ( 0 => 'void', ), - 'Yaf_Application::__sleep' => + 'yaf_application::__sleep' => array ( 0 => 'list', ), - 'Yaf_Application::__wakeup' => + 'yaf_application::__wakeup' => array ( 0 => 'void', ), - 'Yaf_Application::app' => + 'yaf_application::app' => array ( 0 => 'Yaf_Application|null', ), - 'Yaf_Application::bootstrap' => + 'yaf_application::bootstrap' => array ( 0 => 'Yaf_Application', 'bootstrap=' => 'Yaf_Bootstrap_Abstract', ), - 'Yaf_Application::clearLastError' => + 'yaf_application::clearlasterror' => array ( 0 => 'Yaf_Application', ), - 'Yaf_Application::environ' => + 'yaf_application::environ' => array ( 0 => 'string', ), - 'Yaf_Application::execute' => + 'yaf_application::execute' => array ( 0 => 'void', 'entry' => 'callable', '...args' => 'string', ), - 'Yaf_Application::getAppDirectory' => + 'yaf_application::getappdirectory' => array ( 0 => 'Yaf_Application', ), - 'Yaf_Application::getConfig' => + 'yaf_application::getconfig' => array ( 0 => 'Yaf_Config_Abstract', ), - 'Yaf_Application::getDispatcher' => + 'yaf_application::getdispatcher' => array ( 0 => 'Yaf_Dispatcher', ), - 'Yaf_Application::getLastErrorMsg' => + 'yaf_application::getlasterrormsg' => array ( 0 => 'string', ), - 'Yaf_Application::getLastErrorNo' => + 'yaf_application::getlasterrorno' => array ( 0 => 'int', ), - 'Yaf_Application::getModules' => + 'yaf_application::getmodules' => array ( 0 => 'array', ), - 'Yaf_Application::run' => + 'yaf_application::run' => array ( 0 => 'void', ), - 'Yaf_Application::setAppDirectory' => + 'yaf_application::setappdirectory' => array ( 0 => 'Yaf_Application', 'directory' => 'string', ), - 'Yaf_Config_Abstract::__construct' => + 'yaf_config_abstract::__construct' => array ( 0 => 'void', ), - 'Yaf_Config_Abstract::get' => + 'yaf_config_abstract::get' => array ( 0 => 'mixed', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf_Config_Abstract::readonly' => + 'yaf_config_abstract::readonly' => array ( 0 => 'bool', ), - 'Yaf_Config_Abstract::set' => + 'yaf_config_abstract::set' => array ( 0 => 'Yaf_Config_Abstract', ), - 'Yaf_Config_Abstract::toArray' => + 'yaf_config_abstract::toarray' => array ( 0 => 'array', ), - 'Yaf_Config_Ini::__construct' => + 'yaf_config_ini::__construct' => array ( 0 => 'void', 'config_file' => 'string', 'section=' => 'string', ), - 'Yaf_Config_Ini::__get' => + 'yaf_config_ini::__get' => array ( 0 => 'void', 'name=' => 'string', ), - 'Yaf_Config_Ini::__isset' => + 'yaf_config_ini::__isset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Ini::__set' => + 'yaf_config_ini::__set' => array ( 0 => 'void', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf_Config_Ini::count' => + 'yaf_config_ini::count' => array ( 0 => 'void', ), - 'Yaf_Config_Ini::current' => + 'yaf_config_ini::current' => array ( 0 => 'void', ), - 'Yaf_Config_Ini::get' => + 'yaf_config_ini::get' => array ( 0 => 'mixed', 'name=' => 'mixed', ), - 'Yaf_Config_Ini::key' => + 'yaf_config_ini::key' => array ( 0 => 'void', ), - 'Yaf_Config_Ini::next' => + 'yaf_config_ini::next' => array ( 0 => 'void', ), - 'Yaf_Config_Ini::offsetExists' => + 'yaf_config_ini::offsetexists' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Ini::offsetGet' => + 'yaf_config_ini::offsetget' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Ini::offsetSet' => + 'yaf_config_ini::offsetset' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Yaf_Config_Ini::offsetUnset' => + 'yaf_config_ini::offsetunset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Ini::readonly' => + 'yaf_config_ini::readonly' => array ( 0 => 'void', ), - 'Yaf_Config_Ini::rewind' => + 'yaf_config_ini::rewind' => array ( 0 => 'void', ), - 'Yaf_Config_Ini::set' => + 'yaf_config_ini::set' => array ( 0 => 'Yaf_Config_Abstract', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf_Config_Ini::toArray' => + 'yaf_config_ini::toarray' => array ( 0 => 'array', ), - 'Yaf_Config_Ini::valid' => + 'yaf_config_ini::valid' => array ( 0 => 'void', ), - 'Yaf_Config_Simple::__construct' => + 'yaf_config_simple::__construct' => array ( 0 => 'void', 'config_file' => 'string', 'section=' => 'string', ), - 'Yaf_Config_Simple::__get' => + 'yaf_config_simple::__get' => array ( 0 => 'void', 'name=' => 'string', ), - 'Yaf_Config_Simple::__isset' => + 'yaf_config_simple::__isset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Simple::__set' => + 'yaf_config_simple::__set' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Yaf_Config_Simple::count' => + 'yaf_config_simple::count' => array ( 0 => 'void', ), - 'Yaf_Config_Simple::current' => + 'yaf_config_simple::current' => array ( 0 => 'void', ), - 'Yaf_Config_Simple::get' => + 'yaf_config_simple::get' => array ( 0 => 'mixed', 'name=' => 'mixed', ), - 'Yaf_Config_Simple::key' => + 'yaf_config_simple::key' => array ( 0 => 'void', ), - 'Yaf_Config_Simple::next' => + 'yaf_config_simple::next' => array ( 0 => 'void', ), - 'Yaf_Config_Simple::offsetExists' => + 'yaf_config_simple::offsetexists' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Simple::offsetGet' => + 'yaf_config_simple::offsetget' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Simple::offsetSet' => + 'yaf_config_simple::offsetset' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Yaf_Config_Simple::offsetUnset' => + 'yaf_config_simple::offsetunset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Simple::readonly' => + 'yaf_config_simple::readonly' => array ( 0 => 'void', ), - 'Yaf_Config_Simple::rewind' => + 'yaf_config_simple::rewind' => array ( 0 => 'void', ), - 'Yaf_Config_Simple::set' => + 'yaf_config_simple::set' => array ( 0 => 'Yaf_Config_Abstract', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf_Config_Simple::toArray' => + 'yaf_config_simple::toarray' => array ( 0 => 'array', ), - 'Yaf_Config_Simple::valid' => + 'yaf_config_simple::valid' => array ( 0 => 'void', ), - 'Yaf_Controller_Abstract::__clone' => + 'yaf_controller_abstract::__clone' => array ( 0 => 'void', ), - 'Yaf_Controller_Abstract::__construct' => + 'yaf_controller_abstract::__construct' => array ( 0 => 'void', ), - 'Yaf_Controller_Abstract::display' => + 'yaf_controller_abstract::display' => array ( 0 => 'bool', 'tpl' => 'string', 'parameters=' => 'array', ), - 'Yaf_Controller_Abstract::forward' => + 'yaf_controller_abstract::forward' => array ( 0 => 'void', 'action' => 'string', 'parameters=' => 'array', ), - 'Yaf_Controller_Abstract::forward\'1' => + 'yaf_controller_abstract::forward\'1' => array ( 0 => 'void', 'controller' => 'string', 'action' => 'string', 'parameters=' => 'array', ), - 'Yaf_Controller_Abstract::forward\'2' => + 'yaf_controller_abstract::forward\'2' => array ( 0 => 'void', 'module' => 'string', @@ -81311,978 +81311,978 @@ 'action' => 'string', 'parameters=' => 'array', ), - 'Yaf_Controller_Abstract::getInvokeArg' => + 'yaf_controller_abstract::getinvokearg' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Controller_Abstract::getInvokeArgs' => + 'yaf_controller_abstract::getinvokeargs' => array ( 0 => 'void', ), - 'Yaf_Controller_Abstract::getModuleName' => + 'yaf_controller_abstract::getmodulename' => array ( 0 => 'string', ), - 'Yaf_Controller_Abstract::getName' => + 'yaf_controller_abstract::getname' => array ( 0 => 'string', ), - 'Yaf_Controller_Abstract::getRequest' => + 'yaf_controller_abstract::getrequest' => array ( 0 => 'Yaf_Request_Abstract', ), - 'Yaf_Controller_Abstract::getResponse' => + 'yaf_controller_abstract::getresponse' => array ( 0 => 'Yaf_Response_Abstract', ), - 'Yaf_Controller_Abstract::getView' => + 'yaf_controller_abstract::getview' => array ( 0 => 'Yaf_View_Interface', ), - 'Yaf_Controller_Abstract::getViewpath' => + 'yaf_controller_abstract::getviewpath' => array ( 0 => 'void', ), - 'Yaf_Controller_Abstract::init' => + 'yaf_controller_abstract::init' => array ( 0 => 'void', ), - 'Yaf_Controller_Abstract::initView' => + 'yaf_controller_abstract::initview' => array ( 0 => 'void', 'options=' => 'array', ), - 'Yaf_Controller_Abstract::redirect' => + 'yaf_controller_abstract::redirect' => array ( 0 => 'bool', 'url' => 'string', ), - 'Yaf_Controller_Abstract::render' => + 'yaf_controller_abstract::render' => array ( 0 => 'string', 'tpl' => 'string', 'parameters=' => 'array', ), - 'Yaf_Controller_Abstract::setViewpath' => + 'yaf_controller_abstract::setviewpath' => array ( 0 => 'void', 'view_directory' => 'string', ), - 'Yaf_Dispatcher::__clone' => + 'yaf_dispatcher::__clone' => array ( 0 => 'void', ), - 'Yaf_Dispatcher::__construct' => + 'yaf_dispatcher::__construct' => array ( 0 => 'void', ), - 'Yaf_Dispatcher::__sleep' => + 'yaf_dispatcher::__sleep' => array ( 0 => 'list', ), - 'Yaf_Dispatcher::__wakeup' => + 'yaf_dispatcher::__wakeup' => array ( 0 => 'void', ), - 'Yaf_Dispatcher::autoRender' => + 'yaf_dispatcher::autorender' => array ( 0 => 'Yaf_Dispatcher', 'flag=' => 'bool', ), - 'Yaf_Dispatcher::catchException' => + 'yaf_dispatcher::catchexception' => array ( 0 => 'Yaf_Dispatcher', 'flag=' => 'bool', ), - 'Yaf_Dispatcher::disableView' => + 'yaf_dispatcher::disableview' => array ( 0 => 'bool', ), - 'Yaf_Dispatcher::dispatch' => + 'yaf_dispatcher::dispatch' => array ( 0 => 'Yaf_Response_Abstract', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Dispatcher::enableView' => + 'yaf_dispatcher::enableview' => array ( 0 => 'Yaf_Dispatcher', ), - 'Yaf_Dispatcher::flushInstantly' => + 'yaf_dispatcher::flushinstantly' => array ( 0 => 'Yaf_Dispatcher', 'flag=' => 'bool', ), - 'Yaf_Dispatcher::getApplication' => + 'yaf_dispatcher::getapplication' => array ( 0 => 'Yaf_Application', ), - 'Yaf_Dispatcher::getDefaultAction' => + 'yaf_dispatcher::getdefaultaction' => array ( 0 => 'string', ), - 'Yaf_Dispatcher::getDefaultController' => + 'yaf_dispatcher::getdefaultcontroller' => array ( 0 => 'string', ), - 'Yaf_Dispatcher::getDefaultModule' => + 'yaf_dispatcher::getdefaultmodule' => array ( 0 => 'string', ), - 'Yaf_Dispatcher::getInstance' => + 'yaf_dispatcher::getinstance' => array ( 0 => 'Yaf_Dispatcher', ), - 'Yaf_Dispatcher::getRequest' => + 'yaf_dispatcher::getrequest' => array ( 0 => 'Yaf_Request_Abstract', ), - 'Yaf_Dispatcher::getRouter' => + 'yaf_dispatcher::getrouter' => array ( 0 => 'Yaf_Router', ), - 'Yaf_Dispatcher::initView' => + 'yaf_dispatcher::initview' => array ( 0 => 'Yaf_View_Interface', 'templates_dir' => 'string', 'options=' => 'array', ), - 'Yaf_Dispatcher::registerPlugin' => + 'yaf_dispatcher::registerplugin' => array ( 0 => 'Yaf_Dispatcher', 'plugin' => 'Yaf_Plugin_Abstract', ), - 'Yaf_Dispatcher::returnResponse' => + 'yaf_dispatcher::returnresponse' => array ( 0 => 'Yaf_Dispatcher', 'flag' => 'bool', ), - 'Yaf_Dispatcher::setDefaultAction' => + 'yaf_dispatcher::setdefaultaction' => array ( 0 => 'Yaf_Dispatcher', 'action' => 'string', ), - 'Yaf_Dispatcher::setDefaultController' => + 'yaf_dispatcher::setdefaultcontroller' => array ( 0 => 'Yaf_Dispatcher', 'controller' => 'string', ), - 'Yaf_Dispatcher::setDefaultModule' => + 'yaf_dispatcher::setdefaultmodule' => array ( 0 => 'Yaf_Dispatcher', 'module' => 'string', ), - 'Yaf_Dispatcher::setErrorHandler' => + 'yaf_dispatcher::seterrorhandler' => array ( 0 => 'Yaf_Dispatcher', 'callback' => 'callable', 'error_types' => 'int', ), - 'Yaf_Dispatcher::setRequest' => + 'yaf_dispatcher::setrequest' => array ( 0 => 'Yaf_Dispatcher', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Dispatcher::setView' => + 'yaf_dispatcher::setview' => array ( 0 => 'Yaf_Dispatcher', 'view' => 'Yaf_View_Interface', ), - 'Yaf_Dispatcher::throwException' => + 'yaf_dispatcher::throwexception' => array ( 0 => 'Yaf_Dispatcher', 'flag=' => 'bool', ), - 'Yaf_Exception::__construct' => + 'yaf_exception::__construct' => array ( 0 => 'void', ), - 'Yaf_Exception::getPrevious' => + 'yaf_exception::getprevious' => array ( 0 => 'void', ), - 'Yaf_Loader::__clone' => + 'yaf_loader::__clone' => array ( 0 => 'void', ), - 'Yaf_Loader::__construct' => + 'yaf_loader::__construct' => array ( 0 => 'void', ), - 'Yaf_Loader::__sleep' => + 'yaf_loader::__sleep' => array ( 0 => 'list', ), - 'Yaf_Loader::__wakeup' => + 'yaf_loader::__wakeup' => array ( 0 => 'void', ), - 'Yaf_Loader::autoload' => + 'yaf_loader::autoload' => array ( 0 => 'void', ), - 'Yaf_Loader::clearLocalNamespace' => + 'yaf_loader::clearlocalnamespace' => array ( 0 => 'void', ), - 'Yaf_Loader::getInstance' => + 'yaf_loader::getinstance' => array ( 0 => 'Yaf_Loader', ), - 'Yaf_Loader::getLibraryPath' => + 'yaf_loader::getlibrarypath' => array ( 0 => 'Yaf_Loader', 'is_global=' => 'bool', ), - 'Yaf_Loader::getLocalNamespace' => + 'yaf_loader::getlocalnamespace' => array ( 0 => 'void', ), - 'Yaf_Loader::getNamespacePath' => + 'yaf_loader::getnamespacepath' => array ( 0 => 'string', 'namespaces' => 'string', ), - 'Yaf_Loader::import' => + 'yaf_loader::import' => array ( 0 => 'bool', ), - 'Yaf_Loader::isLocalName' => + 'yaf_loader::islocalname' => array ( 0 => 'bool', ), - 'Yaf_Loader::registerLocalNamespace' => + 'yaf_loader::registerlocalnamespace' => array ( 0 => 'void', 'prefix' => 'mixed', ), - 'Yaf_Loader::registerNamespace' => + 'yaf_loader::registernamespace' => array ( 0 => 'bool', 'namespaces' => 'array|string', 'path=' => 'string', ), - 'Yaf_Loader::setLibraryPath' => + 'yaf_loader::setlibrarypath' => array ( 0 => 'Yaf_Loader', 'directory' => 'string', 'is_global=' => 'bool', ), - 'Yaf_Plugin_Abstract::dispatchLoopShutdown' => + 'yaf_plugin_abstract::dispatchloopshutdown' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', 'response' => 'Yaf_Response_Abstract', ), - 'Yaf_Plugin_Abstract::dispatchLoopStartup' => + 'yaf_plugin_abstract::dispatchloopstartup' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', 'response' => 'Yaf_Response_Abstract', ), - 'Yaf_Plugin_Abstract::postDispatch' => + 'yaf_plugin_abstract::postdispatch' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', 'response' => 'Yaf_Response_Abstract', ), - 'Yaf_Plugin_Abstract::preDispatch' => + 'yaf_plugin_abstract::predispatch' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', 'response' => 'Yaf_Response_Abstract', ), - 'Yaf_Plugin_Abstract::preResponse' => + 'yaf_plugin_abstract::preresponse' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', 'response' => 'Yaf_Response_Abstract', ), - 'Yaf_Plugin_Abstract::routerShutdown' => + 'yaf_plugin_abstract::routershutdown' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', 'response' => 'Yaf_Response_Abstract', ), - 'Yaf_Plugin_Abstract::routerStartup' => + 'yaf_plugin_abstract::routerstartup' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', 'response' => 'Yaf_Response_Abstract', ), - 'Yaf_Registry::__clone' => + 'yaf_registry::__clone' => array ( 0 => 'void', ), - 'Yaf_Registry::__construct' => + 'yaf_registry::__construct' => array ( 0 => 'void', ), - 'Yaf_Registry::del' => + 'yaf_registry::del' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Registry::get' => + 'yaf_registry::get' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Yaf_Registry::has' => + 'yaf_registry::has' => array ( 0 => 'bool', 'name' => 'string', ), - 'Yaf_Registry::set' => + 'yaf_registry::set' => array ( 0 => 'bool', 'name' => 'string', 'value' => 'string', ), - 'Yaf_Request_Abstract::clearParams' => + 'yaf_request_abstract::clearparams' => array ( 0 => 'bool', ), - 'Yaf_Request_Abstract::getActionName' => + 'yaf_request_abstract::getactionname' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getBaseUri' => + 'yaf_request_abstract::getbaseuri' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getControllerName' => + 'yaf_request_abstract::getcontrollername' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getEnv' => + 'yaf_request_abstract::getenv' => array ( 0 => 'void', 'name' => 'string', 'default=' => 'string', ), - 'Yaf_Request_Abstract::getException' => + 'yaf_request_abstract::getexception' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getLanguage' => + 'yaf_request_abstract::getlanguage' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getMethod' => + 'yaf_request_abstract::getmethod' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getModuleName' => + 'yaf_request_abstract::getmodulename' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getParam' => + 'yaf_request_abstract::getparam' => array ( 0 => 'void', 'name' => 'string', 'default=' => 'string', ), - 'Yaf_Request_Abstract::getParams' => + 'yaf_request_abstract::getparams' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getRequestUri' => + 'yaf_request_abstract::getrequesturi' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getServer' => + 'yaf_request_abstract::getserver' => array ( 0 => 'void', 'name' => 'string', 'default=' => 'string', ), - 'Yaf_Request_Abstract::isCli' => + 'yaf_request_abstract::iscli' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isDispatched' => + 'yaf_request_abstract::isdispatched' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isGet' => + 'yaf_request_abstract::isget' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isHead' => + 'yaf_request_abstract::ishead' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isOptions' => + 'yaf_request_abstract::isoptions' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isPost' => + 'yaf_request_abstract::ispost' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isPut' => + 'yaf_request_abstract::isput' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isRouted' => + 'yaf_request_abstract::isrouted' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isXmlHttpRequest' => + 'yaf_request_abstract::isxmlhttprequest' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::setActionName' => + 'yaf_request_abstract::setactionname' => array ( 0 => 'void', 'action' => 'string', ), - 'Yaf_Request_Abstract::setBaseUri' => + 'yaf_request_abstract::setbaseuri' => array ( 0 => 'bool', 'uir' => 'string', ), - 'Yaf_Request_Abstract::setControllerName' => + 'yaf_request_abstract::setcontrollername' => array ( 0 => 'void', 'controller' => 'string', ), - 'Yaf_Request_Abstract::setDispatched' => + 'yaf_request_abstract::setdispatched' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::setModuleName' => + 'yaf_request_abstract::setmodulename' => array ( 0 => 'void', 'module' => 'string', ), - 'Yaf_Request_Abstract::setParam' => + 'yaf_request_abstract::setparam' => array ( 0 => 'void', 'name' => 'string', 'value=' => 'string', ), - 'Yaf_Request_Abstract::setRequestUri' => + 'yaf_request_abstract::setrequesturi' => array ( 0 => 'void', 'uir' => 'string', ), - 'Yaf_Request_Abstract::setRouted' => + 'yaf_request_abstract::setrouted' => array ( 0 => 'void', 'flag=' => 'string', ), - 'Yaf_Request_Http::__clone' => + 'yaf_request_http::__clone' => array ( 0 => 'void', ), - 'Yaf_Request_Http::__construct' => + 'yaf_request_http::__construct' => array ( 0 => 'void', ), - 'Yaf_Request_Http::get' => + 'yaf_request_http::get' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'string', ), - 'Yaf_Request_Http::getActionName' => + 'yaf_request_http::getactionname' => array ( 0 => 'string', ), - 'Yaf_Request_Http::getBaseUri' => + 'yaf_request_http::getbaseuri' => array ( 0 => 'string', ), - 'Yaf_Request_Http::getControllerName' => + 'yaf_request_http::getcontrollername' => array ( 0 => 'string', ), - 'Yaf_Request_Http::getCookie' => + 'yaf_request_http::getcookie' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'string', ), - 'Yaf_Request_Http::getEnv' => + 'yaf_request_http::getenv' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf_Request_Http::getException' => + 'yaf_request_http::getexception' => array ( 0 => 'Yaf_Exception', ), - 'Yaf_Request_Http::getFiles' => + 'yaf_request_http::getfiles' => array ( 0 => 'void', ), - 'Yaf_Request_Http::getLanguage' => + 'yaf_request_http::getlanguage' => array ( 0 => 'string', ), - 'Yaf_Request_Http::getMethod' => + 'yaf_request_http::getmethod' => array ( 0 => 'string', ), - 'Yaf_Request_Http::getModuleName' => + 'yaf_request_http::getmodulename' => array ( 0 => 'string', ), - 'Yaf_Request_Http::getParam' => + 'yaf_request_http::getparam' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'mixed', ), - 'Yaf_Request_Http::getParams' => + 'yaf_request_http::getparams' => array ( 0 => 'array', ), - 'Yaf_Request_Http::getPost' => + 'yaf_request_http::getpost' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'string', ), - 'Yaf_Request_Http::getQuery' => + 'yaf_request_http::getquery' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'string', ), - 'Yaf_Request_Http::getRaw' => + 'yaf_request_http::getraw' => array ( 0 => 'mixed', ), - 'Yaf_Request_Http::getRequest' => + 'yaf_request_http::getrequest' => array ( 0 => 'void', ), - 'Yaf_Request_Http::getRequestUri' => + 'yaf_request_http::getrequesturi' => array ( 0 => 'string', ), - 'Yaf_Request_Http::getServer' => + 'yaf_request_http::getserver' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf_Request_Http::isCli' => + 'yaf_request_http::iscli' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isDispatched' => + 'yaf_request_http::isdispatched' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isGet' => + 'yaf_request_http::isget' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isHead' => + 'yaf_request_http::ishead' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isOptions' => + 'yaf_request_http::isoptions' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isPost' => + 'yaf_request_http::ispost' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isPut' => + 'yaf_request_http::isput' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isRouted' => + 'yaf_request_http::isrouted' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isXmlHttpRequest' => + 'yaf_request_http::isxmlhttprequest' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::setActionName' => + 'yaf_request_http::setactionname' => array ( 0 => 'Yaf_Request_Abstract|bool', 'action' => 'string', ), - 'Yaf_Request_Http::setBaseUri' => + 'yaf_request_http::setbaseuri' => array ( 0 => 'bool', 'uri' => 'string', ), - 'Yaf_Request_Http::setControllerName' => + 'yaf_request_http::setcontrollername' => array ( 0 => 'Yaf_Request_Abstract|bool', 'controller' => 'string', ), - 'Yaf_Request_Http::setDispatched' => + 'yaf_request_http::setdispatched' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::setModuleName' => + 'yaf_request_http::setmodulename' => array ( 0 => 'Yaf_Request_Abstract|bool', 'module' => 'string', ), - 'Yaf_Request_Http::setParam' => + 'yaf_request_http::setparam' => array ( 0 => 'Yaf_Request_Abstract|bool', 'name' => 'array|string', 'value=' => 'string', ), - 'Yaf_Request_Http::setRequestUri' => + 'yaf_request_http::setrequesturi' => array ( 0 => 'mixed', 'uri' => 'string', ), - 'Yaf_Request_Http::setRouted' => + 'yaf_request_http::setrouted' => array ( 0 => 'Yaf_Request_Abstract|bool', ), - 'Yaf_Request_Simple::__clone' => + 'yaf_request_simple::__clone' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::__construct' => + 'yaf_request_simple::__construct' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::get' => + 'yaf_request_simple::get' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::getActionName' => + 'yaf_request_simple::getactionname' => array ( 0 => 'string', ), - 'Yaf_Request_Simple::getBaseUri' => + 'yaf_request_simple::getbaseuri' => array ( 0 => 'string', ), - 'Yaf_Request_Simple::getControllerName' => + 'yaf_request_simple::getcontrollername' => array ( 0 => 'string', ), - 'Yaf_Request_Simple::getCookie' => + 'yaf_request_simple::getcookie' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::getEnv' => + 'yaf_request_simple::getenv' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf_Request_Simple::getException' => + 'yaf_request_simple::getexception' => array ( 0 => 'Yaf_Exception', ), - 'Yaf_Request_Simple::getFiles' => + 'yaf_request_simple::getfiles' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::getLanguage' => + 'yaf_request_simple::getlanguage' => array ( 0 => 'string', ), - 'Yaf_Request_Simple::getMethod' => + 'yaf_request_simple::getmethod' => array ( 0 => 'string', ), - 'Yaf_Request_Simple::getModuleName' => + 'yaf_request_simple::getmodulename' => array ( 0 => 'string', ), - 'Yaf_Request_Simple::getParam' => + 'yaf_request_simple::getparam' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'mixed', ), - 'Yaf_Request_Simple::getParams' => + 'yaf_request_simple::getparams' => array ( 0 => 'array', ), - 'Yaf_Request_Simple::getPost' => + 'yaf_request_simple::getpost' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::getQuery' => + 'yaf_request_simple::getquery' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::getRequest' => + 'yaf_request_simple::getrequest' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::getRequestUri' => + 'yaf_request_simple::getrequesturi' => array ( 0 => 'string', ), - 'Yaf_Request_Simple::getServer' => + 'yaf_request_simple::getserver' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf_Request_Simple::isCli' => + 'yaf_request_simple::iscli' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isDispatched' => + 'yaf_request_simple::isdispatched' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isGet' => + 'yaf_request_simple::isget' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isHead' => + 'yaf_request_simple::ishead' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isOptions' => + 'yaf_request_simple::isoptions' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isPost' => + 'yaf_request_simple::ispost' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isPut' => + 'yaf_request_simple::isput' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isRouted' => + 'yaf_request_simple::isrouted' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isXmlHttpRequest' => + 'yaf_request_simple::isxmlhttprequest' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::setActionName' => + 'yaf_request_simple::setactionname' => array ( 0 => 'Yaf_Request_Abstract|bool', 'action' => 'string', ), - 'Yaf_Request_Simple::setBaseUri' => + 'yaf_request_simple::setbaseuri' => array ( 0 => 'bool', 'uri' => 'string', ), - 'Yaf_Request_Simple::setControllerName' => + 'yaf_request_simple::setcontrollername' => array ( 0 => 'Yaf_Request_Abstract|bool', 'controller' => 'string', ), - 'Yaf_Request_Simple::setDispatched' => + 'yaf_request_simple::setdispatched' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::setModuleName' => + 'yaf_request_simple::setmodulename' => array ( 0 => 'Yaf_Request_Abstract|bool', 'module' => 'string', ), - 'Yaf_Request_Simple::setParam' => + 'yaf_request_simple::setparam' => array ( 0 => 'Yaf_Request_Abstract|bool', 'name' => 'array|string', 'value=' => 'string', ), - 'Yaf_Request_Simple::setRequestUri' => + 'yaf_request_simple::setrequesturi' => array ( 0 => 'mixed', 'uri' => 'string', ), - 'Yaf_Request_Simple::setRouted' => + 'yaf_request_simple::setrouted' => array ( 0 => 'Yaf_Request_Abstract|bool', ), - 'Yaf_Response_Abstract::__clone' => + 'yaf_response_abstract::__clone' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::__construct' => + 'yaf_response_abstract::__construct' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::__destruct' => + 'yaf_response_abstract::__destruct' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::__toString' => + 'yaf_response_abstract::__tostring' => array ( 0 => 'string', ), - 'Yaf_Response_Abstract::appendBody' => + 'yaf_response_abstract::appendbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Abstract::clearBody' => + 'yaf_response_abstract::clearbody' => array ( 0 => 'bool', 'key=' => 'string', ), - 'Yaf_Response_Abstract::clearHeaders' => + 'yaf_response_abstract::clearheaders' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::getBody' => + 'yaf_response_abstract::getbody' => array ( 0 => 'mixed', 'key=' => 'string', ), - 'Yaf_Response_Abstract::getHeader' => + 'yaf_response_abstract::getheader' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::prependBody' => + 'yaf_response_abstract::prependbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Abstract::response' => + 'yaf_response_abstract::response' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::setAllHeaders' => + 'yaf_response_abstract::setallheaders' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::setBody' => + 'yaf_response_abstract::setbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Abstract::setHeader' => + 'yaf_response_abstract::setheader' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::setRedirect' => + 'yaf_response_abstract::setredirect' => array ( 0 => 'void', ), - 'Yaf_Response_Cli::__clone' => + 'yaf_response_cli::__clone' => array ( 0 => 'void', ), - 'Yaf_Response_Cli::__construct' => + 'yaf_response_cli::__construct' => array ( 0 => 'void', ), - 'Yaf_Response_Cli::__destruct' => + 'yaf_response_cli::__destruct' => array ( 0 => 'void', ), - 'Yaf_Response_Cli::__toString' => + 'yaf_response_cli::__tostring' => array ( 0 => 'string', ), - 'Yaf_Response_Cli::appendBody' => + 'yaf_response_cli::appendbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Cli::clearBody' => + 'yaf_response_cli::clearbody' => array ( 0 => 'bool', 'key=' => 'string', ), - 'Yaf_Response_Cli::getBody' => + 'yaf_response_cli::getbody' => array ( 0 => 'mixed', 'key=' => 'null|string', ), - 'Yaf_Response_Cli::prependBody' => + 'yaf_response_cli::prependbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Cli::setBody' => + 'yaf_response_cli::setbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Http::__clone' => + 'yaf_response_http::__clone' => array ( 0 => 'void', ), - 'Yaf_Response_Http::__construct' => + 'yaf_response_http::__construct' => array ( 0 => 'void', ), - 'Yaf_Response_Http::__destruct' => + 'yaf_response_http::__destruct' => array ( 0 => 'void', ), - 'Yaf_Response_Http::__toString' => + 'yaf_response_http::__tostring' => array ( 0 => 'string', ), - 'Yaf_Response_Http::appendBody' => + 'yaf_response_http::appendbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Http::clearBody' => + 'yaf_response_http::clearbody' => array ( 0 => 'bool', 'key=' => 'string', ), - 'Yaf_Response_Http::clearHeaders' => + 'yaf_response_http::clearheaders' => array ( 0 => 'Yaf_Response_Abstract|false', 'name=' => 'string', ), - 'Yaf_Response_Http::getBody' => + 'yaf_response_http::getbody' => array ( 0 => 'mixed', 'key=' => 'null|string', ), - 'Yaf_Response_Http::getHeader' => + 'yaf_response_http::getheader' => array ( 0 => 'mixed', 'name=' => 'string', ), - 'Yaf_Response_Http::prependBody' => + 'yaf_response_http::prependbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Http::response' => + 'yaf_response_http::response' => array ( 0 => 'bool', ), - 'Yaf_Response_Http::setAllHeaders' => + 'yaf_response_http::setallheaders' => array ( 0 => 'bool', 'headers' => 'array', ), - 'Yaf_Response_Http::setBody' => + 'yaf_response_http::setbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Http::setHeader' => + 'yaf_response_http::setheader' => array ( 0 => 'bool', 'name' => 'string', @@ -82290,44 +82290,44 @@ 'replace=' => 'bool', 'response_code=' => 'int', ), - 'Yaf_Response_Http::setRedirect' => + 'yaf_response_http::setredirect' => array ( 0 => 'bool', 'url' => 'string', ), - 'Yaf_Route_Interface::__construct' => + 'yaf_route_interface::__construct' => array ( 0 => 'void', ), - 'Yaf_Route_Interface::assemble' => + 'yaf_route_interface::assemble' => array ( 0 => 'string', 'info' => 'array', 'query=' => 'array', ), - 'Yaf_Route_Interface::route' => + 'yaf_route_interface::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Route_Map::__construct' => + 'yaf_route_map::__construct' => array ( 0 => 'void', 'controller_prefer=' => 'string', 'delimiter=' => 'string', ), - 'Yaf_Route_Map::assemble' => + 'yaf_route_map::assemble' => array ( 0 => 'string', 'info' => 'array', 'query=' => 'array', ), - 'Yaf_Route_Map::route' => + 'yaf_route_map::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Route_Regex::__construct' => + 'yaf_route_regex::__construct' => array ( 0 => 'void', 'match' => 'string', @@ -82336,366 +82336,366 @@ 'verify=' => 'array', 'reverse=' => 'string', ), - 'Yaf_Route_Regex::addConfig' => + 'yaf_route_regex::addconfig' => array ( 0 => 'Yaf_Router|bool', 'config' => 'Yaf_Config_Abstract', ), - 'Yaf_Route_Regex::addRoute' => + 'yaf_route_regex::addroute' => array ( 0 => 'Yaf_Router|bool', 'name' => 'string', 'route' => 'Yaf_Route_Interface', ), - 'Yaf_Route_Regex::assemble' => + 'yaf_route_regex::assemble' => array ( 0 => 'string', 'info' => 'array', 'query=' => 'array', ), - 'Yaf_Route_Regex::getCurrentRoute' => + 'yaf_route_regex::getcurrentroute' => array ( 0 => 'string', ), - 'Yaf_Route_Regex::getRoute' => + 'yaf_route_regex::getroute' => array ( 0 => 'Yaf_Route_Interface', 'name' => 'string', ), - 'Yaf_Route_Regex::getRoutes' => + 'yaf_route_regex::getroutes' => array ( 0 => 'array', ), - 'Yaf_Route_Regex::route' => + 'yaf_route_regex::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Route_Rewrite::__construct' => + 'yaf_route_rewrite::__construct' => array ( 0 => 'void', 'match' => 'string', 'route' => 'array', 'verify=' => 'array', ), - 'Yaf_Route_Rewrite::addConfig' => + 'yaf_route_rewrite::addconfig' => array ( 0 => 'Yaf_Router|bool', 'config' => 'Yaf_Config_Abstract', ), - 'Yaf_Route_Rewrite::addRoute' => + 'yaf_route_rewrite::addroute' => array ( 0 => 'Yaf_Router|bool', 'name' => 'string', 'route' => 'Yaf_Route_Interface', ), - 'Yaf_Route_Rewrite::assemble' => + 'yaf_route_rewrite::assemble' => array ( 0 => 'string', 'info' => 'array', 'query=' => 'array', ), - 'Yaf_Route_Rewrite::getCurrentRoute' => + 'yaf_route_rewrite::getcurrentroute' => array ( 0 => 'string', ), - 'Yaf_Route_Rewrite::getRoute' => + 'yaf_route_rewrite::getroute' => array ( 0 => 'Yaf_Route_Interface', 'name' => 'string', ), - 'Yaf_Route_Rewrite::getRoutes' => + 'yaf_route_rewrite::getroutes' => array ( 0 => 'array', ), - 'Yaf_Route_Rewrite::route' => + 'yaf_route_rewrite::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Route_Simple::__construct' => + 'yaf_route_simple::__construct' => array ( 0 => 'void', 'module_name' => 'string', 'controller_name' => 'string', 'action_name' => 'string', ), - 'Yaf_Route_Simple::assemble' => + 'yaf_route_simple::assemble' => array ( 0 => 'string', 'info' => 'array', 'query=' => 'array', ), - 'Yaf_Route_Simple::route' => + 'yaf_route_simple::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Route_Static::assemble' => + 'yaf_route_static::assemble' => array ( 0 => 'string', 'info' => 'array', 'query=' => 'array', ), - 'Yaf_Route_Static::match' => + 'yaf_route_static::match' => array ( 0 => 'void', 'uri' => 'string', ), - 'Yaf_Route_Static::route' => + 'yaf_route_static::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Route_Supervar::__construct' => + 'yaf_route_supervar::__construct' => array ( 0 => 'void', 'supervar_name' => 'string', ), - 'Yaf_Route_Supervar::assemble' => + 'yaf_route_supervar::assemble' => array ( 0 => 'string', 'info' => 'array', 'query=' => 'array', ), - 'Yaf_Route_Supervar::route' => + 'yaf_route_supervar::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Router::__construct' => + 'yaf_router::__construct' => array ( 0 => 'void', ), - 'Yaf_Router::addConfig' => + 'yaf_router::addconfig' => array ( 0 => 'bool', 'config' => 'Yaf_Config_Abstract', ), - 'Yaf_Router::addRoute' => + 'yaf_router::addroute' => array ( 0 => 'bool', 'name' => 'string', 'route' => 'Yaf_Route_Interface', ), - 'Yaf_Router::getCurrentRoute' => + 'yaf_router::getcurrentroute' => array ( 0 => 'string', ), - 'Yaf_Router::getRoute' => + 'yaf_router::getroute' => array ( 0 => 'Yaf_Route_Interface', 'name' => 'string', ), - 'Yaf_Router::getRoutes' => + 'yaf_router::getroutes' => array ( 0 => 'mixed', ), - 'Yaf_Router::route' => + 'yaf_router::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Session::__clone' => + 'yaf_session::__clone' => array ( 0 => 'void', ), - 'Yaf_Session::__construct' => + 'yaf_session::__construct' => array ( 0 => 'void', ), - 'Yaf_Session::__get' => + 'yaf_session::__get' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::__isset' => + 'yaf_session::__isset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::__set' => + 'yaf_session::__set' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Yaf_Session::__sleep' => + 'yaf_session::__sleep' => array ( 0 => 'list', ), - 'Yaf_Session::__unset' => + 'yaf_session::__unset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::__wakeup' => + 'yaf_session::__wakeup' => array ( 0 => 'void', ), - 'Yaf_Session::count' => + 'yaf_session::count' => array ( 0 => 'void', ), - 'Yaf_Session::current' => + 'yaf_session::current' => array ( 0 => 'void', ), - 'Yaf_Session::del' => + 'yaf_session::del' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::get' => + 'yaf_session::get' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Yaf_Session::getInstance' => + 'yaf_session::getinstance' => array ( 0 => 'void', ), - 'Yaf_Session::has' => + 'yaf_session::has' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::key' => + 'yaf_session::key' => array ( 0 => 'void', ), - 'Yaf_Session::next' => + 'yaf_session::next' => array ( 0 => 'void', ), - 'Yaf_Session::offsetExists' => + 'yaf_session::offsetexists' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::offsetGet' => + 'yaf_session::offsetget' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::offsetSet' => + 'yaf_session::offsetset' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Yaf_Session::offsetUnset' => + 'yaf_session::offsetunset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::rewind' => + 'yaf_session::rewind' => array ( 0 => 'void', ), - 'Yaf_Session::set' => + 'yaf_session::set' => array ( 0 => 'Yaf_Session|bool', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf_Session::start' => + 'yaf_session::start' => array ( 0 => 'void', ), - 'Yaf_Session::valid' => + 'yaf_session::valid' => array ( 0 => 'void', ), - 'Yaf_View_Interface::assign' => + 'yaf_view_interface::assign' => array ( 0 => 'bool', 'name' => 'string', 'value=' => 'string', ), - 'Yaf_View_Interface::display' => + 'yaf_view_interface::display' => array ( 0 => 'bool', 'tpl' => 'string', 'tpl_vars=' => 'array', ), - 'Yaf_View_Interface::getScriptPath' => + 'yaf_view_interface::getscriptpath' => array ( 0 => 'string', ), - 'Yaf_View_Interface::render' => + 'yaf_view_interface::render' => array ( 0 => 'string', 'tpl' => 'string', 'tpl_vars=' => 'array', ), - 'Yaf_View_Interface::setScriptPath' => + 'yaf_view_interface::setscriptpath' => array ( 0 => 'void', 'template_dir' => 'string', ), - 'Yaf_View_Simple::__construct' => + 'yaf_view_simple::__construct' => array ( 0 => 'void', 'tempalte_dir' => 'string', 'options=' => 'array', ), - 'Yaf_View_Simple::__get' => + 'yaf_view_simple::__get' => array ( 0 => 'void', 'name=' => 'string', ), - 'Yaf_View_Simple::__isset' => + 'yaf_view_simple::__isset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_View_Simple::__set' => + 'yaf_view_simple::__set' => array ( 0 => 'void', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf_View_Simple::assign' => + 'yaf_view_simple::assign' => array ( 0 => 'bool', 'name' => 'string', 'value=' => 'mixed', ), - 'Yaf_View_Simple::assignRef' => + 'yaf_view_simple::assignref' => array ( 0 => 'bool', 'name' => 'string', '&rw_value' => 'mixed', ), - 'Yaf_View_Simple::clear' => + 'yaf_view_simple::clear' => array ( 0 => 'bool', 'name=' => 'string', ), - 'Yaf_View_Simple::display' => + 'yaf_view_simple::display' => array ( 0 => 'bool', 'tpl' => 'string', 'tpl_vars=' => 'array', ), - 'Yaf_View_Simple::eval' => + 'yaf_view_simple::eval' => array ( 0 => 'string', 'tpl_content' => 'string', 'tpl_vars=' => 'array', ), - 'Yaf_View_Simple::getScriptPath' => + 'yaf_view_simple::getscriptpath' => array ( 0 => 'string', ), - 'Yaf_View_Simple::render' => + 'yaf_view_simple::render' => array ( 0 => 'string', 'tpl' => 'string', 'tpl_vars=' => 'array', ), - 'Yaf_View_Simple::setScriptPath' => + 'yaf_view_simple::setscriptpath' => array ( 0 => 'bool', 'template_dir' => 'string', @@ -82741,75 +82741,75 @@ '&w_ndocs=' => 'int', 'callbacks=' => 'array', ), - 'Yar_Client::__call' => + 'yar_client::__call' => array ( 0 => 'void', 'method' => 'string', 'parameters' => 'array', ), - 'Yar_Client::__construct' => + 'yar_client::__construct' => array ( 0 => 'void', 'url' => 'string', ), - 'Yar_Client::setOpt' => + 'yar_client::setopt' => array ( 0 => 'Yar_Client|false', 'name' => 'int', 'value' => 'mixed', ), - 'Yar_Client_Exception::__clone' => + 'yar_client_exception::__clone' => array ( 0 => 'void', ), - 'Yar_Client_Exception::__construct' => + 'yar_client_exception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'Yar_Client_Exception::__toString' => + 'yar_client_exception::__tostring' => array ( 0 => 'string', ), - 'Yar_Client_Exception::__wakeup' => + 'yar_client_exception::__wakeup' => array ( 0 => 'void', ), - 'Yar_Client_Exception::getCode' => + 'yar_client_exception::getcode' => array ( 0 => 'int', ), - 'Yar_Client_Exception::getFile' => + 'yar_client_exception::getfile' => array ( 0 => 'string', ), - 'Yar_Client_Exception::getLine' => + 'yar_client_exception::getline' => array ( 0 => 'int', ), - 'Yar_Client_Exception::getMessage' => + 'yar_client_exception::getmessage' => array ( 0 => 'string', ), - 'Yar_Client_Exception::getPrevious' => + 'yar_client_exception::getprevious' => array ( 0 => 'Exception|Throwable|null', ), - 'Yar_Client_Exception::getTrace' => + 'yar_client_exception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'Yar_Client_Exception::getTraceAsString' => + 'yar_client_exception::gettraceasstring' => array ( 0 => 'string', ), - 'Yar_Client_Exception::getType' => + 'yar_client_exception::gettype' => array ( 0 => 'string', ), - 'Yar_Concurrent_Client::call' => + 'yar_concurrent_client::call' => array ( 0 => 'int', 'uri' => 'string', @@ -82817,73 +82817,73 @@ 'parameters' => 'array', 'callback=' => 'callable', ), - 'Yar_Concurrent_Client::loop' => + 'yar_concurrent_client::loop' => array ( 0 => 'bool', 'callback=' => 'callable', 'error_callback=' => 'callable', ), - 'Yar_Concurrent_Client::reset' => + 'yar_concurrent_client::reset' => array ( 0 => 'bool', ), - 'Yar_Server::__construct' => + 'yar_server::__construct' => array ( 0 => 'void', 'object' => 'object', ), - 'Yar_Server::handle' => + 'yar_server::handle' => array ( 0 => 'bool', ), - 'Yar_Server_Exception::__clone' => + 'yar_server_exception::__clone' => array ( 0 => 'void', ), - 'Yar_Server_Exception::__construct' => + 'yar_server_exception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'Yar_Server_Exception::__toString' => + 'yar_server_exception::__tostring' => array ( 0 => 'string', ), - 'Yar_Server_Exception::__wakeup' => + 'yar_server_exception::__wakeup' => array ( 0 => 'void', ), - 'Yar_Server_Exception::getCode' => + 'yar_server_exception::getcode' => array ( 0 => 'int', ), - 'Yar_Server_Exception::getFile' => + 'yar_server_exception::getfile' => array ( 0 => 'string', ), - 'Yar_Server_Exception::getLine' => + 'yar_server_exception::getline' => array ( 0 => 'int', ), - 'Yar_Server_Exception::getMessage' => + 'yar_server_exception::getmessage' => array ( 0 => 'string', ), - 'Yar_Server_Exception::getPrevious' => + 'yar_server_exception::getprevious' => array ( 0 => 'Exception|Throwable|null', ), - 'Yar_Server_Exception::getTrace' => + 'yar_server_exception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'Yar_Server_Exception::getTraceAsString' => + 'yar_server_exception::gettraceasstring' => array ( 0 => 'string', ), - 'Yar_Server_Exception::getType' => + 'yar_server_exception::gettype' => array ( 0 => 'string', ), @@ -83240,154 +83240,154 @@ array ( 0 => 'string', ), - 'ZendAPI_Job::addJobToQueue' => + 'zendapi_job::addjobtoqueue' => array ( 0 => 'int', 'jobqueue_url' => 'string', 'password' => 'string', ), - 'ZendAPI_Job::getApplicationID' => + 'zendapi_job::getapplicationid' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getEndTime' => + 'zendapi_job::getendtime' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getGlobalVariables' => + 'zendapi_job::getglobalvariables' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getHost' => + 'zendapi_job::gethost' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getID' => + 'zendapi_job::getid' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getInterval' => + 'zendapi_job::getinterval' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getJobDependency' => + 'zendapi_job::getjobdependency' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getJobName' => + 'zendapi_job::getjobname' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getJobPriority' => + 'zendapi_job::getjobpriority' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getJobStatus' => + 'zendapi_job::getjobstatus' => array ( 0 => 'int', ), - 'ZendAPI_Job::getLastPerformedStatus' => + 'zendapi_job::getlastperformedstatus' => array ( 0 => 'int', ), - 'ZendAPI_Job::getOutput' => + 'zendapi_job::getoutput' => array ( 0 => 'An', ), - 'ZendAPI_Job::getPreserved' => + 'zendapi_job::getpreserved' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getProperties' => + 'zendapi_job::getproperties' => array ( 0 => 'array', ), - 'ZendAPI_Job::getScheduledTime' => + 'zendapi_job::getscheduledtime' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getScript' => + 'zendapi_job::getscript' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getTimeToNextRepeat' => + 'zendapi_job::gettimetonextrepeat' => array ( 0 => 'int', ), - 'ZendAPI_Job::getUserVariables' => + 'zendapi_job::getuservariables' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::setApplicationID' => + 'zendapi_job::setapplicationid' => array ( 0 => 'mixed', 'app_id' => 'mixed', ), - 'ZendAPI_Job::setGlobalVariables' => + 'zendapi_job::setglobalvariables' => array ( 0 => 'mixed', 'vars' => 'mixed', ), - 'ZendAPI_Job::setJobDependency' => + 'zendapi_job::setjobdependency' => array ( 0 => 'mixed', 'job_id' => 'mixed', ), - 'ZendAPI_Job::setJobName' => + 'zendapi_job::setjobname' => array ( 0 => 'mixed', 'name' => 'mixed', ), - 'ZendAPI_Job::setJobPriority' => + 'zendapi_job::setjobpriority' => array ( 0 => 'mixed', 'priority' => 'int', ), - 'ZendAPI_Job::setPreserved' => + 'zendapi_job::setpreserved' => array ( 0 => 'mixed', 'preserved' => 'mixed', ), - 'ZendAPI_Job::setRecurrenceData' => + 'zendapi_job::setrecurrencedata' => array ( 0 => 'mixed', 'interval' => 'mixed', 'end_time=' => 'mixed', ), - 'ZendAPI_Job::setScheduledTime' => + 'zendapi_job::setscheduledtime' => array ( 0 => 'mixed', 'timestamp' => 'mixed', ), - 'ZendAPI_Job::setScript' => + 'zendapi_job::setscript' => array ( 0 => 'mixed', 'script' => 'mixed', ), - 'ZendAPI_Job::setUserVariables' => + 'zendapi_job::setuservariables' => array ( 0 => 'mixed', 'vars' => 'mixed', ), - 'ZendAPI_Job::ZendAPI_Job' => + 'zendapi_job::zendapi_job' => array ( 0 => 'Job', 'script' => 'script', ), - 'ZendAPI_Queue::addJob' => + 'zendapi_queue::addjob' => array ( 0 => 'int', '&job' => 'Job', ), - 'ZendAPI_Queue::getAllApplicationIDs' => + 'zendapi_queue::getallapplicationids' => array ( 0 => 'array', ), - 'ZendAPI_Queue::getAllhosts' => + 'zendapi_queue::getallhosts' => array ( 0 => 'array', ), - 'ZendAPI_Queue::getHistoricJobs' => + 'zendapi_queue::gethistoricjobs' => array ( 0 => 'array', 'status' => 'int', @@ -83397,84 +83397,84 @@ 'count' => 'int', '&total' => 'int', ), - 'ZendAPI_Queue::getJob' => + 'zendapi_queue::getjob' => array ( 0 => 'Job', 'job_id' => 'int', ), - 'ZendAPI_Queue::getJobsInQueue' => + 'zendapi_queue::getjobsinqueue' => array ( 0 => 'array', 'filter_options=' => 'array', 'max_jobs=' => 'int', 'with_globals_and_output=' => 'bool', ), - 'ZendAPI_Queue::getLastError' => + 'zendapi_queue::getlasterror' => array ( 0 => 'string', ), - 'ZendAPI_Queue::getNumOfJobsInQueue' => + 'zendapi_queue::getnumofjobsinqueue' => array ( 0 => 'int', 'filter_options=' => 'array', ), - 'ZendAPI_Queue::getStatistics' => + 'zendapi_queue::getstatistics' => array ( 0 => 'array', ), - 'ZendAPI_Queue::isScriptExists' => + 'zendapi_queue::isscriptexists' => array ( 0 => 'bool', 'path' => 'string', ), - 'ZendAPI_Queue::isSuspend' => + 'zendapi_queue::issuspend' => array ( 0 => 'bool', ), - 'ZendAPI_Queue::login' => + 'zendapi_queue::login' => array ( 0 => 'bool', 'password' => 'string', 'application_id=' => 'int', ), - 'ZendAPI_Queue::removeJob' => + 'zendapi_queue::removejob' => array ( 0 => 'bool', 'job_id' => 'array|int', ), - 'ZendAPI_Queue::requeueJob' => + 'zendapi_queue::requeuejob' => array ( 0 => 'bool', 'job' => 'Job', ), - 'ZendAPI_Queue::resumeJob' => + 'zendapi_queue::resumejob' => array ( 0 => 'bool', 'job_id' => 'array|int', ), - 'ZendAPI_Queue::resumeQueue' => + 'zendapi_queue::resumequeue' => array ( 0 => 'bool', ), - 'ZendAPI_Queue::setMaxHistoryTime' => + 'zendapi_queue::setmaxhistorytime' => array ( 0 => 'bool', ), - 'ZendAPI_Queue::suspendJob' => + 'zendapi_queue::suspendjob' => array ( 0 => 'bool', 'job_id' => 'array|int', ), - 'ZendAPI_Queue::suspendQueue' => + 'zendapi_queue::suspendqueue' => array ( 0 => 'bool', ), - 'ZendAPI_Queue::updateJob' => + 'zendapi_queue::updatejob' => array ( 0 => 'int', '&job' => 'Job', ), - 'ZendAPI_Queue::zendapi_queue' => + 'zendapi_queue::zendapi_queue' => array ( 0 => 'ZendAPI_Queue', 'queue_url' => 'string', @@ -83532,13 +83532,13 @@ 0 => 'resource', 'zip' => 'resource', ), - 'ZipArchive::addEmptyDir' => + 'ziparchive::addemptydir' => array ( 0 => 'bool', 'dirname' => 'string', 'flags=' => 'int', ), - 'ZipArchive::addFile' => + 'ziparchive::addfile' => array ( 0 => 'bool', 'filepath' => 'string', @@ -83547,73 +83547,73 @@ 'length=' => 'int', 'flags=' => 'int', ), - 'ZipArchive::addFromString' => + 'ziparchive::addfromstring' => array ( 0 => 'bool', 'name' => 'string', 'content' => 'string', 'flags=' => 'int', ), - 'ZipArchive::addGlob' => + 'ziparchive::addglob' => array ( 0 => 'array|false', 'pattern' => 'string', 'flags=' => 'int', 'options=' => 'array', ), - 'ZipArchive::addPattern' => + 'ziparchive::addpattern' => array ( 0 => 'array|false', 'pattern' => 'string', 'path=' => 'string', 'options=' => 'array', ), - 'ZipArchive::clearError' => + 'ziparchive::clearerror' => array ( 0 => 'void', ), - 'ZipArchive::close' => + 'ziparchive::close' => array ( 0 => 'bool', ), - 'ZipArchive::count' => + 'ziparchive::count' => array ( 0 => 'int', ), - 'ZipArchive::deleteIndex' => + 'ziparchive::deleteindex' => array ( 0 => 'bool', 'index' => 'int', ), - 'ZipArchive::deleteName' => + 'ziparchive::deletename' => array ( 0 => 'bool', 'name' => 'string', ), - 'ZipArchive::extractTo' => + 'ziparchive::extractto' => array ( 0 => 'bool', 'pathto' => 'string', 'files=' => 'array|null|string', ), - 'ZipArchive::getArchiveComment' => + 'ziparchive::getarchivecomment' => array ( 0 => 'false|string', 'flags=' => 'int', ), - 'ZipArchive::getCommentIndex' => + 'ziparchive::getcommentindex' => array ( 0 => 'false|string', 'index' => 'int', 'flags=' => 'int', ), - 'ZipArchive::getCommentName' => + 'ziparchive::getcommentname' => array ( 0 => 'false|string', 'name' => 'string', 'flags=' => 'int', ), - 'ZipArchive::getExternalAttributesIndex' => + 'ziparchive::getexternalattributesindex' => array ( 0 => 'bool', 'index' => 'int', @@ -83621,7 +83621,7 @@ '&w_attr' => 'int', 'flags=' => 'int', ), - 'ZipArchive::getExternalAttributesName' => + 'ziparchive::getexternalattributesname' => array ( 0 => 'bool', 'name' => 'string', @@ -83629,95 +83629,95 @@ '&w_attr' => 'int', 'flags=' => 'int', ), - 'ZipArchive::getFromIndex' => + 'ziparchive::getfromindex' => array ( 0 => 'false|string', 'index' => 'int', 'len=' => 'int', 'flags=' => 'int', ), - 'ZipArchive::getFromName' => + 'ziparchive::getfromname' => array ( 0 => 'false|string', 'name' => 'string', 'len=' => 'int', 'flags=' => 'int', ), - 'ZipArchive::getNameIndex' => + 'ziparchive::getnameindex' => array ( 0 => 'false|string', 'index' => 'int', 'flags=' => 'int', ), - 'ZipArchive::getStatusString' => + 'ziparchive::getstatusstring' => array ( 0 => 'string', ), - 'ZipArchive::getStream' => + 'ziparchive::getstream' => array ( 0 => 'false|resource', 'name' => 'string', ), - 'ZipArchive::getStreamIndex' => + 'ziparchive::getstreamindex' => array ( 0 => 'false|resource', 'index' => 'int', 'flags=' => 'int', ), - 'ZipArchive::getStreamName' => + 'ziparchive::getstreamname' => array ( 0 => 'false|resource', 'name' => 'string', 'flags=' => 'int', ), - 'ZipArchive::isCompressionMethodSupported' => + 'ziparchive::iscompressionmethodsupported' => array ( 0 => 'bool', 'method' => 'int', 'enc=' => 'bool', ), - 'ZipArchive::isEncryptionMethodSupported' => + 'ziparchive::isencryptionmethodsupported' => array ( 0 => 'bool', 'method' => 'int', 'enc=' => 'bool', ), - 'ZipArchive::locateName' => + 'ziparchive::locatename' => array ( 0 => 'false|int', 'name' => 'string', 'flags=' => 'int', ), - 'ZipArchive::open' => + 'ziparchive::open' => array ( 0 => 'bool|int', 'filename' => 'string', 'flags=' => 'int', ), - 'ZipArchive::registerCancelCallback' => + 'ziparchive::registercancelcallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'ZipArchive::registerProgressCallback' => + 'ziparchive::registerprogresscallback' => array ( 0 => 'bool', 'rate' => 'float', 'callback' => 'callable', ), - 'ZipArchive::renameIndex' => + 'ziparchive::renameindex' => array ( 0 => 'bool', 'index' => 'int', 'new_name' => 'string', ), - 'ZipArchive::renameName' => + 'ziparchive::renamename' => array ( 0 => 'bool', 'name' => 'string', 'new_name' => 'string', ), - 'ZipArchive::replaceFile' => + 'ziparchive::replacefile' => array ( 0 => 'bool', 'filepath' => 'string', @@ -83726,52 +83726,52 @@ 'length=' => 'int', 'flags=' => 'int', ), - 'ZipArchive::setArchiveComment' => + 'ziparchive::setarchivecomment' => array ( 0 => 'bool', 'comment' => 'string', ), - 'ZipArchive::setCommentIndex' => + 'ziparchive::setcommentindex' => array ( 0 => 'bool', 'index' => 'int', 'comment' => 'string', ), - 'ZipArchive::setCommentName' => + 'ziparchive::setcommentname' => array ( 0 => 'bool', 'name' => 'string', 'comment' => 'string', ), - 'ZipArchive::setCompressionIndex' => + 'ziparchive::setcompressionindex' => array ( 0 => 'bool', 'index' => 'int', 'method' => 'int', 'compflags=' => 'int', ), - 'ZipArchive::setCompressionName' => + 'ziparchive::setcompressionname' => array ( 0 => 'bool', 'name' => 'string', 'method' => 'int', 'compflags=' => 'int', ), - 'ZipArchive::setEncryptionIndex' => + 'ziparchive::setencryptionindex' => array ( 0 => 'bool', 'index' => 'int', 'method' => 'int', 'password=' => 'null|string', ), - 'ZipArchive::setEncryptionName' => + 'ziparchive::setencryptionname' => array ( 0 => 'bool', 'name' => 'string', 'method' => 'int', 'password=' => 'null|string', ), - 'ZipArchive::setExternalAttributesIndex' => + 'ziparchive::setexternalattributesindex' => array ( 0 => 'bool', 'index' => 'int', @@ -83779,7 +83779,7 @@ 'attr' => 'int', 'flags=' => 'int', ), - 'ZipArchive::setExternalAttributesName' => + 'ziparchive::setexternalattributesname' => array ( 0 => 'bool', 'name' => 'string', @@ -83787,51 +83787,51 @@ 'attr' => 'int', 'flags=' => 'int', ), - 'ZipArchive::setMtimeIndex' => + 'ziparchive::setmtimeindex' => array ( 0 => 'bool', 'index' => 'int', 'timestamp' => 'int', 'flags=' => 'int', ), - 'ZipArchive::setMtimeName' => + 'ziparchive::setmtimename' => array ( 0 => 'bool', 'name' => 'string', 'timestamp' => 'int', 'flags=' => 'int', ), - 'ZipArchive::setPassword' => + 'ziparchive::setpassword' => array ( 0 => 'bool', 'password' => 'string', ), - 'ZipArchive::statIndex' => + 'ziparchive::statindex' => array ( 0 => 'array|false', 'index' => 'int', 'flags=' => 'int', ), - 'ZipArchive::statName' => + 'ziparchive::statname' => array ( 0 => 'array|false', 'name' => 'string', 'flags=' => 'int', ), - 'ZipArchive::unchangeAll' => + 'ziparchive::unchangeall' => array ( 0 => 'bool', ), - 'ZipArchive::unchangeArchive' => + 'ziparchive::unchangearchive' => array ( 0 => 'bool', ), - 'ZipArchive::unchangeIndex' => + 'ziparchive::unchangeindex' => array ( 0 => 'bool', 'index' => 'int', ), - 'ZipArchive::unchangeName' => + 'ziparchive::unchangename' => array ( 0 => 'bool', 'name' => 'string', @@ -83853,112 +83853,112 @@ array ( 0 => 'false|string', ), - 'ZMQ::__construct' => + 'zmq::__construct' => array ( 0 => 'void', ), - 'ZMQContext::__construct' => + 'zmqcontext::__construct' => array ( 0 => 'void', 'io_threads=' => 'int', 'is_persistent=' => 'bool', ), - 'ZMQContext::getOpt' => + 'zmqcontext::getopt' => array ( 0 => 'int|string', 'key' => 'string', ), - 'ZMQContext::getSocket' => + 'zmqcontext::getsocket' => array ( 0 => 'ZMQSocket', 'type' => 'int', 'persistent_id=' => 'string', 'on_new_socket=' => 'callable', ), - 'ZMQContext::isPersistent' => + 'zmqcontext::ispersistent' => array ( 0 => 'bool', ), - 'ZMQContext::setOpt' => + 'zmqcontext::setopt' => array ( 0 => 'ZMQContext', 'key' => 'int', 'value' => 'mixed', ), - 'ZMQDevice::__construct' => + 'zmqdevice::__construct' => array ( 0 => 'void', 'frontend' => 'ZMQSocket', 'backend' => 'ZMQSocket', 'listener=' => 'ZMQSocket', ), - 'ZMQDevice::getIdleTimeout' => + 'zmqdevice::getidletimeout' => array ( 0 => 'ZMQDevice', ), - 'ZMQDevice::getTimerTimeout' => + 'zmqdevice::gettimertimeout' => array ( 0 => 'ZMQDevice', ), - 'ZMQDevice::run' => + 'zmqdevice::run' => array ( 0 => 'void', ), - 'ZMQDevice::setIdleCallback' => + 'zmqdevice::setidlecallback' => array ( 0 => 'ZMQDevice', 'cb_func' => 'callable', 'timeout' => 'int', 'user_data=' => 'mixed', ), - 'ZMQDevice::setIdleTimeout' => + 'zmqdevice::setidletimeout' => array ( 0 => 'ZMQDevice', 'timeout' => 'int', ), - 'ZMQDevice::setTimerCallback' => + 'zmqdevice::settimercallback' => array ( 0 => 'ZMQDevice', 'cb_func' => 'callable', 'timeout' => 'int', 'user_data=' => 'mixed', ), - 'ZMQDevice::setTimerTimeout' => + 'zmqdevice::settimertimeout' => array ( 0 => 'ZMQDevice', 'timeout' => 'int', ), - 'ZMQPoll::add' => + 'zmqpoll::add' => array ( 0 => 'string', 'entry' => 'mixed', 'type' => 'int', ), - 'ZMQPoll::clear' => + 'zmqpoll::clear' => array ( 0 => 'ZMQPoll', ), - 'ZMQPoll::count' => + 'zmqpoll::count' => array ( 0 => 'int', ), - 'ZMQPoll::getLastErrors' => + 'zmqpoll::getlasterrors' => array ( 0 => 'array', ), - 'ZMQPoll::poll' => + 'zmqpoll::poll' => array ( 0 => 'int', '&w_readable' => 'array', '&w_writable' => 'array', 'timeout=' => 'int', ), - 'ZMQPoll::remove' => + 'zmqpoll::remove' => array ( 0 => 'bool', 'item' => 'mixed', ), - 'ZMQSocket::__construct' => + 'zmqsocket::__construct' => array ( 0 => 'void', 'context' => 'ZMQContext', @@ -83966,102 +83966,102 @@ 'persistent_id=' => 'string', 'on_new_socket=' => 'callable', ), - 'ZMQSocket::bind' => + 'zmqsocket::bind' => array ( 0 => 'ZMQSocket', 'dsn' => 'string', 'force=' => 'bool', ), - 'ZMQSocket::connect' => + 'zmqsocket::connect' => array ( 0 => 'ZMQSocket', 'dsn' => 'string', 'force=' => 'bool', ), - 'ZMQSocket::disconnect' => + 'zmqsocket::disconnect' => array ( 0 => 'ZMQSocket', 'dsn' => 'string', ), - 'ZMQSocket::getEndpoints' => + 'zmqsocket::getendpoints' => array ( 0 => 'array', ), - 'ZMQSocket::getPersistentId' => + 'zmqsocket::getpersistentid' => array ( 0 => 'null|string', ), - 'ZMQSocket::getSocketType' => + 'zmqsocket::getsockettype' => array ( 0 => 'int', ), - 'ZMQSocket::getSockOpt' => + 'zmqsocket::getsockopt' => array ( 0 => 'int|string', 'key' => 'string', ), - 'ZMQSocket::isPersistent' => + 'zmqsocket::ispersistent' => array ( 0 => 'bool', ), - 'ZMQSocket::recv' => + 'zmqsocket::recv' => array ( 0 => 'string', 'mode=' => 'int', ), - 'ZMQSocket::recvMulti' => + 'zmqsocket::recvmulti' => array ( 0 => 'array', 'mode=' => 'int', ), - 'ZMQSocket::send' => + 'zmqsocket::send' => array ( 0 => 'ZMQSocket', 'message' => 'array', 'mode=' => 'int', ), - 'ZMQSocket::send\'1' => + 'zmqsocket::send\'1' => array ( 0 => 'ZMQSocket', 'message' => 'string', 'mode=' => 'int', ), - 'ZMQSocket::sendmulti' => + 'zmqsocket::sendmulti' => array ( 0 => 'ZMQSocket', 'message' => 'array', 'mode=' => 'int', ), - 'ZMQSocket::setSockOpt' => + 'zmqsocket::setsockopt' => array ( 0 => 'ZMQSocket', 'key' => 'int', 'value' => 'mixed', ), - 'ZMQSocket::unbind' => + 'zmqsocket::unbind' => array ( 0 => 'ZMQSocket', 'dsn' => 'string', ), - 'Zookeeper::addAuth' => + 'zookeeper::addauth' => array ( 0 => 'bool', 'scheme' => 'string', 'cert' => 'string', 'completion_cb=' => 'callable', ), - 'Zookeeper::close' => + 'zookeeper::close' => array ( 0 => 'void', ), - 'Zookeeper::connect' => + 'zookeeper::connect' => array ( 0 => 'void', 'host' => 'string', 'watcher_cb=' => 'callable', 'recv_timeout=' => 'int', ), - 'Zookeeper::create' => + 'zookeeper::create' => array ( 0 => 'string', 'path' => 'string', @@ -84069,19 +84069,19 @@ 'acls' => 'array', 'flags=' => 'int', ), - 'Zookeeper::delete' => + 'zookeeper::delete' => array ( 0 => 'bool', 'path' => 'string', 'version=' => 'int', ), - 'Zookeeper::exists' => + 'zookeeper::exists' => array ( 0 => 'bool', 'path' => 'string', 'watcher_cb=' => 'callable', ), - 'Zookeeper::get' => + 'zookeeper::get' => array ( 0 => 'string', 'path' => 'string', @@ -84089,38 +84089,38 @@ 'stat=' => 'array', 'max_size=' => 'int', ), - 'Zookeeper::getAcl' => + 'zookeeper::getacl' => array ( 0 => 'array', 'path' => 'string', ), - 'Zookeeper::getChildren' => + 'zookeeper::getchildren' => array ( 0 => 'array|false', 'path' => 'string', 'watcher_cb=' => 'callable', ), - 'Zookeeper::getClientId' => + 'zookeeper::getclientid' => array ( 0 => 'int', ), - 'Zookeeper::getConfig' => + 'zookeeper::getconfig' => array ( 0 => 'ZookeeperConfig', ), - 'Zookeeper::getRecvTimeout' => + 'zookeeper::getrecvtimeout' => array ( 0 => 'int', ), - 'Zookeeper::getState' => + 'zookeeper::getstate' => array ( 0 => 'int', ), - 'Zookeeper::isRecoverable' => + 'zookeeper::isrecoverable' => array ( 0 => 'bool', ), - 'Zookeeper::set' => + 'zookeeper::set' => array ( 0 => 'bool', 'path' => 'string', @@ -84128,29 +84128,29 @@ 'version=' => 'int', 'stat=' => 'array', ), - 'Zookeeper::setAcl' => + 'zookeeper::setacl' => array ( 0 => 'bool', 'path' => 'string', 'version' => 'int', 'acl' => 'array', ), - 'Zookeeper::setDebugLevel' => + 'zookeeper::setdebuglevel' => array ( 0 => 'bool', 'logLevel' => 'int', ), - 'Zookeeper::setDeterministicConnOrder' => + 'zookeeper::setdeterministicconnorder' => array ( 0 => 'bool', 'yesOrNo' => 'bool', ), - 'Zookeeper::setLogStream' => + 'zookeeper::setlogstream' => array ( 0 => 'bool', 'stream' => 'resource', ), - 'Zookeeper::setWatcher' => + 'zookeeper::setwatcher' => array ( 0 => 'bool', 'watcher_cb' => 'callable', @@ -84159,27 +84159,27 @@ array ( 0 => 'void', ), - 'ZookeeperConfig::add' => + 'zookeeperconfig::add' => array ( 0 => 'void', 'members' => 'string', 'version=' => 'int', 'stat=' => 'array', ), - 'ZookeeperConfig::get' => + 'zookeeperconfig::get' => array ( 0 => 'string', 'watcher_cb=' => 'callable', 'stat=' => 'array', ), - 'ZookeeperConfig::remove' => + 'zookeeperconfig::remove' => array ( 0 => 'void', 'id_list' => 'string', 'version=' => 'int', 'stat=' => 'array', ), - 'ZookeeperConfig::set' => + 'zookeeperconfig::set' => array ( 0 => 'void', 'members' => 'string', diff --git a/dictionaries/CallMap_71_delta.php b/dictionaries/CallMap_71_delta.php index 0e55325f1cc..2a314bb0b9a 100644 --- a/dictionaries/CallMap_71_delta.php +++ b/dictionaries/CallMap_71_delta.php @@ -3,7 +3,7 @@ return array ( 'added' => array ( - 'Closure::fromCallable' => + 'closure::fromcallable' => array ( 0 => 'Closure', 'callback' => 'callable', @@ -88,7 +88,7 @@ ), 'changed' => array ( - 'DateTimeZone::listIdentifiers' => + 'datetimezone::listidentifiers' => array ( 'old' => array ( @@ -103,7 +103,7 @@ 'countryCode=' => 'null|string', ), ), - 'IntlDateFormatter::format' => + 'intldateformatter::format' => array ( 'old' => array ( @@ -116,7 +116,7 @@ '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' => + 'sessionhandler::gc' => array ( 'old' => array ( @@ -129,7 +129,7 @@ 'max_lifetime' => 'int', ), ), - 'SQLite3::createFunction' => + 'sqlite3::createfunction' => array ( 'old' => array ( diff --git a/dictionaries/CallMap_72_delta.php b/dictionaries/CallMap_72_delta.php index dd338d01530..f391850e9d5 100644 --- a/dictionaries/CallMap_72_delta.php +++ b/dictionaries/CallMap_72_delta.php @@ -3,26 +3,26 @@ return array ( 'added' => array ( - 'DOMNodeList::count' => + 'domnodelist::count' => array ( 0 => 'int', ), - 'ReflectionClass::isIterable' => + 'reflectionclass::isiterable' => array ( 0 => 'bool', ), - 'ZipArchive::count' => + 'ziparchive::count' => array ( 0 => 'int', ), - 'ZipArchive::setEncryptionIndex' => + 'ziparchive::setencryptionindex' => array ( 0 => 'bool', 'index' => 'int', 'method' => 'int', 'password=' => 'string', ), - 'ZipArchive::setEncryptionName' => + 'ziparchive::setencryptionname' => array ( 0 => 'bool', 'name' => 'string', @@ -694,7 +694,7 @@ ), 'changed' => array ( - 'ReflectionClass::getMethods' => + 'reflectionclass::getmethods' => array ( 'old' => array ( @@ -707,7 +707,7 @@ 'filter=' => 'int|null', ), ), - 'ReflectionClass::getProperties' => + 'reflectionclass::getproperties' => array ( 'old' => array ( @@ -720,7 +720,7 @@ 'filter=' => 'int|null', ), ), - 'ReflectionObject::getMethods' => + 'reflectionobject::getmethods' => array ( 'old' => array ( @@ -733,7 +733,7 @@ 'filter=' => 'int|null', ), ), - 'ReflectionObject::getProperties' => + 'reflectionobject::getproperties' => array ( 'old' => array ( @@ -746,7 +746,7 @@ 'filter=' => 'int|null', ), ), - 'SQLite3::openBlob' => + 'sqlite3::openblob' => array ( 'old' => array ( @@ -912,24 +912,24 @@ ), 'removed' => array ( - 'Sodium\\add' => + 'sodium\\add' => array ( 0 => 'void', '&left' => 'string', 'right' => 'string', ), - 'Sodium\\bin2hex' => + 'sodium\\bin2hex' => array ( 0 => 'string', 'binary' => 'string', ), - 'Sodium\\compare' => + 'sodium\\compare' => array ( 0 => 'int', 'left' => 'string', 'right' => 'string', ), - 'Sodium\\crypto_aead_aes256gcm_decrypt' => + 'sodium\\crypto_aead_aes256gcm_decrypt' => array ( 0 => 'false|string', 'msg' => 'string', @@ -937,7 +937,7 @@ 'key' => 'string', 'ad=' => 'string', ), - 'Sodium\\crypto_aead_aes256gcm_encrypt' => + 'sodium\\crypto_aead_aes256gcm_encrypt' => array ( 0 => 'string', 'msg' => 'string', @@ -945,11 +945,11 @@ 'key' => 'string', 'ad=' => 'string', ), - 'Sodium\\crypto_aead_aes256gcm_is_available' => + 'sodium\\crypto_aead_aes256gcm_is_available' => array ( 0 => 'bool', ), - 'Sodium\\crypto_aead_chacha20poly1305_decrypt' => + 'sodium\\crypto_aead_chacha20poly1305_decrypt' => array ( 0 => 'string', 'msg' => 'string', @@ -957,7 +957,7 @@ 'key' => 'string', 'ad=' => 'string', ), - 'Sodium\\crypto_aead_chacha20poly1305_encrypt' => + 'sodium\\crypto_aead_chacha20poly1305_encrypt' => array ( 0 => 'string', 'msg' => 'string', @@ -965,101 +965,101 @@ 'key' => 'string', 'ad=' => 'string', ), - 'Sodium\\crypto_auth' => + 'sodium\\crypto_auth' => array ( 0 => 'string', 'msg' => 'string', 'key' => 'string', ), - 'Sodium\\crypto_auth_verify' => + 'sodium\\crypto_auth_verify' => array ( 0 => 'bool', 'mac' => 'string', 'msg' => 'string', 'key' => 'string', ), - 'Sodium\\crypto_box' => + 'sodium\\crypto_box' => array ( 0 => 'string', 'msg' => 'string', 'nonce' => 'string', 'keypair' => 'string', ), - 'Sodium\\crypto_box_keypair' => + 'sodium\\crypto_box_keypair' => array ( 0 => 'string', ), - 'Sodium\\crypto_box_keypair_from_secretkey_and_publickey' => + 'sodium\\crypto_box_keypair_from_secretkey_and_publickey' => array ( 0 => 'string', 'secretkey' => 'string', 'publickey' => 'string', ), - 'Sodium\\crypto_box_open' => + 'sodium\\crypto_box_open' => array ( 0 => 'string', 'msg' => 'string', 'nonce' => 'string', 'keypair' => 'string', ), - 'Sodium\\crypto_box_publickey' => + 'sodium\\crypto_box_publickey' => array ( 0 => 'string', 'keypair' => 'string', ), - 'Sodium\\crypto_box_publickey_from_secretkey' => + 'sodium\\crypto_box_publickey_from_secretkey' => array ( 0 => 'string', 'secretkey' => 'string', ), - 'Sodium\\crypto_box_seal' => + 'sodium\\crypto_box_seal' => array ( 0 => 'string', 'message' => 'string', 'publickey' => 'string', ), - 'Sodium\\crypto_box_seal_open' => + 'sodium\\crypto_box_seal_open' => array ( 0 => 'string', 'encrypted' => 'string', 'keypair' => 'string', ), - 'Sodium\\crypto_box_secretkey' => + 'sodium\\crypto_box_secretkey' => array ( 0 => 'string', 'keypair' => 'string', ), - 'Sodium\\crypto_box_seed_keypair' => + 'sodium\\crypto_box_seed_keypair' => array ( 0 => 'string', 'seed' => 'string', ), - 'Sodium\\crypto_generichash' => + 'sodium\\crypto_generichash' => array ( 0 => 'string', 'input' => 'string', 'key=' => 'string', 'length=' => 'int', ), - 'Sodium\\crypto_generichash_final' => + 'sodium\\crypto_generichash_final' => array ( 0 => 'string', 'state' => 'string', 'length=' => 'int', ), - 'Sodium\\crypto_generichash_init' => + 'sodium\\crypto_generichash_init' => array ( 0 => 'string', 'key=' => 'string', 'length=' => 'int', ), - 'Sodium\\crypto_generichash_update' => + 'sodium\\crypto_generichash_update' => array ( 0 => 'bool', '&hashState' => 'string', 'append' => 'string', ), - 'Sodium\\crypto_kx' => + 'sodium\\crypto_kx' => array ( 0 => 'string', 'secretkey' => 'string', @@ -1067,7 +1067,7 @@ 'client_publickey' => 'string', 'server_publickey' => 'string', ), - 'Sodium\\crypto_pwhash' => + 'sodium\\crypto_pwhash' => array ( 0 => 'string', 'out_len' => 'int', @@ -1076,7 +1076,7 @@ 'opslimit' => 'int', 'memlimit' => 'int', ), - 'Sodium\\crypto_pwhash_scryptsalsa208sha256' => + 'sodium\\crypto_pwhash_scryptsalsa208sha256' => array ( 0 => 'string', 'out_len' => 'int', @@ -1085,186 +1085,186 @@ 'opslimit' => 'int', 'memlimit' => 'int', ), - 'Sodium\\crypto_pwhash_scryptsalsa208sha256_str' => + 'sodium\\crypto_pwhash_scryptsalsa208sha256_str' => array ( 0 => 'string', 'passwd' => 'string', 'opslimit' => 'int', 'memlimit' => 'int', ), - 'Sodium\\crypto_pwhash_scryptsalsa208sha256_str_verify' => + 'sodium\\crypto_pwhash_scryptsalsa208sha256_str_verify' => array ( 0 => 'bool', 'hash' => 'string', 'passwd' => 'string', ), - 'Sodium\\crypto_pwhash_str' => + 'sodium\\crypto_pwhash_str' => array ( 0 => 'string', 'passwd' => 'string', 'opslimit' => 'int', 'memlimit' => 'int', ), - 'Sodium\\crypto_pwhash_str_verify' => + 'sodium\\crypto_pwhash_str_verify' => array ( 0 => 'bool', 'hash' => 'string', 'passwd' => 'string', ), - 'Sodium\\crypto_scalarmult' => + 'sodium\\crypto_scalarmult' => array ( 0 => 'string', 'ecdhA' => 'string', 'ecdhB' => 'string', ), - 'Sodium\\crypto_scalarmult_base' => + 'sodium\\crypto_scalarmult_base' => array ( 0 => 'string', 'sk' => 'string', ), - 'Sodium\\crypto_secretbox' => + 'sodium\\crypto_secretbox' => array ( 0 => 'string', 'plaintext' => 'string', 'nonce' => 'string', 'key' => 'string', ), - 'Sodium\\crypto_secretbox_open' => + 'sodium\\crypto_secretbox_open' => array ( 0 => 'string', 'ciphertext' => 'string', 'nonce' => 'string', 'key' => 'string', ), - 'Sodium\\crypto_shorthash' => + 'sodium\\crypto_shorthash' => array ( 0 => 'string', 'message' => 'string', 'key' => 'string', ), - 'Sodium\\crypto_sign' => + 'sodium\\crypto_sign' => array ( 0 => 'string', 'message' => 'string', 'secretkey' => 'string', ), - 'Sodium\\crypto_sign_detached' => + 'sodium\\crypto_sign_detached' => array ( 0 => 'string', 'message' => 'string', 'secretkey' => 'string', ), - 'Sodium\\crypto_sign_ed25519_pk_to_curve25519' => + 'sodium\\crypto_sign_ed25519_pk_to_curve25519' => array ( 0 => 'string', 'sign_pk' => 'string', ), - 'Sodium\\crypto_sign_ed25519_sk_to_curve25519' => + 'sodium\\crypto_sign_ed25519_sk_to_curve25519' => array ( 0 => 'string', 'sign_sk' => 'string', ), - 'Sodium\\crypto_sign_keypair' => + 'sodium\\crypto_sign_keypair' => array ( 0 => 'string', ), - 'Sodium\\crypto_sign_keypair_from_secretkey_and_publickey' => + 'sodium\\crypto_sign_keypair_from_secretkey_and_publickey' => array ( 0 => 'string', 'secretkey' => 'string', 'publickey' => 'string', ), - 'Sodium\\crypto_sign_open' => + 'sodium\\crypto_sign_open' => array ( 0 => 'false|string', 'signed_message' => 'string', 'publickey' => 'string', ), - 'Sodium\\crypto_sign_publickey' => + 'sodium\\crypto_sign_publickey' => array ( 0 => 'string', 'keypair' => 'string', ), - 'Sodium\\crypto_sign_publickey_from_secretkey' => + 'sodium\\crypto_sign_publickey_from_secretkey' => array ( 0 => 'string', 'secretkey' => 'string', ), - 'Sodium\\crypto_sign_secretkey' => + 'sodium\\crypto_sign_secretkey' => array ( 0 => 'string', 'keypair' => 'string', ), - 'Sodium\\crypto_sign_seed_keypair' => + 'sodium\\crypto_sign_seed_keypair' => array ( 0 => 'string', 'seed' => 'string', ), - 'Sodium\\crypto_sign_verify_detached' => + 'sodium\\crypto_sign_verify_detached' => array ( 0 => 'bool', 'signature' => 'string', 'msg' => 'string', 'publickey' => 'string', ), - 'Sodium\\crypto_stream' => + 'sodium\\crypto_stream' => array ( 0 => 'string', 'length' => 'int', 'nonce' => 'string', 'key' => 'string', ), - 'Sodium\\crypto_stream_xor' => + 'sodium\\crypto_stream_xor' => array ( 0 => 'string', 'plaintext' => 'string', 'nonce' => 'string', 'key' => 'string', ), - 'Sodium\\hex2bin' => + 'sodium\\hex2bin' => array ( 0 => 'string', 'hex' => 'string', ), - 'Sodium\\increment' => + 'sodium\\increment' => array ( 0 => 'string', '&nonce' => 'string', ), - 'Sodium\\library_version_major' => + 'sodium\\library_version_major' => array ( 0 => 'int', ), - 'Sodium\\library_version_minor' => + 'sodium\\library_version_minor' => array ( 0 => 'int', ), - 'Sodium\\memcmp' => + 'sodium\\memcmp' => array ( 0 => 'int', 'left' => 'string', 'right' => 'string', ), - 'Sodium\\memzero' => + 'sodium\\memzero' => array ( 0 => 'void', '&target' => 'string', ), - 'Sodium\\randombytes_buf' => + 'sodium\\randombytes_buf' => array ( 0 => 'string', 'length' => 'int', ), - 'Sodium\\randombytes_random16' => + 'sodium\\randombytes_random16' => array ( 0 => 'int|string', ), - 'Sodium\\randombytes_uniform' => + 'sodium\\randombytes_uniform' => array ( 0 => 'int', 'upperBoundNonInclusive' => 'int', ), - 'Sodium\\version_string' => + 'sodium\\version_string' => array ( 0 => 'string', ), diff --git a/dictionaries/CallMap_73_delta.php b/dictionaries/CallMap_73_delta.php index 1e949a9359b..e41d3441464 100644 --- a/dictionaries/CallMap_73_delta.php +++ b/dictionaries/CallMap_73_delta.php @@ -3,65 +3,65 @@ return array ( 'added' => array ( - 'DateTime::createFromImmutable' => + 'datetime::createfromimmutable' => array ( 0 => 'static', 'object' => 'DateTimeImmutable', ), - 'JsonException::__clone' => + 'jsonexception::__clone' => array ( 0 => 'void', ), - 'JsonException::__construct' => + 'jsonexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'JsonException::__toString' => + 'jsonexception::__tostring' => array ( 0 => 'string', ), - 'JsonException::__wakeup' => + 'jsonexception::__wakeup' => array ( 0 => 'void', ), - 'JsonException::getCode' => + 'jsonexception::getcode' => array ( 0 => 'int', ), - 'JsonException::getFile' => + 'jsonexception::getfile' => array ( 0 => 'string', ), - 'JsonException::getLine' => + 'jsonexception::getline' => array ( 0 => 'int', ), - 'JsonException::getMessage' => + 'jsonexception::getmessage' => array ( 0 => 'string', ), - 'JsonException::getPrevious' => + 'jsonexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'JsonException::getTrace' => + 'jsonexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'JsonException::getTraceAsString' => + 'jsonexception::gettraceasstring' => array ( 0 => 'string', ), - 'Normalizer::getRawDecomposition' => + 'normalizer::getrawdecomposition' => array ( 0 => 'null|string', 'string' => 'string', 'form=' => 'int', ), - 'SplPriorityQueue::isCorrupted' => + 'splpriorityqueue::iscorrupted' => array ( 0 => 'bool', ), diff --git a/dictionaries/CallMap_74_delta.php b/dictionaries/CallMap_74_delta.php index 4cfd529c5a5..e42b22e6d49 100644 --- a/dictionaries/CallMap_74_delta.php +++ b/dictionaries/CallMap_74_delta.php @@ -3,11 +3,11 @@ return array ( 'added' => array ( - 'ReflectionProperty::getType' => + 'reflectionproperty::gettype' => array ( 0 => 'ReflectionType|null', ), - 'ReflectionProperty::isInitialized' => + 'reflectionproperty::isinitialized' => array ( 0 => 'bool', 'object' => 'object', @@ -28,7 +28,7 @@ ), 'changed' => array ( - 'Locale::lookup' => + 'locale::lookup' => array ( 'old' => array ( @@ -47,7 +47,7 @@ 'defaultLocale=' => 'null|string', ), ), - 'SplFileObject::fwrite' => + 'splfileobject::fwrite' => array ( 'old' => array ( @@ -62,7 +62,7 @@ 'length=' => 'int', ), ), - 'SplTempFileObject::fwrite' => + 'spltempfileobject::fwrite' => array ( 'old' => array ( diff --git a/dictionaries/CallMap_80_delta.php b/dictionaries/CallMap_80_delta.php index c09d461d161..3fc2078c480 100644 --- a/dictionaries/CallMap_80_delta.php +++ b/dictionaries/CallMap_80_delta.php @@ -3,110 +3,110 @@ return array ( 'added' => array ( - 'DateTime::createFromInterface' => + 'datetime::createfrominterface' => array ( 0 => 'static', 'object' => 'DateTimeInterface', ), - 'DateTimeImmutable::createFromInterface' => + 'datetimeimmutable::createfrominterface' => array ( 0 => 'static', 'object' => 'DateTimeInterface', ), - 'PhpToken::getTokenName' => + 'phptoken::gettokenname' => array ( 0 => 'null|string', ), - 'PhpToken::is' => + 'phptoken::is' => array ( 0 => 'bool', 'kind' => 'array|int|string', ), - 'PhpToken::isIgnorable' => + 'phptoken::isignorable' => array ( 0 => 'bool', ), - 'PhpToken::tokenize' => + 'phptoken::tokenize' => array ( 0 => 'list', 'code' => 'string', 'flags=' => 'int', ), - 'ReflectionClass::getAttributes' => + 'reflectionclass::getattributes' => array ( 0 => 'list', 'name=' => 'null|string', 'flags=' => 'int', ), - 'ReflectionClassConstant::getAttributes' => + 'reflectionclassconstant::getattributes' => array ( 0 => 'list', 'name=' => 'null|string', 'flags=' => 'int', ), - 'ReflectionFunctionAbstract::getAttributes' => + 'reflectionfunctionabstract::getattributes' => array ( 0 => 'list', 'name=' => 'null|string', 'flags=' => 'int', ), - 'ReflectionParameter::getAttributes' => + 'reflectionparameter::getattributes' => array ( 0 => 'list', 'name=' => 'null|string', 'flags=' => 'int', ), - 'ReflectionProperty::getAttributes' => + 'reflectionproperty::getattributes' => array ( 0 => 'list', 'name=' => 'null|string', 'flags=' => 'int', ), - 'ReflectionProperty::getDefaultValue' => + 'reflectionproperty::getdefaultvalue' => array ( 0 => 'mixed', ), - 'ReflectionProperty::hasDefaultValue' => + 'reflectionproperty::hasdefaultvalue' => array ( 0 => 'bool', ), - 'ReflectionProperty::isPromoted' => + 'reflectionproperty::ispromoted' => array ( 0 => 'bool', ), - 'ReflectionUnionType::getTypes' => + 'reflectionuniontype::gettypes' => array ( 0 => 'list', ), - 'SplFixedArray::getIterator' => + 'splfixedarray::getiterator' => array ( 0 => 'Iterator', ), - 'WeakMap::count' => + 'weakmap::count' => array ( 0 => 'int', ), - 'WeakMap::getIterator' => + 'weakmap::getiterator' => array ( 0 => 'Iterator', ), - 'WeakMap::offsetExists' => + 'weakmap::offsetexists' => array ( 0 => 'bool', 'object' => 'object', ), - 'WeakMap::offsetGet' => + 'weakmap::offsetget' => array ( 0 => 'mixed', 'object' => 'object', ), - 'WeakMap::offsetSet' => + 'weakmap::offsetset' => array ( 0 => 'void', 'object' => 'object', 'value' => 'mixed', ), - 'WeakMap::offsetUnset' => + 'weakmap::offsetunset' => array ( 0 => 'void', 'object' => 'object', @@ -153,7 +153,7 @@ ), 'changed' => array ( - 'Collator::getStrength' => + 'collator::getstrength' => array ( 'old' => array ( @@ -164,7 +164,7 @@ 0 => 'int', ), ), - 'CURLFile::__construct' => + 'curlfile::__construct' => array ( 'old' => array ( @@ -181,7 +181,7 @@ 'posted_filename=' => 'null|string', ), ), - 'DateTime::format' => + 'datetime::format' => array ( 'old' => array ( @@ -194,7 +194,7 @@ 'format' => 'string', ), ), - 'DateTime::getTimestamp' => + 'datetime::gettimestamp' => array ( 'old' => array ( @@ -205,7 +205,7 @@ 0 => 'int', ), ), - 'DateTimeInterface::getTimestamp' => + 'datetimeinterface::gettimestamp' => array ( 'old' => array ( @@ -216,7 +216,7 @@ 0 => 'int', ), ), - 'DateTimeZone::getOffset' => + 'datetimezone::getoffset' => array ( 'old' => array ( @@ -229,7 +229,7 @@ 'datetime' => 'DateTimeInterface', ), ), - 'DateTimeZone::listIdentifiers' => + 'datetimezone::listidentifiers' => array ( 'old' => array ( @@ -244,7 +244,7 @@ 'countryCode=' => 'null|string', ), ), - 'Directory::close' => + 'directory::close' => array ( 'old' => array ( @@ -256,7 +256,7 @@ 0 => 'void', ), ), - 'Directory::read' => + 'directory::read' => array ( 'old' => array ( @@ -268,7 +268,7 @@ 0 => 'false|string', ), ), - 'Directory::rewind' => + 'directory::rewind' => array ( 'old' => array ( @@ -280,7 +280,7 @@ 0 => 'void', ), ), - 'DirectoryIterator::getFileInfo' => + 'directoryiterator::getfileinfo' => array ( 'old' => array ( @@ -293,7 +293,7 @@ 'class=' => 'class-string|null', ), ), - 'DirectoryIterator::getPathInfo' => + 'directoryiterator::getpathinfo' => array ( 'old' => array ( @@ -306,7 +306,7 @@ 'class=' => 'class-string|null', ), ), - 'DirectoryIterator::openFile' => + 'directoryiterator::openfile' => array ( 'old' => array ( @@ -323,7 +323,7 @@ 'context=' => 'null|resource', ), ), - 'DOMDocument::getElementsByTagNameNS' => + 'domdocument::getelementsbytagnamens' => array ( 'old' => array ( @@ -338,7 +338,7 @@ 'localName' => 'string', ), ), - 'DOMDocument::load' => + 'domdocument::load' => array ( 'old' => array ( @@ -353,7 +353,7 @@ 'options=' => 'int', ), ), - 'DOMDocument::loadXML' => + 'domdocument::loadxml' => array ( 'old' => array ( @@ -368,7 +368,7 @@ 'options=' => 'int', ), ), - 'DOMDocument::loadHTML' => + 'domdocument::loadhtml' => array ( 'old' => array ( @@ -383,7 +383,7 @@ 'options=' => 'int', ), ), - 'DOMDocument::loadHTMLFile' => + 'domdocument::loadhtmlfile' => array ( 'old' => array ( @@ -398,7 +398,7 @@ 'options=' => 'int', ), ), - 'DOMImplementation::createDocument' => + 'domimplementation::createdocument' => array ( 'old' => array ( @@ -415,7 +415,7 @@ 'doctype=' => 'DOMDocumentType|null', ), ), - 'ErrorException::__construct' => + 'errorexception::__construct' => array ( 'old' => array ( @@ -438,7 +438,7 @@ 'previous=' => 'Throwable|null', ), ), - 'FilesystemIterator::getFileInfo' => + 'filesystemiterator::getfileinfo' => array ( 'old' => array ( @@ -451,7 +451,7 @@ 'class=' => 'class-string|null', ), ), - 'FilesystemIterator::getPathInfo' => + 'filesystemiterator::getpathinfo' => array ( 'old' => array ( @@ -464,7 +464,7 @@ 'class=' => 'class-string|null', ), ), - 'FilesystemIterator::openFile' => + 'filesystemiterator::openfile' => array ( 'old' => array ( @@ -496,7 +496,7 @@ 'magic_database=' => 'null|string', ), ), - 'GlobIterator::getFileInfo' => + 'globiterator::getfileinfo' => array ( 'old' => array ( @@ -509,7 +509,7 @@ 'class=' => 'class-string|null', ), ), - 'GlobIterator::getPathInfo' => + 'globiterator::getpathinfo' => array ( 'old' => array ( @@ -522,7 +522,7 @@ 'class=' => 'class-string|null', ), ), - 'GlobIterator::openFile' => + 'globiterator::openfile' => array ( 'old' => array ( @@ -539,7 +539,7 @@ 'context=' => 'null|resource', ), ), - 'IntlDateFormatter::__construct' => + 'intldateformatter::__construct' => array ( 'old' => array ( @@ -562,7 +562,7 @@ 'pattern=' => 'null|string', ), ), - 'IntlDateFormatter::create' => + 'intldateformatter::create' => array ( 'old' => array ( @@ -585,7 +585,7 @@ 'pattern=' => 'null|string', ), ), - 'IntlDateFormatter::format' => + 'intldateformatter::format' => array ( 'old' => array ( @@ -598,7 +598,7 @@ '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' => + 'intldateformatter::formatobject' => array ( 'old' => array ( @@ -615,7 +615,7 @@ 'locale=' => 'null|string', ), ), - 'IntlDateFormatter::getCalendar' => + 'intldateformatter::getcalendar' => array ( 'old' => array ( @@ -626,7 +626,7 @@ 0 => 'false|int', ), ), - 'IntlDateFormatter::getCalendarObject' => + 'intldateformatter::getcalendarobject' => array ( 'old' => array ( @@ -637,7 +637,7 @@ 0 => 'IntlCalendar|false|null', ), ), - 'IntlDateFormatter::getDateType' => + 'intldateformatter::getdatetype' => array ( 'old' => array ( @@ -648,7 +648,7 @@ 0 => 'false|int', ), ), - 'IntlDateFormatter::getLocale' => + 'intldateformatter::getlocale' => array ( 'old' => array ( @@ -661,7 +661,7 @@ 'type=' => 'int', ), ), - 'IntlDateFormatter::getPattern' => + 'intldateformatter::getpattern' => array ( 'old' => array ( @@ -672,7 +672,7 @@ 0 => 'false|string', ), ), - 'IntlDateFormatter::getTimeType' => + 'intldateformatter::gettimetype' => array ( 'old' => array ( @@ -683,7 +683,7 @@ 0 => 'false|int', ), ), - 'IntlDateFormatter::getTimeZoneId' => + 'intldateformatter::gettimezoneid' => array ( 'old' => array ( @@ -694,7 +694,7 @@ 0 => 'false|string', ), ), - 'IntlDateFormatter::localtime' => + 'intldateformatter::localtime' => array ( 'old' => array ( @@ -709,7 +709,7 @@ '&rw_offset=' => 'int', ), ), - 'IntlDateFormatter::parse' => + 'intldateformatter::parse' => array ( 'old' => array ( @@ -724,7 +724,7 @@ '&rw_offset=' => 'int', ), ), - 'IntlDateFormatter::setCalendar' => + 'intldateformatter::setcalendar' => array ( 'old' => array ( @@ -737,7 +737,7 @@ 'calendar' => 'IntlCalendar|int|null', ), ), - 'IntlDateFormatter::setLenient' => + 'intldateformatter::setlenient' => array ( 'old' => array ( @@ -750,7 +750,7 @@ 'lenient' => 'bool', ), ), - 'IntlDateFormatter::setTimeZone' => + 'intldateformatter::settimezone' => array ( 'old' => array ( @@ -763,7 +763,7 @@ 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', ), ), - 'IntlTimeZone::getIDForWindowsID' => + 'intltimezone::getidforwindowsid' => array ( 'old' => array ( @@ -778,7 +778,7 @@ 'region=' => 'null|string', ), ), - 'Locale::getDisplayLanguage' => + 'locale::getdisplaylanguage' => array ( 'old' => array ( @@ -793,7 +793,7 @@ 'displayLocale=' => 'null|string', ), ), - 'Locale::getDisplayName' => + 'locale::getdisplayname' => array ( 'old' => array ( @@ -808,7 +808,7 @@ 'displayLocale=' => 'null|string', ), ), - 'Locale::getDisplayRegion' => + 'locale::getdisplayregion' => array ( 'old' => array ( @@ -823,7 +823,7 @@ 'displayLocale=' => 'null|string', ), ), - 'Locale::getDisplayScript' => + 'locale::getdisplayscript' => array ( 'old' => array ( @@ -838,7 +838,7 @@ 'displayLocale=' => 'null|string', ), ), - 'Locale::getDisplayVariant' => + 'locale::getdisplayvariant' => array ( 'old' => array ( @@ -896,7 +896,7 @@ 'query=' => 'null|string', ), ), - 'NumberFormatter::__construct' => + 'numberformatter::__construct' => array ( 'old' => array ( @@ -913,7 +913,7 @@ 'pattern=' => 'null|string', ), ), - 'NumberFormatter::create' => + 'numberformatter::create' => array ( 'old' => array ( @@ -930,7 +930,7 @@ 'pattern=' => 'null|string', ), ), - 'PDOStatement::debugDumpParams' => + 'pdostatement::debugdumpparams' => array ( 'old' => array ( @@ -941,7 +941,7 @@ 0 => 'bool|null', ), ), - 'PDOStatement::errorCode' => + 'pdostatement::errorcode' => array ( 'old' => array ( @@ -952,7 +952,7 @@ 0 => 'null|string', ), ), - 'PDOStatement::execute' => + 'pdostatement::execute' => array ( 'old' => array ( @@ -965,7 +965,7 @@ 'params=' => 'array|null', ), ), - 'PDOStatement::fetch' => + 'pdostatement::fetch' => array ( 'old' => array ( @@ -982,7 +982,7 @@ 'cursorOffset=' => 'int', ), ), - 'PDOStatement::fetchAll' => + 'pdostatement::fetchall' => array ( 'old' => array ( @@ -998,7 +998,7 @@ '...args=' => 'mixed', ), ), - 'PDOStatement::fetchColumn' => + 'pdostatement::fetchcolumn' => array ( 'old' => array ( @@ -1011,7 +1011,7 @@ 'column=' => 'int', ), ), - 'PDOStatement::setFetchMode' => + 'pdostatement::setfetchmode' => array ( 'old' => array ( @@ -1025,7 +1025,7 @@ '...args=' => 'mixed', ), ), - 'Phar::addFile' => + 'phar::addfile' => array ( 'old' => array ( @@ -1040,7 +1040,7 @@ 'localName=' => 'null|string', ), ), - 'Phar::buildFromIterator' => + 'phar::buildfromiterator' => array ( 'old' => array ( @@ -1055,7 +1055,7 @@ 'baseDirectory=' => 'null|string', ), ), - 'Phar::createDefaultStub' => + 'phar::createdefaultstub' => array ( 'old' => array ( @@ -1070,7 +1070,7 @@ 'webIndex=' => 'null|string', ), ), - 'Phar::compress' => + 'phar::compress' => array ( 'old' => array ( @@ -1085,7 +1085,7 @@ 'extension=' => 'null|string', ), ), - 'Phar::convertToData' => + 'phar::converttodata' => array ( 'old' => array ( @@ -1102,7 +1102,7 @@ 'extension=' => 'null|string', ), ), - 'Phar::convertToExecutable' => + 'phar::converttoexecutable' => array ( 'old' => array ( @@ -1119,7 +1119,7 @@ 'extension=' => 'null|string', ), ), - 'Phar::decompress' => + 'phar::decompress' => array ( 'old' => array ( @@ -1132,7 +1132,7 @@ 'extension=' => 'null|string', ), ), - 'Phar::getMetadata' => + 'phar::getmetadata' => array ( 'old' => array ( @@ -1144,7 +1144,7 @@ 'unserializeOptions=' => 'array', ), ), - 'Phar::setDefaultStub' => + 'phar::setdefaultstub' => array ( 'old' => array ( @@ -1159,7 +1159,7 @@ 'webIndex=' => 'null|string', ), ), - 'Phar::setSignatureAlgorithm' => + 'phar::setsignaturealgorithm' => array ( 'old' => array ( @@ -1174,7 +1174,7 @@ 'privateKey=' => 'null|string', ), ), - 'Phar::webPhar' => + 'phar::webphar' => array ( 'old' => array ( @@ -1195,7 +1195,7 @@ 'rewrite=' => 'callable|null', ), ), - 'PharData::addFile' => + 'phardata::addfile' => array ( 'old' => array ( @@ -1210,7 +1210,7 @@ 'localName=' => 'null|string', ), ), - 'PharData::buildFromIterator' => + 'phardata::buildfromiterator' => array ( 'old' => array ( @@ -1225,7 +1225,7 @@ 'baseDirectory=' => 'null|string', ), ), - 'PharData::compress' => + 'phardata::compress' => array ( 'old' => array ( @@ -1240,7 +1240,7 @@ 'extension=' => 'null|string', ), ), - 'PharData::convertToData' => + 'phardata::converttodata' => array ( 'old' => array ( @@ -1257,7 +1257,7 @@ 'extension=' => 'null|string', ), ), - 'PharData::convertToExecutable' => + 'phardata::converttoexecutable' => array ( 'old' => array ( @@ -1274,7 +1274,7 @@ 'extension=' => 'null|string', ), ), - 'PharData::decompress' => + 'phardata::decompress' => array ( 'old' => array ( @@ -1287,7 +1287,7 @@ 'extension=' => 'null|string', ), ), - 'PharData::setDefaultStub' => + 'phardata::setdefaultstub' => array ( 'old' => array ( @@ -1302,7 +1302,7 @@ 'webIndex=' => 'null|string', ), ), - 'PharData::setSignatureAlgorithm' => + 'phardata::setsignaturealgorithm' => array ( 'old' => array ( @@ -1317,7 +1317,7 @@ 'privateKey=' => 'null|string', ), ), - 'PharFileInfo::getMetadata' => + 'pharfileinfo::getmetadata' => array ( 'old' => array ( @@ -1329,7 +1329,7 @@ 'unserializeOptions=' => 'array', ), ), - 'PharFileInfo::isCompressed' => + 'pharfileinfo::iscompressed' => array ( 'old' => array ( @@ -1342,7 +1342,7 @@ 'compression=' => 'int|null', ), ), - 'RecursiveDirectoryIterator::getFileInfo' => + 'recursivedirectoryiterator::getfileinfo' => array ( 'old' => array ( @@ -1355,7 +1355,7 @@ 'class=' => 'class-string|null', ), ), - 'RecursiveDirectoryIterator::getPathInfo' => + 'recursivedirectoryiterator::getpathinfo' => array ( 'old' => array ( @@ -1368,7 +1368,7 @@ 'class=' => 'class-string|null', ), ), - 'RecursiveDirectoryIterator::openFile' => + 'recursivedirectoryiterator::openfile' => array ( 'old' => array ( @@ -1385,7 +1385,7 @@ 'context=' => 'null|resource', ), ), - 'RecursiveIteratorIterator::getSubIterator' => + 'recursiveiteratoriterator::getsubiterator' => array ( 'old' => array ( @@ -1398,7 +1398,7 @@ 'level=' => 'int|null', ), ), - 'RecursiveTreeIterator::getSubIterator' => + 'recursivetreeiterator::getsubiterator' => array ( 'old' => array ( @@ -1411,7 +1411,7 @@ 'level=' => 'int|null', ), ), - 'ReflectionClass::getConstants' => + 'reflectionclass::getconstants' => array ( 'old' => array ( @@ -1423,7 +1423,7 @@ 'filter=' => 'int|null', ), ), - 'ReflectionClass::getReflectionConstants' => + 'reflectionclass::getreflectionconstants' => array ( 'old' => array ( @@ -1435,7 +1435,7 @@ 'filter=' => 'int|null', ), ), - 'ReflectionClass::newInstanceArgs' => + 'reflectionclass::newinstanceargs' => array ( 'old' => array ( @@ -1448,7 +1448,7 @@ 'args=' => 'array|string, mixed>', ), ), - 'ReflectionMethod::getClosure' => + 'reflectionmethod::getclosure' => array ( 'old' => array ( @@ -1461,7 +1461,7 @@ 'object=' => 'null|object', ), ), - 'ReflectionObject::getConstants' => + 'reflectionobject::getconstants' => array ( 'old' => array ( @@ -1473,7 +1473,7 @@ 'filter=' => 'int|null', ), ), - 'ReflectionObject::getReflectionConstants' => + 'reflectionobject::getreflectionconstants' => array ( 'old' => array ( @@ -1485,7 +1485,7 @@ 'filter=' => 'int|null', ), ), - 'ReflectionObject::newInstanceArgs' => + 'reflectionobject::newinstanceargs' => array ( 'old' => array ( @@ -1498,7 +1498,7 @@ 'args=' => 'array|string, mixed>', ), ), - 'ReflectionProperty::getValue' => + 'reflectionproperty::getvalue' => array ( 'old' => array ( @@ -1511,7 +1511,7 @@ 'object=' => 'null|object', ), ), - 'ReflectionProperty::isInitialized' => + 'reflectionproperty::isinitialized' => array ( 'old' => array ( @@ -1524,7 +1524,7 @@ 'object=' => 'null|object', ), ), - 'SplFileInfo::getFileInfo' => + 'splfileinfo::getfileinfo' => array ( 'old' => array ( @@ -1537,7 +1537,7 @@ 'class=' => 'class-string|null', ), ), - 'SplFileInfo::getPathInfo' => + 'splfileinfo::getpathinfo' => array ( 'old' => array ( @@ -1550,7 +1550,7 @@ 'class=' => 'class-string|null', ), ), - 'SplFileInfo::openFile' => + 'splfileinfo::openfile' => array ( 'old' => array ( @@ -1567,7 +1567,7 @@ 'context=' => 'null|resource', ), ), - 'SplFileObject::getFileInfo' => + 'splfileobject::getfileinfo' => array ( 'old' => array ( @@ -1580,7 +1580,7 @@ 'class=' => 'class-string|null', ), ), - 'SplFileObject::getPathInfo' => + 'splfileobject::getpathinfo' => array ( 'old' => array ( @@ -1593,7 +1593,7 @@ 'class=' => 'class-string|null', ), ), - 'SplFileObject::openFile' => + 'splfileobject::openfile' => array ( 'old' => array ( @@ -1610,7 +1610,7 @@ 'context=' => 'null|resource', ), ), - 'SplTempFileObject::getFileInfo' => + 'spltempfileobject::getfileinfo' => array ( 'old' => array ( @@ -1623,7 +1623,7 @@ 'class=' => 'class-string|null', ), ), - 'SplTempFileObject::getPathInfo' => + 'spltempfileobject::getpathinfo' => array ( 'old' => array ( @@ -1636,7 +1636,7 @@ 'class=' => 'class-string|null', ), ), - 'SplTempFileObject::openFile' => + 'spltempfileobject::openfile' => array ( 'old' => array ( @@ -1672,7 +1672,7 @@ 'useIncludePath=' => 'bool', ), ), - 'tidy::parseFile' => + 'tidy::parsefile' => array ( 'old' => array ( @@ -1691,7 +1691,7 @@ 'useIncludePath=' => 'bool', ), ), - 'tidy::parseString' => + 'tidy::parsestring' => array ( 'old' => array ( @@ -1708,7 +1708,7 @@ 'encoding=' => 'null|string', ), ), - 'tidy::repairFile' => + 'tidy::repairfile' => array ( 'old' => array ( @@ -1727,7 +1727,7 @@ 'useIncludePath=' => 'bool', ), ), - 'tidy::repairString' => + 'tidy::repairstring' => array ( 'old' => array ( @@ -1744,7 +1744,7 @@ 'encoding=' => 'null|string', ), ), - 'XMLWriter::flush' => + 'xmlwriter::flush' => array ( 'old' => array ( @@ -1757,7 +1757,7 @@ 'empty=' => 'bool', ), ), - 'SimpleXMLElement::asXML' => + 'simplexmlelement::asxml' => array ( 'old' => array ( @@ -1770,7 +1770,7 @@ 'filename=' => 'null|string', ), ), - 'SimpleXMLElement::saveXML' => + 'simplexmlelement::savexml' => array ( 'old' => array ( @@ -1783,7 +1783,7 @@ 'filename=' => 'null|string', ), ), - 'SoapClient::__doRequest' => + 'soapclient::__dorequest' => array ( 'old' => array ( @@ -1804,7 +1804,7 @@ 'one_way=' => 'bool', ), ), - 'SplFileObject::fgets' => + 'splfileobject::fgets' => array ( 'old' => array ( @@ -1815,7 +1815,7 @@ 0 => 'string', ), ), - 'SplFileObject::getCurrentLine' => + 'splfileobject::getcurrentline' => array ( 'old' => array ( @@ -1826,7 +1826,7 @@ 0 => 'string', ), ), - 'XMLReader::next' => + 'xmlreader::next' => array ( 'old' => array ( @@ -1839,7 +1839,7 @@ 'name=' => 'null|string', ), ), - 'XMLWriter::startAttributeNs' => + 'xmlwriter::startattributens' => array ( 'old' => array ( @@ -1856,7 +1856,7 @@ 'namespace' => 'null|string', ), ), - 'XMLWriter::writeAttributeNs' => + 'xmlwriter::writeattributens' => array ( 'old' => array ( @@ -1875,7 +1875,7 @@ 'value' => 'string', ), ), - 'XMLWriter::writeDtdEntity' => + 'xmlwriter::writedtdentity' => array ( 'old' => array ( @@ -1898,7 +1898,7 @@ 'notationData=' => 'null|string', ), ), - 'ZipArchive::getStatusString' => + 'ziparchive::getstatusstring' => array ( 'old' => array ( @@ -1909,7 +1909,7 @@ 0 => 'string', ), ), - 'ZipArchive::setEncryptionIndex' => + 'ziparchive::setencryptionindex' => array ( 'old' => array ( @@ -1926,7 +1926,7 @@ 'password=' => 'null|string', ), ), - 'ZipArchive::setEncryptionName' => + 'ziparchive::setencryptionname' => array ( 'old' => array ( @@ -11684,7 +11684,7 @@ 'content' => 'string', ), ), - 'ZipArchive::addEmptyDir' => + 'ziparchive::addemptydir' => array ( 'old' => array ( @@ -11698,7 +11698,7 @@ 'flags=' => 'int', ), ), - 'ZipArchive::addFile' => + 'ziparchive::addfile' => array ( 'old' => array ( @@ -11718,7 +11718,7 @@ 'flags=' => 'int', ), ), - 'ZipArchive::addFromString' => + 'ziparchive::addfromstring' => array ( 'old' => array ( @@ -11737,30 +11737,30 @@ ), 'removed' => array ( - 'PDOStatement::setFetchMode\'1' => + 'pdostatement::setfetchmode\'1' => array ( 0 => 'bool', 'fetch_column' => 'int', 'colno' => 'int', ), - 'PDOStatement::setFetchMode\'2' => + 'pdostatement::setfetchmode\'2' => array ( 0 => 'bool', 'fetch_class' => 'int', 'classname' => 'string', 'ctorargs' => 'array', ), - 'PDOStatement::setFetchMode\'3' => + 'pdostatement::setfetchmode\'3' => array ( 0 => 'bool', 'fetch_into' => 'int', 'object' => 'object', ), - 'ReflectionType::isBuiltin' => + 'reflectiontype::isbuiltin' => array ( 0 => 'bool', ), - 'SplFileObject::fgetss' => + 'splfileobject::fgetss' => array ( 0 => 'false|string', 'allowable_tags=' => 'string', @@ -11859,123 +11859,123 @@ 'sub_arrays=' => 'bool', 'read_thumbnail=' => 'bool', ), - 'Reflection::export' => + 'reflection::export' => array ( 0 => 'null|string', 'r' => 'reflector', 'return=' => 'bool', ), - 'ReflectionClass::export' => + 'reflectionclass::export' => array ( 0 => 'null|string', 'argument' => 'object|string', 'return=' => 'bool', ), - 'ReflectionClassConstant::export' => + 'reflectionclassconstant::export' => array ( 0 => 'string', 'class' => 'mixed', 'name' => 'string', 'return=' => 'bool', ), - 'ReflectionExtension::export' => + 'reflectionextension::export' => array ( 0 => 'null|string', 'name' => 'string', 'return=' => 'bool', ), - 'ReflectionFunction::export' => + 'reflectionfunction::export' => array ( 0 => 'null|string', 'name' => 'string', 'return=' => 'bool', ), - 'ReflectionFunctionAbstract::export' => + 'reflectionfunctionabstract::export' => array ( 0 => 'null|string', ), - 'ReflectionMethod::export' => + 'reflectionmethod::export' => array ( 0 => 'null|string', 'class' => 'string', 'name' => 'string', 'return=' => 'bool', ), - 'ReflectionObject::export' => + 'reflectionobject::export' => array ( 0 => 'null|string', 'argument' => 'object', 'return=' => 'bool', ), - 'ReflectionParameter::export' => + 'reflectionparameter::export' => array ( 0 => 'null|string', 'function' => 'string', 'parameter' => 'string', 'return=' => 'bool', ), - 'ReflectionProperty::export' => + 'reflectionproperty::export' => array ( 0 => 'null|string', 'class' => 'mixed', 'name' => 'string', 'return=' => 'bool', ), - 'ReflectionZendExtension::export' => + 'reflectionzendextension::export' => array ( 0 => 'null|string', 'name' => 'string', 'return=' => 'bool', ), - 'SimpleXMLIterator::rewind' => + 'simplexmliterator::rewind' => array ( 0 => 'void', ), - 'SimpleXMLIterator::valid' => + 'simplexmliterator::valid' => array ( 0 => 'bool', ), - 'SimpleXMLIterator::current' => + 'simplexmliterator::current' => array ( 0 => 'SimpleXMLIterator|null', ), - 'SimpleXMLIterator::key' => + 'simplexmliterator::key' => array ( 0 => 'false|string', ), - 'SimpleXMLIterator::next' => + 'simplexmliterator::next' => array ( 0 => 'void', ), - 'SimpleXMLIterator::hasChildren' => + 'simplexmliterator::haschildren' => array ( 0 => 'bool', ), - 'SimpleXMLIterator::getChildren' => + 'simplexmliterator::getchildren' => array ( 0 => 'SimpleXMLIterator|null', ), - 'SplFixedArray::current' => + 'splfixedarray::current' => array ( 0 => 'mixed', ), - 'SplFixedArray::key' => + 'splfixedarray::key' => array ( 0 => 'int', ), - 'SplFixedArray::next' => + 'splfixedarray::next' => array ( 0 => 'void', ), - 'SplFixedArray::rewind' => + 'splfixedarray::rewind' => array ( 0 => 'void', ), - 'SplFixedArray::valid' => + 'splfixedarray::valid' => array ( 0 => 'bool', ), - 'SplTempFileObject::fgetss' => + 'spltempfileobject::fgetss' => array ( 0 => 'string', 'allowable_tags=' => 'string', diff --git a/dictionaries/CallMap_81_delta.php b/dictionaries/CallMap_81_delta.php index 60391a8f7ea..8a08c70594c 100644 --- a/dictionaries/CallMap_81_delta.php +++ b/dictionaries/CallMap_81_delta.php @@ -48,130 +48,130 @@ 0 => 'false|float|int|null|string', 'column=' => 'int', ), - 'CURLStringFile::__construct' => + 'curlstringfile::__construct' => array ( 0 => 'void', 'data' => 'string', 'postname' => 'string', 'mime=' => 'string', ), - 'Fiber::__construct' => + 'fiber::__construct' => array ( 0 => 'void', 'callback' => 'callable', ), - 'Fiber::start' => + 'fiber::start' => array ( 0 => 'mixed', '...args' => 'mixed', ), - 'Fiber::resume' => + 'fiber::resume' => array ( 0 => 'mixed', 'value=' => 'mixed|null', ), - 'Fiber::throw' => + 'fiber::throw' => array ( 0 => 'mixed', 'exception' => 'Throwable', ), - 'Fiber::isStarted' => + 'fiber::isstarted' => array ( 0 => 'bool', ), - 'Fiber::isSuspended' => + 'fiber::issuspended' => array ( 0 => 'bool', ), - 'Fiber::isRunning' => + 'fiber::isrunning' => array ( 0 => 'bool', ), - 'Fiber::isTerminated' => + 'fiber::isterminated' => array ( 0 => 'bool', ), - 'Fiber::getReturn' => + 'fiber::getreturn' => array ( 0 => 'mixed', ), - 'Fiber::getCurrent' => + 'fiber::getcurrent' => array ( 0 => 'Fiber|null', ), - 'Fiber::suspend' => + 'fiber::suspend' => array ( 0 => 'mixed', 'value=' => 'mixed|null', ), - 'FiberError::__construct' => + 'fibererror::__construct' => array ( 0 => 'void', ), - 'GMP::__serialize' => + 'gmp::__serialize' => array ( 0 => 'array', ), - 'GMP::__unserialize' => + 'gmp::__unserialize' => array ( 0 => 'void', 'data' => 'array', ), - 'ReflectionClass::isEnum' => + 'reflectionclass::isenum' => array ( 0 => 'bool', ), - 'ReflectionEnum::getBackingType' => + 'reflectionenum::getbackingtype' => array ( 0 => 'ReflectionType|null', ), - 'ReflectionEnum::getCase' => + 'reflectionenum::getcase' => array ( 0 => 'ReflectionEnumUnitCase', 'name' => 'string', ), - 'ReflectionEnum::getCases' => + 'reflectionenum::getcases' => array ( 0 => 'list', ), - 'ReflectionEnum::hasCase' => + 'reflectionenum::hascase' => array ( 0 => 'bool', 'name' => 'string', ), - 'ReflectionEnum::isBacked' => + 'reflectionenum::isbacked' => array ( 0 => 'bool', ), - 'ReflectionEnumUnitCase::getEnum' => + 'reflectionenumunitcase::getenum' => array ( 0 => 'ReflectionEnum', ), - 'ReflectionEnumUnitCase::getValue' => + 'reflectionenumunitcase::getvalue' => array ( 0 => 'UnitEnum', ), - 'ReflectionEnumBackedCase::getBackingValue' => + 'reflectionenumbackedcase::getbackingvalue' => array ( 0 => 'int|string', ), - 'ReflectionFunctionAbstract::getTentativeReturnType' => + 'reflectionfunctionabstract::gettentativereturntype' => array ( 0 => 'ReflectionType|null', ), - 'ReflectionFunctionAbstract::hasTentativeReturnType' => + 'reflectionfunctionabstract::hastentativereturntype' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::isStatic' => + 'reflectionfunctionabstract::isstatic' => array ( 0 => 'bool', ), - 'ReflectionObject::isEnum' => + 'reflectionobject::isenum' => array ( 0 => 'bool', ), - 'ReflectionProperty::isReadonly' => + 'reflectionproperty::isreadonly' => array ( 0 => 'bool', ), @@ -196,7 +196,7 @@ ), 'changed' => array ( - 'DOMDocument::createComment' => + 'domdocument::createcomment' => array ( 'old' => array ( @@ -209,7 +209,7 @@ 'data' => 'string', ), ), - 'DOMDocument::createDocumentFragment' => + 'domdocument::createdocumentfragment' => array ( 'old' => array ( @@ -220,7 +220,7 @@ 0 => 'DOMDocumentFragment', ), ), - 'DOMDocument::createTextNode' => + 'domdocument::createtextnode' => array ( 'old' => array ( @@ -233,7 +233,7 @@ 'data' => 'string', ), ), - 'Phar::buildFromDirectory' => + 'phar::buildfromdirectory' => array ( 'old' => array ( @@ -248,7 +248,7 @@ 'pattern=' => 'string', ), ), - 'Phar::buildFromIterator' => + 'phar::buildfromiterator' => array ( 'old' => array ( @@ -263,7 +263,7 @@ 'baseDirectory=' => 'null|string', ), ), - 'PharData::buildFromDirectory' => + 'phardata::buildfromdirectory' => array ( 'old' => array ( @@ -278,7 +278,7 @@ 'pattern=' => 'string', ), ), - 'PharData::buildFromIterator' => + 'phardata::buildfromiterator' => array ( 'old' => array ( @@ -293,7 +293,7 @@ 'baseDirectory=' => 'null|string', ), ), - 'SplFileObject::fputcsv' => + 'splfileobject::fputcsv' => array ( 'old' => array ( @@ -313,7 +313,7 @@ 'eol=' => 'string', ), ), - 'SplTempFileObject::fputcsv' => + 'spltempfileobject::fputcsv' => array ( 'old' => array ( @@ -2080,7 +2080,7 @@ 'value' => 'null|scalar', ), ), - 'IntlDateFormatter::__construct' => + 'intldateformatter::__construct' => array ( 'old' => array ( @@ -2103,7 +2103,7 @@ 'pattern=' => 'null|string', ), ), - 'IntlDateFormatter::create' => + 'intldateformatter::create' => array ( 'old' => array ( @@ -5222,7 +5222,7 @@ ), 'removed' => array ( - 'ReflectionMethod::isStatic' => + 'reflectionmethod::isstatic' => array ( 0 => 'bool', ), diff --git a/dictionaries/CallMap_82_delta.php b/dictionaries/CallMap_82_delta.php index e7a62985547..a905374091d 100644 --- a/dictionaries/CallMap_82_delta.php +++ b/dictionaries/CallMap_82_delta.php @@ -52,27 +52,27 @@ 'counter' => 'int', 'key' => 'non-empty-string', ), - 'ZipArchive::clearError' => + 'ziparchive::clearerror' => array ( 0 => 'void', ), - 'ZipArchive::getStreamIndex' => + 'ziparchive::getstreamindex' => array ( 0 => 'false|resource', 'index' => 'int', 'flags=' => 'int', ), - 'ZipArchive::getStreamName' => + 'ziparchive::getstreamname' => array ( 0 => 'false|resource', 'name' => 'string', 'flags=' => 'int', ), - 'DateTimeInterface::__serialize' => + 'datetimeinterface::__serialize' => array ( 0 => 'array', ), - 'DateTimeInterface::__unserialize' => + 'datetimeinterface::__unserialize' => array ( 0 => 'void', 'data' => 'array', diff --git a/dictionaries/CallMap_83_delta.php b/dictionaries/CallMap_83_delta.php index a6992744c7a..7223ecbe9a0 100644 --- a/dictionaries/CallMap_83_delta.php +++ b/dictionaries/CallMap_83_delta.php @@ -282,7 +282,7 @@ 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', ), ), - 'IntlRuleBasedBreakIterator::setText' => + 'intlrulebasedbreakiterator::settext' => array ( 'old' => array ( @@ -295,7 +295,7 @@ 'text' => 'string', ), ), - 'IntlCodePointBreakIterator::setText' => + 'intlcodepointbreakiterator::settext' => array ( 'old' => array ( @@ -308,7 +308,7 @@ 'text' => 'string', ), ), - 'IntlDateFormatter::setTimeZone' => + 'intldateformatter::settimezone' => array ( 'old' => array ( @@ -321,7 +321,7 @@ 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', ), ), - 'IntlChar::enumCharNames' => + 'intlchar::enumcharnames' => array ( 'old' => array ( @@ -340,7 +340,7 @@ 'type=' => 'int', ), ), - 'IntlBreakIterator::setText' => + 'intlbreakiterator::settext' => array ( 'old' => array ( @@ -398,99 +398,99 @@ ), 'removed' => array ( - 'OutOfBoundsException::__clone' => + 'outofboundsexception::__clone' => array ( 0 => 'void', ), - 'ArgumentCountError::__clone' => + 'argumentcounterror::__clone' => array ( 0 => 'void', ), - 'ArithmeticError::__clone' => + 'arithmeticerror::__clone' => array ( 0 => 'void', ), - 'BadFunctionCallException::__clone' => + 'badfunctioncallexception::__clone' => array ( 0 => 'void', ), - 'BadMethodCallException::__clone' => + 'badmethodcallexception::__clone' => array ( 0 => 'void', ), - 'ClosedGeneratorException::__clone' => + 'closedgeneratorexception::__clone' => array ( 0 => 'void', ), - 'DomainException::__clone' => + 'domainexception::__clone' => array ( 0 => 'void', ), - 'ErrorException::__clone' => + 'errorexception::__clone' => array ( 0 => 'void', ), - 'IntlException::__clone' => + 'intlexception::__clone' => array ( 0 => 'void', ), - 'InvalidArgumentException::__clone' => + 'invalidargumentexception::__clone' => array ( 0 => 'void', ), - 'JsonException::__clone' => + 'jsonexception::__clone' => array ( 0 => 'void', ), - 'LengthException::__clone' => + 'lengthexception::__clone' => array ( 0 => 'void', ), - 'LogicException::__clone' => + 'logicexception::__clone' => array ( 0 => 'void', ), - 'OutOfRangeException::__clone' => + 'outofrangeexception::__clone' => array ( 0 => 'void', ), - 'OverflowException::__clone' => + 'overflowexception::__clone' => array ( 0 => 'void', ), - 'ParseError::__clone' => + 'parseerror::__clone' => array ( 0 => 'void', ), - 'RangeException::__clone' => + 'rangeexception::__clone' => array ( 0 => 'void', ), - 'ReflectionNamedType::__clone' => + 'reflectionnamedtype::__clone' => array ( 0 => 'void', ), - 'ReflectionObject::__clone' => + 'reflectionobject::__clone' => array ( 0 => 'void', ), - 'RuntimeException::__clone' => + 'runtimeexception::__clone' => array ( 0 => 'void', ), - 'TypeError::__clone' => + 'typeerror::__clone' => array ( 0 => 'void', ), - 'UnderflowException::__clone' => + 'underflowexception::__clone' => array ( 0 => 'void', ), - 'UnexpectedValueException::__clone' => + 'unexpectedvalueexception::__clone' => array ( 0 => 'void', ), - 'IntlCodePointBreakIterator::__construct' => + 'intlcodepointbreakiterator::__construct' => array ( 0 => 'void', ), diff --git a/dictionaries/CallMap_84_delta.php b/dictionaries/CallMap_84_delta.php index 589602a072c..8bddc0af064 100644 --- a/dictionaries/CallMap_84_delta.php +++ b/dictionaries/CallMap_84_delta.php @@ -9,7 +9,7 @@ ), 'changed' => array ( - 'Collator::setStrength' => + 'collator::setstrength' => array ( 'old' => array ( @@ -83,7 +83,7 @@ 'flags=' => 'int|null', ), ), - 'DOMDocument::registerNodeClass' => + 'domdocument::registernodeclass' => array ( 'old' => array ( @@ -98,7 +98,7 @@ 'extendedClass' => 'null|string', ), ), - 'DOMImplementation::createDocument' => + 'domimplementation::createdocument' => array ( 'old' => array ( @@ -203,7 +203,7 @@ 'month' => 'int', ), ), - 'IntlCalendar::clear' => + 'intlcalendar::clear' => array ( 'old' => array ( @@ -216,7 +216,7 @@ 'field=' => 'int|null', ), ), - 'IntlCalendar::set' => + 'intlcalendar::set' => array ( 'old' => array ( @@ -231,7 +231,7 @@ 'value' => 'int', ), ), - 'IntlCalendar::setFirstDayOfWeek' => + 'intlcalendar::setfirstdayofweek' => array ( 'old' => array ( @@ -244,7 +244,7 @@ 'dayOfWeek' => 'int', ), ), - 'IntlCalendar::setMinimalDaysInFirstWeek' => + 'intlcalendar::setminimaldaysinfirstweek' => array ( 'old' => array ( @@ -257,7 +257,7 @@ 'days' => 'int', ), ), - 'IntlGregorianCalendar::clear' => + 'intlgregoriancalendar::clear' => array ( 'old' => array ( @@ -270,7 +270,7 @@ 'field=' => 'int|null', ), ), - 'IntlGregorianCalendar::set' => + 'intlgregoriancalendar::set' => array ( 'old' => array ( @@ -285,7 +285,7 @@ 'value' => 'int', ), ), - 'IntlGregorianCalendar::setFirstDayOfWeek' => + 'intlgregoriancalendar::setfirstdayofweek' => array ( 'old' => array ( @@ -298,7 +298,7 @@ 'dayOfWeek' => 'int', ), ), - 'IntlGregorianCalendar::setMinimalDaysInFirstWeek' => + 'intlgregoriancalendar::setminimaldaysinfirstweek' => array ( 'old' => array ( @@ -311,7 +311,7 @@ 'days' => 'int', ), ), - 'Locale::setDefault' => + 'locale::setdefault' => array ( 'old' => array ( @@ -692,7 +692,7 @@ 'types=' => 'null|string', ), ), - 'PDOStatement::setFetchMode' => + 'pdostatement::setfetchmode' => array ( 'old' => array ( @@ -733,7 +733,7 @@ 'connection=' => 'PgSql\\Connection|null', ), ), - 'Phar::copy' => + 'phar::copy' => array ( 'old' => array ( @@ -748,7 +748,7 @@ 'to' => 'string', ), ), - 'Phar::decompressFiles' => + 'phar::decompressfiles' => array ( 'old' => array ( @@ -759,7 +759,7 @@ 0 => 'true', ), ), - 'Phar::delete' => + 'phar::delete' => array ( 'old' => array ( @@ -772,7 +772,7 @@ 'localName' => 'string', ), ), - 'Phar::delMetadata' => + 'phar::delmetadata' => array ( 'old' => array ( @@ -783,7 +783,7 @@ 0 => 'true', ), ), - 'Phar::setAlias' => + 'phar::setalias' => array ( 'old' => array ( @@ -796,7 +796,7 @@ 'alias' => 'string', ), ), - 'Phar::setDefaultStub' => + 'phar::setdefaultstub' => array ( 'old' => array ( @@ -811,7 +811,7 @@ 'webIndex=' => 'null|string', ), ), - 'Phar::setStub' => + 'phar::setstub' => array ( 'old' => array ( @@ -826,7 +826,7 @@ 'length=' => 'int', ), ), - 'Phar::unlinkArchive' => + 'phar::unlinkarchive' => array ( 'old' => array ( @@ -839,7 +839,7 @@ 'filename' => 'string', ), ), - 'PharData::copy' => + 'phardata::copy' => array ( 'old' => array ( @@ -854,7 +854,7 @@ 'to' => 'string', ), ), - 'PharData::decompressFiles' => + 'phardata::decompressfiles' => array ( 'old' => array ( @@ -865,7 +865,7 @@ 0 => 'true', ), ), - 'PharData::delete' => + 'phardata::delete' => array ( 'old' => array ( @@ -878,7 +878,7 @@ 'localName' => 'string', ), ), - 'PharData::delMetadata' => + 'phardata::delmetadata' => array ( 'old' => array ( @@ -889,7 +889,7 @@ 0 => 'true', ), ), - 'PharData::setStub' => + 'phardata::setstub' => array ( 'old' => array ( @@ -904,7 +904,7 @@ 'length=' => 'int', ), ), - 'PharFileInfo::compress' => + 'pharfileinfo::compress' => array ( 'old' => array ( @@ -917,7 +917,7 @@ 'compression' => 'int', ), ), - 'PharFileInfo::decompress' => + 'pharfileinfo::decompress' => array ( 'old' => array ( @@ -928,7 +928,7 @@ 0 => 'true', ), ), - 'PharFileInfo::delMetadata' => + 'pharfileinfo::delmetadata' => array ( 'old' => array ( @@ -939,7 +939,7 @@ 0 => 'true', ), ), - 'ResourceBundle::get' => + 'resourcebundle::get' => array ( 'old' => array ( @@ -971,7 +971,7 @@ 'fallback=' => 'bool', ), ), - 'SoapClient::__setCookie' => + 'soapclient::__setcookie' => array ( 'old' => array ( @@ -986,7 +986,7 @@ 'value=' => 'null|string', ), ), - 'SplFixedArray::setSize' => + 'splfixedarray::setsize' => array ( 'old' => array ( @@ -999,7 +999,7 @@ 'size' => 'int', ), ), - 'SplHeap::insert' => + 'splheap::insert' => array ( 'old' => array ( @@ -1012,7 +1012,7 @@ 'value' => 'mixed', ), ), - 'SplPriorityQueue::insert' => + 'splpriorityqueue::insert' => array ( 'old' => array ( @@ -1027,7 +1027,7 @@ 'priority' => 'mixed', ), ), - 'SplPriorityQueue::recoverFromCorruption' => + 'splpriorityqueue::recoverfromcorruption' => array ( 'old' => array ( @@ -1038,7 +1038,7 @@ 0 => 'true', ), ), - 'SQLite3Result::finalize' => + 'sqlite3result::finalize' => array ( 'old' => array ( @@ -1049,7 +1049,7 @@ 0 => 'true', ), ), - 'SQLite3Stmt::close' => + 'sqlite3stmt::close' => array ( 'old' => array ( @@ -1152,7 +1152,7 @@ 'error_level=' => 'int', ), ), - 'XMLReader::close' => + 'xmlreader::close' => array ( 'old' => array ( @@ -1163,7 +1163,7 @@ 0 => 'true', ), ), - 'XSLTProcessor::setProfiling' => + 'xsltprocessor::setprofiling' => array ( 'old' => array ( @@ -1674,7 +1674,7 @@ 'flags=' => 'int', ), ), - 'SoapClient::__construct' => + 'soapclient::__construct' => array ( 'old' => array ( @@ -1751,7 +1751,7 @@ 'handler' => 'callable|null', ), ), - 'AppendIterator::getInnerIterator' => + 'appenditerator::getinneriterator' => array ( 'old' => array ( @@ -1762,7 +1762,7 @@ 0 => 'Iterator|null', ), ), - 'AppendIterator::getIteratorIndex' => + 'appenditerator::getiteratorindex' => array ( 'old' => array ( @@ -1773,7 +1773,7 @@ 0 => 'int|null', ), ), - 'CachingIterator::__construct' => + 'cachingiterator::__construct' => array ( 'old' => array ( @@ -1788,7 +1788,7 @@ 'flags=' => 'int', ), ), - 'CachingIterator::getInnerIterator' => + 'cachingiterator::getinneriterator' => array ( 'old' => array ( @@ -1799,7 +1799,7 @@ 0 => 'Iterator|null', ), ), - 'CallbackFilterIterator::getInnerIterator' => + 'callbackfilteriterator::getinneriterator' => array ( 'old' => array ( @@ -1823,7 +1823,7 @@ 'handle' => 'CurlHandle', ), ), - 'FilterIterator::getInnerIterator' => + 'filteriterator::getinneriterator' => array ( 'old' => array ( @@ -1936,7 +1936,7 @@ 'array' => 'array|null', ), ), - 'InfiniteIterator::getInnerIterator' => + 'infiniteiterator::getinneriterator' => array ( 'old' => array ( @@ -1947,7 +1947,7 @@ 0 => 'Iterator|null', ), ), - 'IteratorIterator::getInnerIterator' => + 'iteratoriterator::getinneriterator' => array ( 'old' => array ( @@ -1973,7 +1973,7 @@ 'array' => 'array|null', ), ), - 'LimitIterator::getInnerIterator' => + 'limititerator::getinneriterator' => array ( 'old' => array ( @@ -1984,7 +1984,7 @@ 0 => 'Iterator|null', ), ), - 'Locale::getAllVariants' => + 'locale::getallvariants' => array ( 'old' => array ( @@ -1997,7 +1997,7 @@ 'locale' => 'string', ), ), - 'Locale::getKeywords' => + 'locale::getkeywords' => array ( 'old' => array ( @@ -2010,7 +2010,7 @@ 'locale' => 'string', ), ), - 'Locale::getPrimaryLanguage' => + 'locale::getprimarylanguage' => array ( 'old' => array ( @@ -2023,7 +2023,7 @@ 'locale' => 'string', ), ), - 'Locale::getRegion' => + 'locale::getregion' => array ( 'old' => array ( @@ -2036,7 +2036,7 @@ 'locale' => 'string', ), ), - 'Locale::getScript' => + 'locale::getscript' => array ( 'old' => array ( @@ -2049,7 +2049,7 @@ 'locale' => 'string', ), ), - 'Locale::parseLocale' => + 'locale::parselocale' => array ( 'old' => array ( @@ -2077,7 +2077,7 @@ 'encoding=' => 'null|string', ), ), - 'MessageFormatter::create' => + 'messageformatter::create' => array ( 'old' => array ( @@ -2103,7 +2103,7 @@ 0 => 'null|object', ), ), - 'NoRewindIterator::getInnerIterator' => + 'norewinditerator::getinneriterator' => array ( 'old' => array ( @@ -2114,7 +2114,7 @@ 0 => 'Iterator|null', ), ), - 'NumberFormatter::format' => + 'numberformatter::format' => array ( 'old' => array ( @@ -2176,7 +2176,7 @@ 'row=' => 'int|null', ), ), - 'OuterIterator::getInnerIterator' => + 'outeriterator::getinneriterator' => array ( 'old' => array ( @@ -2187,7 +2187,7 @@ 0 => 'Iterator|null', ), ), - 'RecursiveCachingIterator::getInnerIterator' => + 'recursivecachingiterator::getinneriterator' => array ( 'old' => array ( @@ -2198,7 +2198,7 @@ 0 => 'Iterator|null', ), ), - 'RecursiveCallbackFilterIterator::getInnerIterator' => + 'recursivecallbackfilteriterator::getinneriterator' => array ( 'old' => array ( @@ -2209,7 +2209,7 @@ 0 => 'Iterator|null', ), ), - 'RecursiveFilterIterator::getInnerIterator' => + 'recursivefilteriterator::getinneriterator' => array ( 'old' => array ( @@ -2220,7 +2220,7 @@ 0 => 'Iterator|null', ), ), - 'RecursiveRegexIterator::getInnerIterator' => + 'recursiveregexiterator::getinneriterator' => array ( 'old' => array ( @@ -2231,7 +2231,7 @@ 0 => 'Iterator|null', ), ), - 'ReflectionClass::newInstanceArgs' => + 'reflectionclass::newinstanceargs' => array ( 'old' => array ( @@ -2244,7 +2244,7 @@ 'args=' => 'array|string, mixed>', ), ), - 'ReflectionFunction::getClosureScopeClass' => + 'reflectionfunction::getclosurescopeclass' => array ( 'old' => array ( @@ -2255,7 +2255,7 @@ 0 => 'ReflectionClass|null', ), ), - 'ReflectionFunction::getClosureThis' => + 'reflectionfunction::getclosurethis' => array ( 'old' => array ( @@ -2266,7 +2266,7 @@ 0 => 'null|object', ), ), - 'ReflectionMethod::getClosureScopeClass' => + 'reflectionmethod::getclosurescopeclass' => array ( 'old' => array ( @@ -2277,7 +2277,7 @@ 0 => 'ReflectionClass|null', ), ), - 'ReflectionMethod::getClosureThis' => + 'reflectionmethod::getclosurethis' => array ( 'old' => array ( @@ -2288,7 +2288,7 @@ 0 => 'null|object', ), ), - 'ReflectionObject::newInstanceArgs' => + 'reflectionobject::newinstanceargs' => array ( 'old' => array ( @@ -2301,7 +2301,7 @@ 'args=' => 'array|string, mixed>', ), ), - 'RegexIterator::getInnerIterator' => + 'regexiterator::getinneriterator' => array ( 'old' => array ( @@ -2341,7 +2341,7 @@ 'update_timestamp=' => 'callable(string):bool|null', ), ), - 'SoapClient::__setLocation' => + 'soapclient::__setlocation' => array ( 'old' => array ( @@ -2354,7 +2354,7 @@ 'new_location=' => 'string', ), ), - 'SoapClient::__soapCall' => + 'soapclient::__soapcall' => array ( 'old' => array ( @@ -2375,7 +2375,7 @@ '&w_output_headers=' => 'array', ), ), - 'SoapHeader::__construct' => + 'soapheader::__construct' => array ( 'old' => array ( @@ -2396,7 +2396,7 @@ 'actor=' => 'null|string', ), ), - 'SoapVar::__construct' => + 'soapvar::__construct' => array ( 'old' => array ( @@ -2419,7 +2419,7 @@ 'node_namespace=' => 'null|string', ), ), - 'SplFileObject::fscanf' => + 'splfileobject::fscanf' => array ( 'old' => array ( @@ -2434,7 +2434,7 @@ '&...w_vars=' => 'float|int|string', ), ), - 'SplTempFileObject::fscanf' => + 'spltempfileobject::fscanf' => array ( 'old' => array ( @@ -2573,7 +2573,7 @@ 'handler' => 'callable|null', ), ), - 'XSLTProcessor::setParameter' => + 'xsltprocessor::setparameter' => array ( 'old' => array ( @@ -2590,7 +2590,7 @@ 'value' => 'null|string', ), ), - 'XSLTProcessor::transformToXML' => + 'xsltprocessor::transformtoxml' => array ( 'old' => array ( diff --git a/dictionaries/CallMap_historical.php b/dictionaries/CallMap_historical.php index 9914d7cef7a..8345b71de85 100644 --- a/dictionaries/CallMap_historical.php +++ b/dictionaries/CallMap_historical.php @@ -1,7 +1,7 @@ + 'amqpbasicproperties::__construct' => array ( 0 => 'void', 'content_type=' => 'string', @@ -19,479 +19,479 @@ 'app_id=' => 'string', 'cluster_id=' => 'string', ), - 'AMQPBasicProperties::getAppId' => + 'amqpbasicproperties::getappid' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getClusterId' => + 'amqpbasicproperties::getclusterid' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getContentEncoding' => + 'amqpbasicproperties::getcontentencoding' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getContentType' => + 'amqpbasicproperties::getcontenttype' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getCorrelationId' => + 'amqpbasicproperties::getcorrelationid' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getDeliveryMode' => + 'amqpbasicproperties::getdeliverymode' => array ( 0 => 'int', ), - 'AMQPBasicProperties::getExpiration' => + 'amqpbasicproperties::getexpiration' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getHeaders' => + 'amqpbasicproperties::getheaders' => array ( 0 => 'array', ), - 'AMQPBasicProperties::getMessageId' => + 'amqpbasicproperties::getmessageid' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getPriority' => + 'amqpbasicproperties::getpriority' => array ( 0 => 'int', ), - 'AMQPBasicProperties::getReplyTo' => + 'amqpbasicproperties::getreplyto' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getTimestamp' => + 'amqpbasicproperties::gettimestamp' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getType' => + 'amqpbasicproperties::gettype' => array ( 0 => 'string', ), - 'AMQPBasicProperties::getUserId' => + 'amqpbasicproperties::getuserid' => array ( 0 => 'string', ), - 'AMQPChannel::__construct' => + 'amqpchannel::__construct' => array ( 0 => 'void', 'amqp_connection' => 'AMQPConnection', ), - 'AMQPChannel::basicRecover' => + 'amqpchannel::basicrecover' => array ( 0 => 'mixed', 'requeue=' => 'bool', ), - 'AMQPChannel::close' => + 'amqpchannel::close' => array ( 0 => 'mixed', ), - 'AMQPChannel::commitTransaction' => + 'amqpchannel::committransaction' => array ( 0 => 'bool', ), - 'AMQPChannel::confirmSelect' => + 'amqpchannel::confirmselect' => array ( 0 => 'mixed', ), - 'AMQPChannel::getChannelId' => + 'amqpchannel::getchannelid' => array ( 0 => 'int', ), - 'AMQPChannel::getConnection' => + 'amqpchannel::getconnection' => array ( 0 => 'AMQPConnection', ), - 'AMQPChannel::getConsumers' => + 'amqpchannel::getconsumers' => array ( 0 => 'array', ), - 'AMQPChannel::getPrefetchCount' => + 'amqpchannel::getprefetchcount' => array ( 0 => 'int', ), - 'AMQPChannel::getPrefetchSize' => + 'amqpchannel::getprefetchsize' => array ( 0 => 'int', ), - 'AMQPChannel::isConnected' => + 'amqpchannel::isconnected' => array ( 0 => 'bool', ), - 'AMQPChannel::qos' => + 'amqpchannel::qos' => array ( 0 => 'bool', 'size' => 'int', 'count' => 'int', ), - 'AMQPChannel::rollbackTransaction' => + 'amqpchannel::rollbacktransaction' => array ( 0 => 'bool', ), - 'AMQPChannel::setConfirmCallback' => + 'amqpchannel::setconfirmcallback' => array ( 0 => 'mixed', 'ack_callback=' => 'callable|null', 'nack_callback=' => 'callable|null', ), - 'AMQPChannel::setPrefetchCount' => + 'amqpchannel::setprefetchcount' => array ( 0 => 'bool', 'count' => 'int', ), - 'AMQPChannel::setPrefetchSize' => + 'amqpchannel::setprefetchsize' => array ( 0 => 'bool', 'size' => 'int', ), - 'AMQPChannel::setReturnCallback' => + 'amqpchannel::setreturncallback' => array ( 0 => 'mixed', 'return_callback=' => 'callable|null', ), - 'AMQPChannel::startTransaction' => + 'amqpchannel::starttransaction' => array ( 0 => 'bool', ), - 'AMQPChannel::waitForBasicReturn' => + 'amqpchannel::waitforbasicreturn' => array ( 0 => 'mixed', 'timeout=' => 'float', ), - 'AMQPChannel::waitForConfirm' => + 'amqpchannel::waitforconfirm' => array ( 0 => 'mixed', 'timeout=' => 'float', ), - 'AMQPConnection::__construct' => + 'amqpconnection::__construct' => array ( 0 => 'void', 'credentials=' => 'array', ), - 'AMQPConnection::connect' => + 'amqpconnection::connect' => array ( 0 => 'bool', ), - 'AMQPConnection::disconnect' => + 'amqpconnection::disconnect' => array ( 0 => 'bool', ), - 'AMQPConnection::getCACert' => + 'amqpconnection::getcacert' => array ( 0 => 'string', ), - 'AMQPConnection::getCert' => + 'amqpconnection::getcert' => array ( 0 => 'string', ), - 'AMQPConnection::getHeartbeatInterval' => + 'amqpconnection::getheartbeatinterval' => array ( 0 => 'int', ), - 'AMQPConnection::getHost' => + 'amqpconnection::gethost' => array ( 0 => 'string', ), - 'AMQPConnection::getKey' => + 'amqpconnection::getkey' => array ( 0 => 'string', ), - 'AMQPConnection::getLogin' => + 'amqpconnection::getlogin' => array ( 0 => 'string', ), - 'AMQPConnection::getMaxChannels' => + 'amqpconnection::getmaxchannels' => array ( 0 => 'int|null', ), - 'AMQPConnection::getMaxFrameSize' => + 'amqpconnection::getmaxframesize' => array ( 0 => 'int', ), - 'AMQPConnection::getPassword' => + 'amqpconnection::getpassword' => array ( 0 => 'string', ), - 'AMQPConnection::getPort' => + 'amqpconnection::getport' => array ( 0 => 'int', ), - 'AMQPConnection::getReadTimeout' => + 'amqpconnection::getreadtimeout' => array ( 0 => 'float', ), - 'AMQPConnection::getTimeout' => + 'amqpconnection::gettimeout' => array ( 0 => 'float', ), - 'AMQPConnection::getUsedChannels' => + 'amqpconnection::getusedchannels' => array ( 0 => 'int', ), - 'AMQPConnection::getVerify' => + 'amqpconnection::getverify' => array ( 0 => 'bool', ), - 'AMQPConnection::getVhost' => + 'amqpconnection::getvhost' => array ( 0 => 'string', ), - 'AMQPConnection::getWriteTimeout' => + 'amqpconnection::getwritetimeout' => array ( 0 => 'float', ), - 'AMQPConnection::isConnected' => + 'amqpconnection::isconnected' => array ( 0 => 'bool', ), - 'AMQPConnection::isPersistent' => + 'amqpconnection::ispersistent' => array ( 0 => 'bool|null', ), - 'AMQPConnection::pconnect' => + 'amqpconnection::pconnect' => array ( 0 => 'bool', ), - 'AMQPConnection::pdisconnect' => + 'amqpconnection::pdisconnect' => array ( 0 => 'bool', ), - 'AMQPConnection::preconnect' => + 'amqpconnection::preconnect' => array ( 0 => 'bool', ), - 'AMQPConnection::reconnect' => + 'amqpconnection::reconnect' => array ( 0 => 'bool', ), - 'AMQPConnection::setCACert' => + 'amqpconnection::setcacert' => array ( 0 => 'mixed', 'cacert' => 'string', ), - 'AMQPConnection::setCert' => + 'amqpconnection::setcert' => array ( 0 => 'mixed', 'cert' => 'string', ), - 'AMQPConnection::setHost' => + 'amqpconnection::sethost' => array ( 0 => 'bool', 'host' => 'string', ), - 'AMQPConnection::setKey' => + 'amqpconnection::setkey' => array ( 0 => 'mixed', 'key' => 'string', ), - 'AMQPConnection::setLogin' => + 'amqpconnection::setlogin' => array ( 0 => 'bool', 'login' => 'string', ), - 'AMQPConnection::setPassword' => + 'amqpconnection::setpassword' => array ( 0 => 'bool', 'password' => 'string', ), - 'AMQPConnection::setPort' => + 'amqpconnection::setport' => array ( 0 => 'bool', 'port' => 'int', ), - 'AMQPConnection::setReadTimeout' => + 'amqpconnection::setreadtimeout' => array ( 0 => 'bool', 'timeout' => 'int', ), - 'AMQPConnection::setTimeout' => + 'amqpconnection::settimeout' => array ( 0 => 'bool', 'timeout' => 'int', ), - 'AMQPConnection::setVerify' => + 'amqpconnection::setverify' => array ( 0 => 'mixed', 'verify' => 'bool', ), - 'AMQPConnection::setVhost' => + 'amqpconnection::setvhost' => array ( 0 => 'bool', 'vhost' => 'string', ), - 'AMQPConnection::setWriteTimeout' => + 'amqpconnection::setwritetimeout' => array ( 0 => 'bool', 'timeout' => 'int', ), - 'AMQPDecimal::__construct' => + 'amqpdecimal::__construct' => array ( 0 => 'void', 'exponent' => 'mixed', 'significand' => 'mixed', ), - 'AMQPDecimal::getExponent' => + 'amqpdecimal::getexponent' => array ( 0 => 'int', ), - 'AMQPDecimal::getSignificand' => + 'amqpdecimal::getsignificand' => array ( 0 => 'int', ), - 'AMQPEnvelope::__construct' => + 'amqpenvelope::__construct' => array ( 0 => 'void', ), - 'AMQPEnvelope::getAppId' => + 'amqpenvelope::getappid' => array ( 0 => 'string', ), - 'AMQPEnvelope::getBody' => + 'amqpenvelope::getbody' => array ( 0 => 'string', ), - 'AMQPEnvelope::getClusterId' => + 'amqpenvelope::getclusterid' => array ( 0 => 'string', ), - 'AMQPEnvelope::getConsumerTag' => + 'amqpenvelope::getconsumertag' => array ( 0 => 'string', ), - 'AMQPEnvelope::getContentEncoding' => + 'amqpenvelope::getcontentencoding' => array ( 0 => 'string', ), - 'AMQPEnvelope::getContentType' => + 'amqpenvelope::getcontenttype' => array ( 0 => 'string', ), - 'AMQPEnvelope::getCorrelationId' => + 'amqpenvelope::getcorrelationid' => array ( 0 => 'string', ), - 'AMQPEnvelope::getDeliveryMode' => + 'amqpenvelope::getdeliverymode' => array ( 0 => 'int', ), - 'AMQPEnvelope::getDeliveryTag' => + 'amqpenvelope::getdeliverytag' => array ( 0 => 'string', ), - 'AMQPEnvelope::getExchangeName' => + 'amqpenvelope::getexchangename' => array ( 0 => 'string', ), - 'AMQPEnvelope::getExpiration' => + 'amqpenvelope::getexpiration' => array ( 0 => 'string', ), - 'AMQPEnvelope::getHeader' => + 'amqpenvelope::getheader' => array ( 0 => 'false|string', 'header_key' => 'string', ), - 'AMQPEnvelope::getHeaders' => + 'amqpenvelope::getheaders' => array ( 0 => 'array', ), - 'AMQPEnvelope::getMessageId' => + 'amqpenvelope::getmessageid' => array ( 0 => 'string', ), - 'AMQPEnvelope::getPriority' => + 'amqpenvelope::getpriority' => array ( 0 => 'int', ), - 'AMQPEnvelope::getReplyTo' => + 'amqpenvelope::getreplyto' => array ( 0 => 'string', ), - 'AMQPEnvelope::getRoutingKey' => + 'amqpenvelope::getroutingkey' => array ( 0 => 'string', ), - 'AMQPEnvelope::getTimeStamp' => + 'amqpenvelope::gettimestamp' => array ( 0 => 'string', ), - 'AMQPEnvelope::getType' => + 'amqpenvelope::gettype' => array ( 0 => 'string', ), - 'AMQPEnvelope::getUserId' => + 'amqpenvelope::getuserid' => array ( 0 => 'string', ), - 'AMQPEnvelope::hasHeader' => + 'amqpenvelope::hasheader' => array ( 0 => 'bool', 'header_key' => 'string', ), - 'AMQPEnvelope::isRedelivery' => + 'amqpenvelope::isredelivery' => array ( 0 => 'bool', ), - 'AMQPExchange::__construct' => + 'amqpexchange::__construct' => array ( 0 => 'void', 'amqp_channel' => 'AMQPChannel', ), - 'AMQPExchange::bind' => + 'amqpexchange::bind' => array ( 0 => 'bool', 'exchange_name' => 'string', 'routing_key=' => 'string', 'arguments=' => 'array', ), - 'AMQPExchange::declareExchange' => + 'amqpexchange::declareexchange' => array ( 0 => 'bool', ), - 'AMQPExchange::delete' => + 'amqpexchange::delete' => array ( 0 => 'bool', 'exchangeName=' => 'string', 'flags=' => 'int', ), - 'AMQPExchange::getArgument' => + 'amqpexchange::getargument' => array ( 0 => 'false|int|string', 'key' => 'string', ), - 'AMQPExchange::getArguments' => + 'amqpexchange::getarguments' => array ( 0 => 'array', ), - 'AMQPExchange::getChannel' => + 'amqpexchange::getchannel' => array ( 0 => 'AMQPChannel', ), - 'AMQPExchange::getConnection' => + 'amqpexchange::getconnection' => array ( 0 => 'AMQPConnection', ), - 'AMQPExchange::getFlags' => + 'amqpexchange::getflags' => array ( 0 => 'int', ), - 'AMQPExchange::getName' => + 'amqpexchange::getname' => array ( 0 => 'string', ), - 'AMQPExchange::getType' => + 'amqpexchange::gettype' => array ( 0 => 'string', ), - 'AMQPExchange::hasArgument' => + 'amqpexchange::hasargument' => array ( 0 => 'bool', 'key' => 'string', ), - 'AMQPExchange::publish' => + 'amqpexchange::publish' => array ( 0 => 'bool', 'message' => 'string', @@ -499,175 +499,175 @@ 'flags=' => 'int', 'attributes=' => 'array', ), - 'AMQPExchange::setArgument' => + 'amqpexchange::setargument' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'int|string', ), - 'AMQPExchange::setArguments' => + 'amqpexchange::setarguments' => array ( 0 => 'bool', 'arguments' => 'array', ), - 'AMQPExchange::setFlags' => + 'amqpexchange::setflags' => array ( 0 => 'bool', 'flags' => 'int', ), - 'AMQPExchange::setName' => + 'amqpexchange::setname' => array ( 0 => 'bool', 'exchange_name' => 'string', ), - 'AMQPExchange::setType' => + 'amqpexchange::settype' => array ( 0 => 'bool', 'exchange_type' => 'string', ), - 'AMQPExchange::unbind' => + 'amqpexchange::unbind' => array ( 0 => 'bool', 'exchange_name' => 'string', 'routing_key=' => 'string', 'arguments=' => 'array', ), - 'AMQPQueue::__construct' => + 'amqpqueue::__construct' => array ( 0 => 'void', 'amqp_channel' => 'AMQPChannel', ), - 'AMQPQueue::ack' => + 'amqpqueue::ack' => array ( 0 => 'bool', 'delivery_tag' => 'string', 'flags=' => 'int', ), - 'AMQPQueue::bind' => + 'amqpqueue::bind' => array ( 0 => 'bool', 'exchange_name' => 'string', 'routing_key=' => 'string', 'arguments=' => 'array', ), - 'AMQPQueue::cancel' => + 'amqpqueue::cancel' => array ( 0 => 'bool', 'consumer_tag=' => 'string', ), - 'AMQPQueue::consume' => + 'amqpqueue::consume' => array ( 0 => 'void', 'callback=' => 'callable|null', 'flags=' => 'int', 'consumerTag=' => 'string', ), - 'AMQPQueue::declareQueue' => + 'amqpqueue::declarequeue' => array ( 0 => 'int', ), - 'AMQPQueue::delete' => + 'amqpqueue::delete' => array ( 0 => 'int', 'flags=' => 'int', ), - 'AMQPQueue::get' => + 'amqpqueue::get' => array ( 0 => 'AMQPEnvelope|false', 'flags=' => 'int', ), - 'AMQPQueue::getArgument' => + 'amqpqueue::getargument' => array ( 0 => 'false|int|string', 'key' => 'string', ), - 'AMQPQueue::getArguments' => + 'amqpqueue::getarguments' => array ( 0 => 'array', ), - 'AMQPQueue::getChannel' => + 'amqpqueue::getchannel' => array ( 0 => 'AMQPChannel', ), - 'AMQPQueue::getConnection' => + 'amqpqueue::getconnection' => array ( 0 => 'AMQPConnection', ), - 'AMQPQueue::getConsumerTag' => + 'amqpqueue::getconsumertag' => array ( 0 => 'null|string', ), - 'AMQPQueue::getFlags' => + 'amqpqueue::getflags' => array ( 0 => 'int', ), - 'AMQPQueue::getName' => + 'amqpqueue::getname' => array ( 0 => 'string', ), - 'AMQPQueue::hasArgument' => + 'amqpqueue::hasargument' => array ( 0 => 'bool', 'key' => 'string', ), - 'AMQPQueue::nack' => + 'amqpqueue::nack' => array ( 0 => 'bool', 'delivery_tag' => 'string', 'flags=' => 'int', ), - 'AMQPQueue::purge' => + 'amqpqueue::purge' => array ( 0 => 'bool', ), - 'AMQPQueue::reject' => + 'amqpqueue::reject' => array ( 0 => 'bool', 'delivery_tag' => 'string', 'flags=' => 'int', ), - 'AMQPQueue::setArgument' => + 'amqpqueue::setargument' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'mixed', ), - 'AMQPQueue::setArguments' => + 'amqpqueue::setarguments' => array ( 0 => 'bool', 'arguments' => 'array', ), - 'AMQPQueue::setFlags' => + 'amqpqueue::setflags' => array ( 0 => 'bool', 'flags' => 'int', ), - 'AMQPQueue::setName' => + 'amqpqueue::setname' => array ( 0 => 'bool', 'queue_name' => 'string', ), - 'AMQPQueue::unbind' => + 'amqpqueue::unbind' => array ( 0 => 'bool', 'exchange_name' => 'string', 'routing_key=' => 'string', 'arguments=' => 'array', ), - 'AMQPTimestamp::__construct' => + 'amqptimestamp::__construct' => array ( 0 => 'void', 'timestamp' => 'string', ), - 'AMQPTimestamp::__toString' => + 'amqptimestamp::__tostring' => array ( 0 => 'string', ), - 'AMQPTimestamp::getTimestamp' => + 'amqptimestamp::gettimestamp' => array ( 0 => 'string', ), - 'APCIterator::__construct' => + 'apciterator::__construct' => array ( 0 => 'void', 'cache' => 'string', @@ -676,39 +676,39 @@ 'chunk_size=' => 'int', 'list=' => 'int', ), - 'APCIterator::current' => + 'apciterator::current' => array ( 0 => 'false|mixed', ), - 'APCIterator::getTotalCount' => + 'apciterator::gettotalcount' => array ( 0 => 'false|int', ), - 'APCIterator::getTotalHits' => + 'apciterator::gettotalhits' => array ( 0 => 'false|int', ), - 'APCIterator::getTotalSize' => + 'apciterator::gettotalsize' => array ( 0 => 'false|int', ), - 'APCIterator::key' => + 'apciterator::key' => array ( 0 => 'string', ), - 'APCIterator::next' => + 'apciterator::next' => array ( 0 => 'void', ), - 'APCIterator::rewind' => + 'apciterator::rewind' => array ( 0 => 'void', ), - 'APCIterator::valid' => + 'apciterator::valid' => array ( 0 => 'bool', ), - 'APCuIterator::__construct' => + 'apcuiterator::__construct' => array ( 0 => 'void', 'search=' => 'array|null|string', @@ -716,503 +716,503 @@ 'chunk_size=' => 'int', 'list=' => 'int', ), - 'APCuIterator::current' => + 'apcuiterator::current' => array ( 0 => 'mixed', ), - 'APCuIterator::getTotalCount' => + 'apcuiterator::gettotalcount' => array ( 0 => 'int', ), - 'APCuIterator::getTotalHits' => + 'apcuiterator::gettotalhits' => array ( 0 => 'int', ), - 'APCuIterator::getTotalSize' => + 'apcuiterator::gettotalsize' => array ( 0 => 'int', ), - 'APCuIterator::key' => + 'apcuiterator::key' => array ( 0 => 'string', ), - 'APCuIterator::next' => + 'apcuiterator::next' => array ( 0 => 'void', ), - 'APCuIterator::rewind' => + 'apcuiterator::rewind' => array ( 0 => 'void', ), - 'APCuIterator::valid' => + 'apcuiterator::valid' => array ( 0 => 'bool', ), - 'AppendIterator::__construct' => + 'appenditerator::__construct' => array ( 0 => 'void', ), - 'AppendIterator::append' => + 'appenditerator::append' => array ( 0 => 'void', 'iterator' => 'Iterator', ), - 'AppendIterator::current' => + 'appenditerator::current' => array ( 0 => 'mixed', ), - 'AppendIterator::getArrayIterator' => + 'appenditerator::getarrayiterator' => array ( 0 => 'ArrayIterator', ), - 'AppendIterator::getInnerIterator' => + 'appenditerator::getinneriterator' => array ( 0 => 'Iterator', ), - 'AppendIterator::getIteratorIndex' => + 'appenditerator::getiteratorindex' => array ( 0 => 'int', ), - 'AppendIterator::key' => + 'appenditerator::key' => array ( 0 => 'scalar', ), - 'AppendIterator::next' => + 'appenditerator::next' => array ( 0 => 'void', ), - 'AppendIterator::rewind' => + 'appenditerator::rewind' => array ( 0 => 'void', ), - 'AppendIterator::valid' => + 'appenditerator::valid' => array ( 0 => 'bool', ), - 'ArgumentCountError::__clone' => + 'argumentcounterror::__clone' => array ( 0 => 'void', ), - 'ArgumentCountError::__construct' => + 'argumentcounterror::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'ArgumentCountError::__toString' => + 'argumentcounterror::__tostring' => array ( 0 => 'string', ), - 'ArgumentCountError::__wakeup' => + 'argumentcounterror::__wakeup' => array ( 0 => 'void', ), - 'ArgumentCountError::getCode' => + 'argumentcounterror::getcode' => array ( 0 => 'int', ), - 'ArgumentCountError::getFile' => + 'argumentcounterror::getfile' => array ( 0 => 'string', ), - 'ArgumentCountError::getLine' => + 'argumentcounterror::getline' => array ( 0 => 'int', ), - 'ArgumentCountError::getMessage' => + 'argumentcounterror::getmessage' => array ( 0 => 'string', ), - 'ArgumentCountError::getPrevious' => + 'argumentcounterror::getprevious' => array ( 0 => 'Throwable|null', ), - 'ArgumentCountError::getTrace' => + 'argumentcounterror::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'ArgumentCountError::getTraceAsString' => + 'argumentcounterror::gettraceasstring' => array ( 0 => 'string', ), - 'ArithmeticError::__clone' => + 'arithmeticerror::__clone' => array ( 0 => 'void', ), - 'ArithmeticError::__construct' => + 'arithmeticerror::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'ArithmeticError::__toString' => + 'arithmeticerror::__tostring' => array ( 0 => 'string', ), - 'ArithmeticError::__wakeup' => + 'arithmeticerror::__wakeup' => array ( 0 => 'void', ), - 'ArithmeticError::getCode' => + 'arithmeticerror::getcode' => array ( 0 => 'int', ), - 'ArithmeticError::getFile' => + 'arithmeticerror::getfile' => array ( 0 => 'string', ), - 'ArithmeticError::getLine' => + 'arithmeticerror::getline' => array ( 0 => 'int', ), - 'ArithmeticError::getMessage' => + 'arithmeticerror::getmessage' => array ( 0 => 'string', ), - 'ArithmeticError::getPrevious' => + 'arithmeticerror::getprevious' => array ( 0 => 'Throwable|null', ), - 'ArithmeticError::getTrace' => + 'arithmeticerror::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'ArithmeticError::getTraceAsString' => + 'arithmeticerror::gettraceasstring' => array ( 0 => 'string', ), - 'ArrayAccess::offsetExists' => + 'arrayaccess::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'ArrayAccess::offsetGet' => + 'arrayaccess::offsetget' => array ( 0 => 'mixed', 'offset' => 'int|string', ), - 'ArrayAccess::offsetSet' => + 'arrayaccess::offsetset' => array ( 0 => 'void', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'ArrayAccess::offsetUnset' => + 'arrayaccess::offsetunset' => array ( 0 => 'void', 'offset' => 'int|string', ), - 'ArrayIterator::__construct' => + 'arrayiterator::__construct' => array ( 0 => 'void', 'array=' => 'array|object', 'flags=' => 'int', ), - 'ArrayIterator::append' => + 'arrayiterator::append' => array ( 0 => 'void', 'value' => 'mixed', ), - 'ArrayIterator::asort' => + 'arrayiterator::asort' => array ( 0 => 'true', 'flags=' => 'int', ), - 'ArrayIterator::count' => + 'arrayiterator::count' => array ( 0 => 'int', ), - 'ArrayIterator::current' => + 'arrayiterator::current' => array ( 0 => 'mixed', ), - 'ArrayIterator::getArrayCopy' => + 'arrayiterator::getarraycopy' => array ( 0 => 'array', ), - 'ArrayIterator::getFlags' => + 'arrayiterator::getflags' => array ( 0 => 'int', ), - 'ArrayIterator::key' => + 'arrayiterator::key' => array ( 0 => 'int|null|string', ), - 'ArrayIterator::ksort' => + 'arrayiterator::ksort' => array ( 0 => 'true', 'flags=' => 'int', ), - 'ArrayIterator::natcasesort' => + 'arrayiterator::natcasesort' => array ( 0 => 'true', ), - 'ArrayIterator::natsort' => + 'arrayiterator::natsort' => array ( 0 => 'true', ), - 'ArrayIterator::next' => + 'arrayiterator::next' => array ( 0 => 'void', ), - 'ArrayIterator::offsetExists' => + 'arrayiterator::offsetexists' => array ( 0 => 'bool', 'key' => 'int|string', ), - 'ArrayIterator::offsetGet' => + 'arrayiterator::offsetget' => array ( 0 => 'mixed', 'key' => 'int|string', ), - 'ArrayIterator::offsetSet' => + 'arrayiterator::offsetset' => array ( 0 => 'void', 'key' => 'int|null|string', 'value' => 'mixed', ), - 'ArrayIterator::offsetUnset' => + 'arrayiterator::offsetunset' => array ( 0 => 'void', 'key' => 'int|string', ), - 'ArrayIterator::rewind' => + 'arrayiterator::rewind' => array ( 0 => 'void', ), - 'ArrayIterator::seek' => + 'arrayiterator::seek' => array ( 0 => 'void', 'offset' => 'int', ), - 'ArrayIterator::serialize' => + 'arrayiterator::serialize' => array ( 0 => 'string', ), - 'ArrayIterator::setFlags' => + 'arrayiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'ArrayIterator::uasort' => + 'arrayiterator::uasort' => array ( 0 => 'true', 'callback' => 'callable(mixed, mixed):int', ), - 'ArrayIterator::uksort' => + 'arrayiterator::uksort' => array ( 0 => 'true', 'callback' => 'callable(mixed, mixed):int', ), - 'ArrayIterator::unserialize' => + 'arrayiterator::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'ArrayIterator::valid' => + 'arrayiterator::valid' => array ( 0 => 'bool', ), - 'ArrayObject::__construct' => + 'arrayobject::__construct' => array ( 0 => 'void', 'array=' => 'array|object', 'flags=' => 'int', 'iteratorClass=' => 'class-string', ), - 'ArrayObject::append' => + 'arrayobject::append' => array ( 0 => 'void', 'value' => 'mixed', ), - 'ArrayObject::asort' => + 'arrayobject::asort' => array ( 0 => 'true', 'flags=' => 'int', ), - 'ArrayObject::count' => + 'arrayobject::count' => array ( 0 => 'int', ), - 'ArrayObject::exchangeArray' => + 'arrayobject::exchangearray' => array ( 0 => 'array', 'array' => 'array|object', ), - 'ArrayObject::getArrayCopy' => + 'arrayobject::getarraycopy' => array ( 0 => 'array', ), - 'ArrayObject::getFlags' => + 'arrayobject::getflags' => array ( 0 => 'int', ), - 'ArrayObject::getIterator' => + 'arrayobject::getiterator' => array ( 0 => 'ArrayIterator', ), - 'ArrayObject::getIteratorClass' => + 'arrayobject::getiteratorclass' => array ( 0 => 'string', ), - 'ArrayObject::ksort' => + 'arrayobject::ksort' => array ( 0 => 'true', 'flags=' => 'int', ), - 'ArrayObject::natcasesort' => + 'arrayobject::natcasesort' => array ( 0 => 'true', ), - 'ArrayObject::natsort' => + 'arrayobject::natsort' => array ( 0 => 'true', ), - 'ArrayObject::offsetExists' => + 'arrayobject::offsetexists' => array ( 0 => 'bool', 'key' => 'int|string', ), - 'ArrayObject::offsetGet' => + 'arrayobject::offsetget' => array ( 0 => 'mixed|null', 'key' => 'int|string', ), - 'ArrayObject::offsetSet' => + 'arrayobject::offsetset' => array ( 0 => 'void', 'key' => 'int|null|string', 'value' => 'mixed', ), - 'ArrayObject::offsetUnset' => + 'arrayobject::offsetunset' => array ( 0 => 'void', 'key' => 'int|string', ), - 'ArrayObject::serialize' => + 'arrayobject::serialize' => array ( 0 => 'string', ), - 'ArrayObject::setFlags' => + 'arrayobject::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'ArrayObject::setIteratorClass' => + 'arrayobject::setiteratorclass' => array ( 0 => 'void', 'iteratorClass' => 'class-string', ), - 'ArrayObject::uasort' => + 'arrayobject::uasort' => array ( 0 => 'true', 'callback' => 'callable(mixed, mixed):int', ), - 'ArrayObject::uksort' => + 'arrayobject::uksort' => array ( 0 => 'true', 'callback' => 'callable(mixed, mixed):int', ), - 'ArrayObject::unserialize' => + 'arrayobject::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'BadFunctionCallException::__clone' => + 'badfunctioncallexception::__clone' => array ( 0 => 'void', ), - 'BadFunctionCallException::__construct' => + 'badfunctioncallexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'BadFunctionCallException::__toString' => + 'badfunctioncallexception::__tostring' => array ( 0 => 'string', ), - 'BadFunctionCallException::getCode' => + 'badfunctioncallexception::getcode' => array ( 0 => 'int', ), - 'BadFunctionCallException::getFile' => + 'badfunctioncallexception::getfile' => array ( 0 => 'string', ), - 'BadFunctionCallException::getLine' => + 'badfunctioncallexception::getline' => array ( 0 => 'int', ), - 'BadFunctionCallException::getMessage' => + 'badfunctioncallexception::getmessage' => array ( 0 => 'string', ), - 'BadFunctionCallException::getPrevious' => + 'badfunctioncallexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'BadFunctionCallException::getTrace' => + 'badfunctioncallexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'BadFunctionCallException::getTraceAsString' => + 'badfunctioncallexception::gettraceasstring' => array ( 0 => 'string', ), - 'BadMethodCallException::__clone' => + 'badmethodcallexception::__clone' => array ( 0 => 'void', ), - 'BadMethodCallException::__construct' => + 'badmethodcallexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'BadMethodCallException::__toString' => + 'badmethodcallexception::__tostring' => array ( 0 => 'string', ), - 'BadMethodCallException::getCode' => + 'badmethodcallexception::getcode' => array ( 0 => 'int', ), - 'BadMethodCallException::getFile' => + 'badmethodcallexception::getfile' => array ( 0 => 'string', ), - 'BadMethodCallException::getLine' => + 'badmethodcallexception::getline' => array ( 0 => 'int', ), - 'BadMethodCallException::getMessage' => + 'badmethodcallexception::getmessage' => array ( 0 => 'string', ), - 'BadMethodCallException::getPrevious' => + 'badmethodcallexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'BadMethodCallException::getTrace' => + 'badmethodcallexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'BadMethodCallException::getTraceAsString' => + 'badmethodcallexception::gettraceasstring' => array ( 0 => 'string', ), - 'COM::__call' => + 'com::__call' => array ( 0 => 'mixed', 'name' => 'mixed', 'args' => 'mixed', ), - 'COM::__construct' => + 'com::__construct' => array ( 0 => 'void', 'module_name' => 'string', @@ -1220,703 +1220,703 @@ 'codepage=' => 'int', 'typelib=' => 'string', ), - 'COM::__get' => + 'com::__get' => array ( 0 => 'mixed', 'name' => 'mixed', ), - 'COM::__set' => + 'com::__set' => array ( 0 => 'void', 'name' => 'mixed', 'value' => 'mixed', ), - 'COMPersistHelper::GetCurFile' => + 'compersisthelper::getcurfile' => array ( 0 => 'string', ), - 'COMPersistHelper::GetCurFileName' => + 'compersisthelper::getcurfilename' => array ( 0 => 'string', ), - 'COMPersistHelper::GetMaxStreamSize' => + 'compersisthelper::getmaxstreamsize' => array ( 0 => 'int', ), - 'COMPersistHelper::InitNew' => + 'compersisthelper::initnew' => array ( 0 => 'int', ), - 'COMPersistHelper::LoadFromFile' => + 'compersisthelper::loadfromfile' => array ( 0 => 'bool', 'filename' => 'string', 'flags' => 'int', ), - 'COMPersistHelper::LoadFromStream' => + 'compersisthelper::loadfromstream' => array ( 0 => 'mixed', 'stream' => 'mixed', ), - 'COMPersistHelper::SaveToFile' => + 'compersisthelper::savetofile' => array ( 0 => 'bool', 'filename' => 'string', 'remember' => 'bool', ), - 'COMPersistHelper::SaveToStream' => + 'compersisthelper::savetostream' => array ( 0 => 'int', 'stream' => 'mixed', ), - 'COMPersistHelper::__construct' => + 'compersisthelper::__construct' => array ( 0 => 'void', 'variant' => 'object', ), - 'CURLFile::__construct' => + 'curlfile::__construct' => array ( 0 => 'void', 'filename' => 'string', 'mime_type=' => 'string', 'posted_filename=' => 'string', ), - 'CURLFile::getFilename' => + 'curlfile::getfilename' => array ( 0 => 'string', ), - 'CURLFile::getMimeType' => + 'curlfile::getmimetype' => array ( 0 => 'string', ), - 'CURLFile::getPostFilename' => + 'curlfile::getpostfilename' => array ( 0 => 'string', ), - 'CURLFile::setMimeType' => + 'curlfile::setmimetype' => array ( 0 => 'void', 'mime_type' => 'string', ), - 'CURLFile::setPostFilename' => + 'curlfile::setpostfilename' => array ( 0 => 'void', 'posted_filename' => 'string', ), - 'CachingIterator::__construct' => + 'cachingiterator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', 'flags=' => 'mixed', ), - 'CachingIterator::__toString' => + 'cachingiterator::__tostring' => array ( 0 => 'string', ), - 'CachingIterator::count' => + 'cachingiterator::count' => array ( 0 => 'int', ), - 'CachingIterator::current' => + 'cachingiterator::current' => array ( 0 => 'mixed', ), - 'CachingIterator::getCache' => + 'cachingiterator::getcache' => array ( 0 => 'array', ), - 'CachingIterator::getFlags' => + 'cachingiterator::getflags' => array ( 0 => 'int', ), - 'CachingIterator::getInnerIterator' => + 'cachingiterator::getinneriterator' => array ( 0 => 'Iterator', ), - 'CachingIterator::hasNext' => + 'cachingiterator::hasnext' => array ( 0 => 'bool', ), - 'CachingIterator::key' => + 'cachingiterator::key' => array ( 0 => 'scalar', ), - 'CachingIterator::next' => + 'cachingiterator::next' => array ( 0 => 'void', ), - 'CachingIterator::offsetExists' => + 'cachingiterator::offsetexists' => array ( 0 => 'bool', 'key' => 'string', ), - 'CachingIterator::offsetGet' => + 'cachingiterator::offsetget' => array ( 0 => 'mixed', 'key' => 'string', ), - 'CachingIterator::offsetSet' => + 'cachingiterator::offsetset' => array ( 0 => 'void', 'key' => 'string', 'value' => 'mixed', ), - 'CachingIterator::offsetUnset' => + 'cachingiterator::offsetunset' => array ( 0 => 'void', 'key' => 'string', ), - 'CachingIterator::rewind' => + 'cachingiterator::rewind' => array ( 0 => 'void', ), - 'CachingIterator::setFlags' => + 'cachingiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'CachingIterator::valid' => + 'cachingiterator::valid' => array ( 0 => 'bool', ), - 'CallbackFilterIterator::__construct' => + 'callbackfilteriterator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', 'callback' => 'callable(mixed, mixed=, mixed=):bool', ), - 'CallbackFilterIterator::accept' => + 'callbackfilteriterator::accept' => array ( 0 => 'bool', ), - 'CallbackFilterIterator::current' => + 'callbackfilteriterator::current' => array ( 0 => 'mixed', ), - 'CallbackFilterIterator::getInnerIterator' => + 'callbackfilteriterator::getinneriterator' => array ( 0 => 'Iterator', ), - 'CallbackFilterIterator::key' => + 'callbackfilteriterator::key' => array ( 0 => 'mixed', ), - 'CallbackFilterIterator::next' => + 'callbackfilteriterator::next' => array ( 0 => 'void', ), - 'CallbackFilterIterator::rewind' => + 'callbackfilteriterator::rewind' => array ( 0 => 'void', ), - 'CallbackFilterIterator::valid' => + 'callbackfilteriterator::valid' => array ( 0 => 'bool', ), - 'ClosedGeneratorException::__clone' => + 'closedgeneratorexception::__clone' => array ( 0 => 'void', ), - 'ClosedGeneratorException::__toString' => + 'closedgeneratorexception::__tostring' => array ( 0 => 'string', ), - 'ClosedGeneratorException::getCode' => + 'closedgeneratorexception::getcode' => array ( 0 => 'int', ), - 'ClosedGeneratorException::getFile' => + 'closedgeneratorexception::getfile' => array ( 0 => 'string', ), - 'ClosedGeneratorException::getLine' => + 'closedgeneratorexception::getline' => array ( 0 => 'int', ), - 'ClosedGeneratorException::getMessage' => + 'closedgeneratorexception::getmessage' => array ( 0 => 'string', ), - 'ClosedGeneratorException::getPrevious' => + 'closedgeneratorexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'ClosedGeneratorException::getTrace' => + 'closedgeneratorexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'ClosedGeneratorException::getTraceAsString' => + 'closedgeneratorexception::gettraceasstring' => array ( 0 => 'string', ), - 'Closure::__construct' => + 'closure::__construct' => array ( 0 => 'void', ), - 'Closure::__invoke' => + 'closure::__invoke' => array ( 0 => 'mixed', '...args=' => 'mixed', ), - 'Closure::bind' => + 'closure::bind' => array ( 0 => 'Closure|null', 'closure' => 'Closure', 'newThis' => 'null|object', 'newScope=' => 'null|object|string', ), - 'Closure::bindTo' => + 'closure::bindto' => array ( 0 => 'Closure|null', 'newThis' => 'null|object', 'newScope=' => 'null|object|string', ), - 'Closure::call' => + 'closure::call' => array ( 0 => 'mixed', 'newThis' => 'object', '...args=' => 'mixed', ), - 'Collator::__construct' => + 'collator::__construct' => array ( 0 => 'void', 'locale' => 'string', ), - 'Collator::asort' => + 'collator::asort' => array ( 0 => 'bool', '&rw_array' => 'array', 'flags=' => 'int', ), - 'Collator::compare' => + 'collator::compare' => array ( 0 => 'false|int', 'string1' => 'string', 'string2' => 'string', ), - 'Collator::create' => + 'collator::create' => array ( 0 => 'Collator|null', 'locale' => 'string', ), - 'Collator::getAttribute' => + 'collator::getattribute' => array ( 0 => 'false|int', 'attribute' => 'int', ), - 'Collator::getErrorCode' => + 'collator::geterrorcode' => array ( 0 => 'int', ), - 'Collator::getErrorMessage' => + 'collator::geterrormessage' => array ( 0 => 'string', ), - 'Collator::getLocale' => + 'collator::getlocale' => array ( 0 => 'string', 'type' => 'int', ), - 'Collator::getSortKey' => + 'collator::getsortkey' => array ( 0 => 'false|string', 'string' => 'string', ), - 'Collator::getStrength' => + 'collator::getstrength' => array ( 0 => 'false|int', ), - 'Collator::setAttribute' => + 'collator::setattribute' => array ( 0 => 'bool', 'attribute' => 'int', 'value' => 'int', ), - 'Collator::setStrength' => + 'collator::setstrength' => array ( 0 => 'bool', 'strength' => 'int', ), - 'Collator::sort' => + 'collator::sort' => array ( 0 => 'bool', '&rw_array' => 'array', 'flags=' => 'int', ), - 'Collator::sortWithSortKeys' => + 'collator::sortwithsortkeys' => array ( 0 => 'bool', '&rw_array' => 'array', ), - 'Collectable::isGarbage' => + 'collectable::isgarbage' => array ( 0 => 'bool', ), - 'Collectable::setGarbage' => + 'collectable::setgarbage' => array ( 0 => 'void', ), - 'Cond::broadcast' => + 'cond::broadcast' => array ( 0 => 'bool', 'condition' => 'long', ), - 'Cond::create' => + 'cond::create' => array ( 0 => 'long', ), - 'Cond::destroy' => + 'cond::destroy' => array ( 0 => 'bool', 'condition' => 'long', ), - 'Cond::signal' => + 'cond::signal' => array ( 0 => 'bool', 'condition' => 'long', ), - 'Cond::wait' => + 'cond::wait' => array ( 0 => 'bool', 'condition' => 'long', 'mutex' => 'long', 'timeout=' => 'long', ), - 'Couchbase\\AnalyticsQuery::__construct' => + 'couchbase\\analyticsquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\AnalyticsQuery::fromString' => + 'couchbase\\analyticsquery::fromstring' => array ( 0 => 'Couchbase\\AnalyticsQuery', 'statement' => 'string', ), - 'Couchbase\\BooleanFieldSearchQuery::__construct' => + 'couchbase\\booleanfieldsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\BooleanFieldSearchQuery::boost' => + 'couchbase\\booleanfieldsearchquery::boost' => array ( 0 => 'Couchbase\\BooleanFieldSearchQuery', 'boost' => 'float', ), - 'Couchbase\\BooleanFieldSearchQuery::field' => + 'couchbase\\booleanfieldsearchquery::field' => array ( 0 => 'Couchbase\\BooleanFieldSearchQuery', 'field' => 'string', ), - 'Couchbase\\BooleanFieldSearchQuery::jsonSerialize' => + 'couchbase\\booleanfieldsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\BooleanSearchQuery::__construct' => + 'couchbase\\booleansearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\BooleanSearchQuery::boost' => + 'couchbase\\booleansearchquery::boost' => array ( 0 => 'Couchbase\\BooleanSearchQuery', 'boost' => 'float', ), - 'Couchbase\\BooleanSearchQuery::jsonSerialize' => + 'couchbase\\booleansearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\BooleanSearchQuery::must' => + 'couchbase\\booleansearchquery::must' => array ( 0 => 'Couchbase\\BooleanSearchQuery', '...queries=' => 'array', ), - 'Couchbase\\BooleanSearchQuery::mustNot' => + 'couchbase\\booleansearchquery::mustnot' => array ( 0 => 'Couchbase\\BooleanSearchQuery', '...queries=' => 'array', ), - 'Couchbase\\BooleanSearchQuery::should' => + 'couchbase\\booleansearchquery::should' => array ( 0 => 'Couchbase\\BooleanSearchQuery', '...queries=' => 'array', ), - 'Couchbase\\Bucket::__construct' => + 'couchbase\\bucket::__construct' => array ( 0 => 'void', ), - 'Couchbase\\Bucket::__get' => + 'couchbase\\bucket::__get' => array ( 0 => 'int', 'name' => 'string', ), - 'Couchbase\\Bucket::__set' => + 'couchbase\\bucket::__set' => array ( 0 => 'int', 'name' => 'string', 'value' => 'int', ), - 'Couchbase\\Bucket::append' => + 'couchbase\\bucket::append' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'value' => 'mixed', 'options=' => 'array', ), - 'Couchbase\\Bucket::counter' => + 'couchbase\\bucket::counter' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'delta=' => 'int', 'options=' => 'array', ), - 'Couchbase\\Bucket::decryptFields' => + 'couchbase\\bucket::decryptfields' => array ( 0 => 'array', 'document' => 'array', 'fieldOptions' => 'mixed', 'prefix=' => 'string', ), - 'Couchbase\\Bucket::diag' => + 'couchbase\\bucket::diag' => array ( 0 => 'array', 'reportId=' => 'string', ), - 'Couchbase\\Bucket::encryptFields' => + 'couchbase\\bucket::encryptfields' => array ( 0 => 'array', 'document' => 'array', 'fieldOptions' => 'mixed', 'prefix=' => 'string', ), - 'Couchbase\\Bucket::get' => + 'couchbase\\bucket::get' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'options=' => 'array', ), - 'Couchbase\\Bucket::getAndLock' => + 'couchbase\\bucket::getandlock' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'lockTime' => 'int', 'options=' => 'array', ), - 'Couchbase\\Bucket::getAndTouch' => + 'couchbase\\bucket::getandtouch' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'expiry' => 'int', 'options=' => 'array', ), - 'Couchbase\\Bucket::getFromReplica' => + 'couchbase\\bucket::getfromreplica' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'options=' => 'array', ), - 'Couchbase\\Bucket::getName' => + 'couchbase\\bucket::getname' => array ( 0 => 'string', ), - 'Couchbase\\Bucket::insert' => + 'couchbase\\bucket::insert' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'value' => 'mixed', 'options=' => 'array', ), - 'Couchbase\\Bucket::listExists' => + 'couchbase\\bucket::listexists' => array ( 0 => 'bool', 'id' => 'string', 'value' => 'mixed', ), - 'Couchbase\\Bucket::listGet' => + 'couchbase\\bucket::listget' => array ( 0 => 'mixed', 'id' => 'string', 'index' => 'int', ), - 'Couchbase\\Bucket::listPush' => + 'couchbase\\bucket::listpush' => array ( 0 => 'mixed', 'id' => 'string', 'value' => 'mixed', ), - 'Couchbase\\Bucket::listRemove' => + 'couchbase\\bucket::listremove' => array ( 0 => 'mixed', 'id' => 'string', 'index' => 'int', ), - 'Couchbase\\Bucket::listSet' => + 'couchbase\\bucket::listset' => array ( 0 => 'mixed', 'id' => 'string', 'index' => 'int', 'value' => 'mixed', ), - 'Couchbase\\Bucket::listShift' => + 'couchbase\\bucket::listshift' => array ( 0 => 'mixed', 'id' => 'string', 'value' => 'mixed', ), - 'Couchbase\\Bucket::listSize' => + 'couchbase\\bucket::listsize' => array ( 0 => 'int', 'id' => 'string', ), - 'Couchbase\\Bucket::lookupIn' => + 'couchbase\\bucket::lookupin' => array ( 0 => 'Couchbase\\LookupInBuilder', 'id' => 'string', ), - 'Couchbase\\Bucket::manager' => + 'couchbase\\bucket::manager' => array ( 0 => 'Couchbase\\BucketManager', ), - 'Couchbase\\Bucket::mapAdd' => + 'couchbase\\bucket::mapadd' => array ( 0 => 'mixed', 'id' => 'string', 'key' => 'string', 'value' => 'mixed', ), - 'Couchbase\\Bucket::mapGet' => + 'couchbase\\bucket::mapget' => array ( 0 => 'mixed', 'id' => 'string', 'key' => 'string', ), - 'Couchbase\\Bucket::mapRemove' => + 'couchbase\\bucket::mapremove' => array ( 0 => 'mixed', 'id' => 'string', 'key' => 'string', ), - 'Couchbase\\Bucket::mapSize' => + 'couchbase\\bucket::mapsize' => array ( 0 => 'int', 'id' => 'string', ), - 'Couchbase\\Bucket::mutateIn' => + 'couchbase\\bucket::mutatein' => array ( 0 => 'Couchbase\\MutateInBuilder', 'id' => 'string', 'cas' => 'string', ), - 'Couchbase\\Bucket::ping' => + 'couchbase\\bucket::ping' => array ( 0 => 'array', 'services=' => 'int', 'reportId=' => 'string', ), - 'Couchbase\\Bucket::prepend' => + 'couchbase\\bucket::prepend' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'value' => 'mixed', 'options=' => 'array', ), - 'Couchbase\\Bucket::query' => + 'couchbase\\bucket::query' => array ( 0 => 'object', 'query' => 'Couchbase\\AnalyticsQuery|Couchbase\\N1qlQuery|Couchbase\\SearchQuery|Couchbase\\SpatialViewQuery|Couchbase\\ViewQuery', 'jsonAsArray=' => 'bool', ), - 'Couchbase\\Bucket::queueAdd' => + 'couchbase\\bucket::queueadd' => array ( 0 => 'mixed', 'id' => 'string', 'value' => 'mixed', ), - 'Couchbase\\Bucket::queueExists' => + 'couchbase\\bucket::queueexists' => array ( 0 => 'bool', 'id' => 'string', 'value' => 'mixed', ), - 'Couchbase\\Bucket::queueRemove' => + 'couchbase\\bucket::queueremove' => array ( 0 => 'mixed', 'id' => 'string', ), - 'Couchbase\\Bucket::queueSize' => + 'couchbase\\bucket::queuesize' => array ( 0 => 'int', 'id' => 'string', ), - 'Couchbase\\Bucket::remove' => + 'couchbase\\bucket::remove' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'options=' => 'array', ), - 'Couchbase\\Bucket::replace' => + 'couchbase\\bucket::replace' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'value' => 'mixed', 'options=' => 'array', ), - 'Couchbase\\Bucket::retrieveIn' => + 'couchbase\\bucket::retrievein' => array ( 0 => 'Couchbase\\DocumentFragment', 'id' => 'string', '...paths=' => 'array', ), - 'Couchbase\\Bucket::setAdd' => + 'couchbase\\bucket::setadd' => array ( 0 => 'mixed', 'id' => 'string', 'value' => 'scalar', ), - 'Couchbase\\Bucket::setExists' => + 'couchbase\\bucket::setexists' => array ( 0 => 'bool', 'id' => 'string', 'value' => 'scalar', ), - 'Couchbase\\Bucket::setRemove' => + 'couchbase\\bucket::setremove' => array ( 0 => 'mixed', 'id' => 'string', 'value' => 'scalar', ), - 'Couchbase\\Bucket::setSize' => + 'couchbase\\bucket::setsize' => array ( 0 => 'int', 'id' => 'string', ), - 'Couchbase\\Bucket::setTranscoder' => + 'couchbase\\bucket::settranscoder' => array ( 0 => 'mixed', 'encoder' => 'callable', 'decoder' => 'callable', ), - 'Couchbase\\Bucket::touch' => + 'couchbase\\bucket::touch' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'expiry' => 'int', 'options=' => 'array', ), - 'Couchbase\\Bucket::unlock' => + 'couchbase\\bucket::unlock' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'options=' => 'array', ), - 'Couchbase\\Bucket::upsert' => + 'couchbase\\bucket::upsert' => array ( 0 => 'Couchbase\\Document|array', 'ids' => 'array|string', 'value' => 'mixed', 'options=' => 'array', ), - 'Couchbase\\BucketManager::__construct' => + 'couchbase\\bucketmanager::__construct' => array ( 0 => 'void', ), - 'Couchbase\\BucketManager::createN1qlIndex' => + 'couchbase\\bucketmanager::createn1qlindex' => array ( 0 => 'mixed', 'name' => 'string', @@ -1925,532 +1925,532 @@ 'ignoreIfExist=' => 'bool', 'defer=' => 'bool', ), - 'Couchbase\\BucketManager::createN1qlPrimaryIndex' => + 'couchbase\\bucketmanager::createn1qlprimaryindex' => array ( 0 => 'mixed', 'customName=' => 'string', 'ignoreIfExist=' => 'bool', 'defer=' => 'bool', ), - 'Couchbase\\BucketManager::dropN1qlIndex' => + 'couchbase\\bucketmanager::dropn1qlindex' => array ( 0 => 'mixed', 'name' => 'string', 'ignoreIfNotExist=' => 'bool', ), - 'Couchbase\\BucketManager::dropN1qlPrimaryIndex' => + 'couchbase\\bucketmanager::dropn1qlprimaryindex' => array ( 0 => 'mixed', 'customName=' => 'string', 'ignoreIfNotExist=' => 'bool', ), - 'Couchbase\\BucketManager::flush' => + 'couchbase\\bucketmanager::flush' => array ( 0 => 'mixed', ), - 'Couchbase\\BucketManager::getDesignDocument' => + 'couchbase\\bucketmanager::getdesigndocument' => array ( 0 => 'array', 'name' => 'string', ), - 'Couchbase\\BucketManager::info' => + 'couchbase\\bucketmanager::info' => array ( 0 => 'array', ), - 'Couchbase\\BucketManager::insertDesignDocument' => + 'couchbase\\bucketmanager::insertdesigndocument' => array ( 0 => 'mixed', 'name' => 'string', 'document' => 'array', ), - 'Couchbase\\BucketManager::listDesignDocuments' => + 'couchbase\\bucketmanager::listdesigndocuments' => array ( 0 => 'array', ), - 'Couchbase\\BucketManager::listN1qlIndexes' => + 'couchbase\\bucketmanager::listn1qlindexes' => array ( 0 => 'array', ), - 'Couchbase\\BucketManager::removeDesignDocument' => + 'couchbase\\bucketmanager::removedesigndocument' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Couchbase\\BucketManager::upsertDesignDocument' => + 'couchbase\\bucketmanager::upsertdesigndocument' => array ( 0 => 'mixed', 'name' => 'string', 'document' => 'array', ), - 'Couchbase\\ClassicAuthenticator::bucket' => + 'couchbase\\classicauthenticator::bucket' => array ( 0 => 'mixed', 'name' => 'string', 'password' => 'string', ), - 'Couchbase\\ClassicAuthenticator::cluster' => + 'couchbase\\classicauthenticator::cluster' => array ( 0 => 'mixed', 'username' => 'string', 'password' => 'string', ), - 'Couchbase\\Cluster::__construct' => + 'couchbase\\cluster::__construct' => array ( 0 => 'void', 'connstr' => 'string', ), - 'Couchbase\\Cluster::authenticate' => + 'couchbase\\cluster::authenticate' => array ( 0 => 'null', 'authenticator' => 'Couchbase\\Authenticator', ), - 'Couchbase\\Cluster::authenticateAs' => + 'couchbase\\cluster::authenticateas' => array ( 0 => 'null', 'username' => 'string', 'password' => 'string', ), - 'Couchbase\\Cluster::manager' => + 'couchbase\\cluster::manager' => array ( 0 => 'Couchbase\\ClusterManager', 'username=' => 'string', 'password=' => 'string', ), - 'Couchbase\\Cluster::openBucket' => + 'couchbase\\cluster::openbucket' => array ( 0 => 'Couchbase\\Bucket', 'name=' => 'string', 'password=' => 'string', ), - 'Couchbase\\ClusterManager::__construct' => + 'couchbase\\clustermanager::__construct' => array ( 0 => 'void', ), - 'Couchbase\\ClusterManager::createBucket' => + 'couchbase\\clustermanager::createbucket' => array ( 0 => 'mixed', 'name' => 'string', 'options=' => 'array', ), - 'Couchbase\\ClusterManager::getUser' => + 'couchbase\\clustermanager::getuser' => array ( 0 => 'array', 'username' => 'string', 'domain=' => 'int', ), - 'Couchbase\\ClusterManager::info' => + 'couchbase\\clustermanager::info' => array ( 0 => 'array', ), - 'Couchbase\\ClusterManager::listBuckets' => + 'couchbase\\clustermanager::listbuckets' => array ( 0 => 'array', ), - 'Couchbase\\ClusterManager::listUsers' => + 'couchbase\\clustermanager::listusers' => array ( 0 => 'array', 'domain=' => 'int', ), - 'Couchbase\\ClusterManager::removeBucket' => + 'couchbase\\clustermanager::removebucket' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Couchbase\\ClusterManager::removeUser' => + 'couchbase\\clustermanager::removeuser' => array ( 0 => 'mixed', 'name' => 'string', 'domain=' => 'int', ), - 'Couchbase\\ClusterManager::upsertUser' => + 'couchbase\\clustermanager::upsertuser' => array ( 0 => 'mixed', 'name' => 'string', 'settings' => 'Couchbase\\UserSettings', 'domain=' => 'int', ), - 'Couchbase\\ConjunctionSearchQuery::__construct' => + 'couchbase\\conjunctionsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\ConjunctionSearchQuery::boost' => + 'couchbase\\conjunctionsearchquery::boost' => array ( 0 => 'Couchbase\\ConjunctionSearchQuery', 'boost' => 'float', ), - 'Couchbase\\ConjunctionSearchQuery::every' => + 'couchbase\\conjunctionsearchquery::every' => array ( 0 => 'Couchbase\\ConjunctionSearchQuery', '...queries=' => 'array', ), - 'Couchbase\\ConjunctionSearchQuery::jsonSerialize' => + 'couchbase\\conjunctionsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\DateRangeSearchFacet::__construct' => + 'couchbase\\daterangesearchfacet::__construct' => array ( 0 => 'void', ), - 'Couchbase\\DateRangeSearchFacet::addRange' => + 'couchbase\\daterangesearchfacet::addrange' => array ( 0 => 'Couchbase\\DateRangeSearchFacet', 'name' => 'string', 'start' => 'int|string', 'end' => 'int|string', ), - 'Couchbase\\DateRangeSearchFacet::jsonSerialize' => + 'couchbase\\daterangesearchfacet::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\DateRangeSearchQuery::__construct' => + 'couchbase\\daterangesearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\DateRangeSearchQuery::boost' => + 'couchbase\\daterangesearchquery::boost' => array ( 0 => 'Couchbase\\DateRangeSearchQuery', 'boost' => 'float', ), - 'Couchbase\\DateRangeSearchQuery::dateTimeParser' => + 'couchbase\\daterangesearchquery::datetimeparser' => array ( 0 => 'Couchbase\\DateRangeSearchQuery', 'dateTimeParser' => 'string', ), - 'Couchbase\\DateRangeSearchQuery::end' => + 'couchbase\\daterangesearchquery::end' => array ( 0 => 'Couchbase\\DateRangeSearchQuery', 'end' => 'int|string', 'inclusive=' => 'bool', ), - 'Couchbase\\DateRangeSearchQuery::field' => + 'couchbase\\daterangesearchquery::field' => array ( 0 => 'Couchbase\\DateRangeSearchQuery', 'field' => 'string', ), - 'Couchbase\\DateRangeSearchQuery::jsonSerialize' => + 'couchbase\\daterangesearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\DateRangeSearchQuery::start' => + 'couchbase\\daterangesearchquery::start' => array ( 0 => 'Couchbase\\DateRangeSearchQuery', 'start' => 'int|string', 'inclusive=' => 'bool', ), - 'Couchbase\\DisjunctionSearchQuery::__construct' => + 'couchbase\\disjunctionsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\DisjunctionSearchQuery::boost' => + 'couchbase\\disjunctionsearchquery::boost' => array ( 0 => 'Couchbase\\DisjunctionSearchQuery', 'boost' => 'float', ), - 'Couchbase\\DisjunctionSearchQuery::either' => + 'couchbase\\disjunctionsearchquery::either' => array ( 0 => 'Couchbase\\DisjunctionSearchQuery', '...queries=' => 'array', ), - 'Couchbase\\DisjunctionSearchQuery::jsonSerialize' => + 'couchbase\\disjunctionsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\DisjunctionSearchQuery::min' => + 'couchbase\\disjunctionsearchquery::min' => array ( 0 => 'Couchbase\\DisjunctionSearchQuery', 'min' => 'int', ), - 'Couchbase\\DocIdSearchQuery::__construct' => + 'couchbase\\docidsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\DocIdSearchQuery::boost' => + 'couchbase\\docidsearchquery::boost' => array ( 0 => 'Couchbase\\DocIdSearchQuery', 'boost' => 'float', ), - 'Couchbase\\DocIdSearchQuery::docIds' => + 'couchbase\\docidsearchquery::docids' => array ( 0 => 'Couchbase\\DocIdSearchQuery', '...documentIds=' => 'array', ), - 'Couchbase\\DocIdSearchQuery::field' => + 'couchbase\\docidsearchquery::field' => array ( 0 => 'Couchbase\\DocIdSearchQuery', 'field' => 'string', ), - 'Couchbase\\DocIdSearchQuery::jsonSerialize' => + 'couchbase\\docidsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\GeoBoundingBoxSearchQuery::__construct' => + 'couchbase\\geoboundingboxsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\GeoBoundingBoxSearchQuery::boost' => + 'couchbase\\geoboundingboxsearchquery::boost' => array ( 0 => 'Couchbase\\GeoBoundingBoxSearchQuery', 'boost' => 'float', ), - 'Couchbase\\GeoBoundingBoxSearchQuery::field' => + 'couchbase\\geoboundingboxsearchquery::field' => array ( 0 => 'Couchbase\\GeoBoundingBoxSearchQuery', 'field' => 'string', ), - 'Couchbase\\GeoBoundingBoxSearchQuery::jsonSerialize' => + 'couchbase\\geoboundingboxsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\GeoDistanceSearchQuery::__construct' => + 'couchbase\\geodistancesearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\GeoDistanceSearchQuery::boost' => + 'couchbase\\geodistancesearchquery::boost' => array ( 0 => 'Couchbase\\GeoDistanceSearchQuery', 'boost' => 'float', ), - 'Couchbase\\GeoDistanceSearchQuery::field' => + 'couchbase\\geodistancesearchquery::field' => array ( 0 => 'Couchbase\\GeoDistanceSearchQuery', 'field' => 'string', ), - 'Couchbase\\GeoDistanceSearchQuery::jsonSerialize' => + 'couchbase\\geodistancesearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\LookupInBuilder::__construct' => + 'couchbase\\lookupinbuilder::__construct' => array ( 0 => 'void', ), - 'Couchbase\\LookupInBuilder::execute' => + 'couchbase\\lookupinbuilder::execute' => array ( 0 => 'Couchbase\\DocumentFragment', ), - 'Couchbase\\LookupInBuilder::exists' => + 'couchbase\\lookupinbuilder::exists' => array ( 0 => 'Couchbase\\LookupInBuilder', 'path' => 'string', 'options=' => 'array', ), - 'Couchbase\\LookupInBuilder::get' => + 'couchbase\\lookupinbuilder::get' => array ( 0 => 'Couchbase\\LookupInBuilder', 'path' => 'string', 'options=' => 'array', ), - 'Couchbase\\LookupInBuilder::getCount' => + 'couchbase\\lookupinbuilder::getcount' => array ( 0 => 'Couchbase\\LookupInBuilder', 'path' => 'string', 'options=' => 'array', ), - 'Couchbase\\MatchAllSearchQuery::__construct' => + 'couchbase\\matchallsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\MatchAllSearchQuery::boost' => + 'couchbase\\matchallsearchquery::boost' => array ( 0 => 'Couchbase\\MatchAllSearchQuery', 'boost' => 'float', ), - 'Couchbase\\MatchAllSearchQuery::jsonSerialize' => + 'couchbase\\matchallsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\MatchNoneSearchQuery::__construct' => + 'couchbase\\matchnonesearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\MatchNoneSearchQuery::boost' => + 'couchbase\\matchnonesearchquery::boost' => array ( 0 => 'Couchbase\\MatchNoneSearchQuery', 'boost' => 'float', ), - 'Couchbase\\MatchNoneSearchQuery::jsonSerialize' => + 'couchbase\\matchnonesearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\MatchPhraseSearchQuery::__construct' => + 'couchbase\\matchphrasesearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\MatchPhraseSearchQuery::analyzer' => + 'couchbase\\matchphrasesearchquery::analyzer' => array ( 0 => 'Couchbase\\MatchPhraseSearchQuery', 'analyzer' => 'string', ), - 'Couchbase\\MatchPhraseSearchQuery::boost' => + 'couchbase\\matchphrasesearchquery::boost' => array ( 0 => 'Couchbase\\MatchPhraseSearchQuery', 'boost' => 'float', ), - 'Couchbase\\MatchPhraseSearchQuery::field' => + 'couchbase\\matchphrasesearchquery::field' => array ( 0 => 'Couchbase\\MatchPhraseSearchQuery', 'field' => 'string', ), - 'Couchbase\\MatchPhraseSearchQuery::jsonSerialize' => + 'couchbase\\matchphrasesearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\MatchSearchQuery::__construct' => + 'couchbase\\matchsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\MatchSearchQuery::analyzer' => + 'couchbase\\matchsearchquery::analyzer' => array ( 0 => 'Couchbase\\MatchSearchQuery', 'analyzer' => 'string', ), - 'Couchbase\\MatchSearchQuery::boost' => + 'couchbase\\matchsearchquery::boost' => array ( 0 => 'Couchbase\\MatchSearchQuery', 'boost' => 'float', ), - 'Couchbase\\MatchSearchQuery::field' => + 'couchbase\\matchsearchquery::field' => array ( 0 => 'Couchbase\\MatchSearchQuery', 'field' => 'string', ), - 'Couchbase\\MatchSearchQuery::fuzziness' => + 'couchbase\\matchsearchquery::fuzziness' => array ( 0 => 'Couchbase\\MatchSearchQuery', 'fuzziness' => 'int', ), - 'Couchbase\\MatchSearchQuery::jsonSerialize' => + 'couchbase\\matchsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\MatchSearchQuery::prefixLength' => + 'couchbase\\matchsearchquery::prefixlength' => array ( 0 => 'Couchbase\\MatchSearchQuery', 'prefixLength' => 'int', ), - 'Couchbase\\MutateInBuilder::__construct' => + 'couchbase\\mutateinbuilder::__construct' => array ( 0 => 'void', ), - 'Couchbase\\MutateInBuilder::arrayAddUnique' => + 'couchbase\\mutateinbuilder::arrayaddunique' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'value' => 'mixed', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::arrayAppend' => + 'couchbase\\mutateinbuilder::arrayappend' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'value' => 'mixed', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::arrayAppendAll' => + 'couchbase\\mutateinbuilder::arrayappendall' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'values' => 'array', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::arrayInsert' => + 'couchbase\\mutateinbuilder::arrayinsert' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'value' => 'mixed', 'options=' => 'array', ), - 'Couchbase\\MutateInBuilder::arrayInsertAll' => + 'couchbase\\mutateinbuilder::arrayinsertall' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'values' => 'array', 'options=' => 'array', ), - 'Couchbase\\MutateInBuilder::arrayPrepend' => + 'couchbase\\mutateinbuilder::arrayprepend' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'value' => 'mixed', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::arrayPrependAll' => + 'couchbase\\mutateinbuilder::arrayprependall' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'values' => 'array', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::counter' => + 'couchbase\\mutateinbuilder::counter' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'delta' => 'int', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::execute' => + 'couchbase\\mutateinbuilder::execute' => array ( 0 => 'Couchbase\\DocumentFragment', ), - 'Couchbase\\MutateInBuilder::insert' => + 'couchbase\\mutateinbuilder::insert' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'value' => 'mixed', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::modeDocument' => + 'couchbase\\mutateinbuilder::modedocument' => array ( 0 => 'mixed', 'mode' => 'int', ), - 'Couchbase\\MutateInBuilder::remove' => + 'couchbase\\mutateinbuilder::remove' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'options=' => 'array', ), - 'Couchbase\\MutateInBuilder::replace' => + 'couchbase\\mutateinbuilder::replace' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'value' => 'mixed', 'options=' => 'array', ), - 'Couchbase\\MutateInBuilder::upsert' => + 'couchbase\\mutateinbuilder::upsert' => array ( 0 => 'Couchbase\\MutateInBuilder', 'path' => 'string', 'value' => 'mixed', 'options=' => 'array|bool', ), - 'Couchbase\\MutateInBuilder::withExpiry' => + 'couchbase\\mutateinbuilder::withexpiry' => array ( 0 => 'Couchbase\\MutateInBuilder', 'expiry' => 'Couchbase\\expiry', ), - 'Couchbase\\MutationState::__construct' => + 'couchbase\\mutationstate::__construct' => array ( 0 => 'void', ), - 'Couchbase\\MutationState::add' => + 'couchbase\\mutationstate::add' => array ( 0 => 'mixed', 'source' => 'Couchbase\\Document|Couchbase\\DocumentFragment|array', ), - 'Couchbase\\MutationState::from' => + 'couchbase\\mutationstate::from' => array ( 0 => 'Couchbase\\MutationState', 'source' => 'Couchbase\\Document|Couchbase\\DocumentFragment|array', ), - 'Couchbase\\MutationToken::__construct' => + 'couchbase\\mutationtoken::__construct' => array ( 0 => 'void', ), - 'Couchbase\\MutationToken::bucketName' => + 'couchbase\\mutationtoken::bucketname' => array ( 0 => 'string', ), - 'Couchbase\\MutationToken::from' => + 'couchbase\\mutationtoken::from' => array ( 0 => 'mixed', 'bucketName' => 'string', @@ -2458,275 +2458,275 @@ 'vbucketUuid' => 'string', 'sequenceNumber' => 'string', ), - 'Couchbase\\MutationToken::sequenceNumber' => + 'couchbase\\mutationtoken::sequencenumber' => array ( 0 => 'string', ), - 'Couchbase\\MutationToken::vbucketId' => + 'couchbase\\mutationtoken::vbucketid' => array ( 0 => 'int', ), - 'Couchbase\\MutationToken::vbucketUuid' => + 'couchbase\\mutationtoken::vbucketuuid' => array ( 0 => 'string', ), - 'Couchbase\\N1qlIndex::__construct' => + 'couchbase\\n1qlindex::__construct' => array ( 0 => 'void', ), - 'Couchbase\\N1qlQuery::__construct' => + 'couchbase\\n1qlquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\N1qlQuery::adhoc' => + 'couchbase\\n1qlquery::adhoc' => array ( 0 => 'Couchbase\\N1qlQuery', 'adhoc' => 'bool', ), - 'Couchbase\\N1qlQuery::consistency' => + 'couchbase\\n1qlquery::consistency' => array ( 0 => 'Couchbase\\N1qlQuery', 'consistency' => 'int', ), - 'Couchbase\\N1qlQuery::consistentWith' => + 'couchbase\\n1qlquery::consistentwith' => array ( 0 => 'Couchbase\\N1qlQuery', 'state' => 'Couchbase\\MutationState', ), - 'Couchbase\\N1qlQuery::crossBucket' => + 'couchbase\\n1qlquery::crossbucket' => array ( 0 => 'Couchbase\\N1qlQuery', 'crossBucket' => 'bool', ), - 'Couchbase\\N1qlQuery::fromString' => + 'couchbase\\n1qlquery::fromstring' => array ( 0 => 'Couchbase\\N1qlQuery', 'statement' => 'string', ), - 'Couchbase\\N1qlQuery::maxParallelism' => + 'couchbase\\n1qlquery::maxparallelism' => array ( 0 => 'Couchbase\\N1qlQuery', 'maxParallelism' => 'int', ), - 'Couchbase\\N1qlQuery::namedParams' => + 'couchbase\\n1qlquery::namedparams' => array ( 0 => 'Couchbase\\N1qlQuery', 'params' => 'array', ), - 'Couchbase\\N1qlQuery::pipelineBatch' => + 'couchbase\\n1qlquery::pipelinebatch' => array ( 0 => 'Couchbase\\N1qlQuery', 'pipelineBatch' => 'int', ), - 'Couchbase\\N1qlQuery::pipelineCap' => + 'couchbase\\n1qlquery::pipelinecap' => array ( 0 => 'Couchbase\\N1qlQuery', 'pipelineCap' => 'int', ), - 'Couchbase\\N1qlQuery::positionalParams' => + 'couchbase\\n1qlquery::positionalparams' => array ( 0 => 'Couchbase\\N1qlQuery', 'params' => 'array', ), - 'Couchbase\\N1qlQuery::profile' => + 'couchbase\\n1qlquery::profile' => array ( 0 => 'mixed', 'profileType' => 'string', ), - 'Couchbase\\N1qlQuery::readonly' => + 'couchbase\\n1qlquery::readonly' => array ( 0 => 'Couchbase\\N1qlQuery', 'readonly' => 'bool', ), - 'Couchbase\\N1qlQuery::scanCap' => + 'couchbase\\n1qlquery::scancap' => array ( 0 => 'Couchbase\\N1qlQuery', 'scanCap' => 'int', ), - 'Couchbase\\NumericRangeSearchFacet::__construct' => + 'couchbase\\numericrangesearchfacet::__construct' => array ( 0 => 'void', ), - 'Couchbase\\NumericRangeSearchFacet::addRange' => + 'couchbase\\numericrangesearchfacet::addrange' => array ( 0 => 'Couchbase\\NumericRangeSearchFacet', 'name' => 'string', 'min' => 'float', 'max' => 'float', ), - 'Couchbase\\NumericRangeSearchFacet::jsonSerialize' => + 'couchbase\\numericrangesearchfacet::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\NumericRangeSearchQuery::__construct' => + 'couchbase\\numericrangesearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\NumericRangeSearchQuery::boost' => + 'couchbase\\numericrangesearchquery::boost' => array ( 0 => 'Couchbase\\NumericRangeSearchQuery', 'boost' => 'float', ), - 'Couchbase\\NumericRangeSearchQuery::field' => + 'couchbase\\numericrangesearchquery::field' => array ( 0 => 'Couchbase\\NumericRangeSearchQuery', 'field' => 'string', ), - 'Couchbase\\NumericRangeSearchQuery::jsonSerialize' => + 'couchbase\\numericrangesearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\NumericRangeSearchQuery::max' => + 'couchbase\\numericrangesearchquery::max' => array ( 0 => 'Couchbase\\NumericRangeSearchQuery', 'max' => 'float', 'inclusive=' => 'bool', ), - 'Couchbase\\NumericRangeSearchQuery::min' => + 'couchbase\\numericrangesearchquery::min' => array ( 0 => 'Couchbase\\NumericRangeSearchQuery', 'min' => 'float', 'inclusive=' => 'bool', ), - 'Couchbase\\PasswordAuthenticator::password' => + 'couchbase\\passwordauthenticator::password' => array ( 0 => 'Couchbase\\PasswordAuthenticator', 'password' => 'string', ), - 'Couchbase\\PasswordAuthenticator::username' => + 'couchbase\\passwordauthenticator::username' => array ( 0 => 'Couchbase\\PasswordAuthenticator', 'username' => 'string', ), - 'Couchbase\\PhraseSearchQuery::__construct' => + 'couchbase\\phrasesearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\PhraseSearchQuery::boost' => + 'couchbase\\phrasesearchquery::boost' => array ( 0 => 'Couchbase\\PhraseSearchQuery', 'boost' => 'float', ), - 'Couchbase\\PhraseSearchQuery::field' => + 'couchbase\\phrasesearchquery::field' => array ( 0 => 'Couchbase\\PhraseSearchQuery', 'field' => 'string', ), - 'Couchbase\\PhraseSearchQuery::jsonSerialize' => + 'couchbase\\phrasesearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\PrefixSearchQuery::__construct' => + 'couchbase\\prefixsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\PrefixSearchQuery::boost' => + 'couchbase\\prefixsearchquery::boost' => array ( 0 => 'Couchbase\\PrefixSearchQuery', 'boost' => 'float', ), - 'Couchbase\\PrefixSearchQuery::field' => + 'couchbase\\prefixsearchquery::field' => array ( 0 => 'Couchbase\\PrefixSearchQuery', 'field' => 'string', ), - 'Couchbase\\PrefixSearchQuery::jsonSerialize' => + 'couchbase\\prefixsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\QueryStringSearchQuery::__construct' => + 'couchbase\\querystringsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\QueryStringSearchQuery::boost' => + 'couchbase\\querystringsearchquery::boost' => array ( 0 => 'Couchbase\\QueryStringSearchQuery', 'boost' => 'float', ), - 'Couchbase\\QueryStringSearchQuery::jsonSerialize' => + 'couchbase\\querystringsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\RegexpSearchQuery::__construct' => + 'couchbase\\regexpsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\RegexpSearchQuery::boost' => + 'couchbase\\regexpsearchquery::boost' => array ( 0 => 'Couchbase\\RegexpSearchQuery', 'boost' => 'float', ), - 'Couchbase\\RegexpSearchQuery::field' => + 'couchbase\\regexpsearchquery::field' => array ( 0 => 'Couchbase\\RegexpSearchQuery', 'field' => 'string', ), - 'Couchbase\\RegexpSearchQuery::jsonSerialize' => + 'couchbase\\regexpsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\SearchQuery::__construct' => + 'couchbase\\searchquery::__construct' => array ( 0 => 'void', 'indexName' => 'string', 'queryPart' => 'Couchbase\\SearchQueryPart', ), - 'Couchbase\\SearchQuery::addFacet' => + 'couchbase\\searchquery::addfacet' => array ( 0 => 'Couchbase\\SearchQuery', 'name' => 'string', 'facet' => 'Couchbase\\SearchFacet', ), - 'Couchbase\\SearchQuery::boolean' => + 'couchbase\\searchquery::boolean' => array ( 0 => 'Couchbase\\BooleanSearchQuery', ), - 'Couchbase\\SearchQuery::booleanField' => + 'couchbase\\searchquery::booleanfield' => array ( 0 => 'Couchbase\\BooleanFieldSearchQuery', 'value' => 'bool', ), - 'Couchbase\\SearchQuery::conjuncts' => + 'couchbase\\searchquery::conjuncts' => array ( 0 => 'Couchbase\\ConjunctionSearchQuery', '...queries=' => 'array', ), - 'Couchbase\\SearchQuery::consistentWith' => + 'couchbase\\searchquery::consistentwith' => array ( 0 => 'Couchbase\\SearchQuery', 'state' => 'Couchbase\\MutationState', ), - 'Couchbase\\SearchQuery::dateRange' => + 'couchbase\\searchquery::daterange' => array ( 0 => 'Couchbase\\DateRangeSearchQuery', ), - 'Couchbase\\SearchQuery::dateRangeFacet' => + 'couchbase\\searchquery::daterangefacet' => array ( 0 => 'Couchbase\\DateRangeSearchFacet', 'field' => 'string', 'limit' => 'int', ), - 'Couchbase\\SearchQuery::disjuncts' => + 'couchbase\\searchquery::disjuncts' => array ( 0 => 'Couchbase\\DisjunctionSearchQuery', '...queries=' => 'array', ), - 'Couchbase\\SearchQuery::docId' => + 'couchbase\\searchquery::docid' => array ( 0 => 'Couchbase\\DocIdSearchQuery', '...documentIds=' => 'array', ), - 'Couchbase\\SearchQuery::explain' => + 'couchbase\\searchquery::explain' => array ( 0 => 'Couchbase\\SearchQuery', 'explain' => 'bool', ), - 'Couchbase\\SearchQuery::fields' => + 'couchbase\\searchquery::fields' => array ( 0 => 'Couchbase\\SearchQuery', '...fields=' => 'array', ), - 'Couchbase\\SearchQuery::geoBoundingBox' => + 'couchbase\\searchquery::geoboundingbox' => array ( 0 => 'Couchbase\\GeoBoundingBoxSearchQuery', 'topLeftLongitude' => 'float', @@ -2734,518 +2734,518 @@ 'bottomRightLongitude' => 'float', 'bottomRightLatitude' => 'float', ), - 'Couchbase\\SearchQuery::geoDistance' => + 'couchbase\\searchquery::geodistance' => array ( 0 => 'Couchbase\\GeoDistanceSearchQuery', 'longitude' => 'float', 'latitude' => 'float', 'distance' => 'string', ), - 'Couchbase\\SearchQuery::highlight' => + 'couchbase\\searchquery::highlight' => array ( 0 => 'Couchbase\\SearchQuery', 'style' => 'string', '...fields=' => 'array', ), - 'Couchbase\\SearchQuery::jsonSerialize' => + 'couchbase\\searchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\SearchQuery::limit' => + 'couchbase\\searchquery::limit' => array ( 0 => 'Couchbase\\SearchQuery', 'limit' => 'int', ), - 'Couchbase\\SearchQuery::match' => + 'couchbase\\searchquery::match' => array ( 0 => 'Couchbase\\MatchSearchQuery', 'match' => 'string', ), - 'Couchbase\\SearchQuery::matchAll' => + 'couchbase\\searchquery::matchall' => array ( 0 => 'Couchbase\\MatchAllSearchQuery', ), - 'Couchbase\\SearchQuery::matchNone' => + 'couchbase\\searchquery::matchnone' => array ( 0 => 'Couchbase\\MatchNoneSearchQuery', ), - 'Couchbase\\SearchQuery::matchPhrase' => + 'couchbase\\searchquery::matchphrase' => array ( 0 => 'Couchbase\\MatchPhraseSearchQuery', '...terms=' => 'array', ), - 'Couchbase\\SearchQuery::numericRange' => + 'couchbase\\searchquery::numericrange' => array ( 0 => 'Couchbase\\NumericRangeSearchQuery', ), - 'Couchbase\\SearchQuery::numericRangeFacet' => + 'couchbase\\searchquery::numericrangefacet' => array ( 0 => 'Couchbase\\NumericRangeSearchFacet', 'field' => 'string', 'limit' => 'int', ), - 'Couchbase\\SearchQuery::prefix' => + 'couchbase\\searchquery::prefix' => array ( 0 => 'Couchbase\\PrefixSearchQuery', 'prefix' => 'string', ), - 'Couchbase\\SearchQuery::queryString' => + 'couchbase\\searchquery::querystring' => array ( 0 => 'Couchbase\\QueryStringSearchQuery', 'queryString' => 'string', ), - 'Couchbase\\SearchQuery::regexp' => + 'couchbase\\searchquery::regexp' => array ( 0 => 'Couchbase\\RegexpSearchQuery', 'regexp' => 'string', ), - 'Couchbase\\SearchQuery::serverSideTimeout' => + 'couchbase\\searchquery::serversidetimeout' => array ( 0 => 'Couchbase\\SearchQuery', 'serverSideTimeout' => 'int', ), - 'Couchbase\\SearchQuery::skip' => + 'couchbase\\searchquery::skip' => array ( 0 => 'Couchbase\\SearchQuery', 'skip' => 'int', ), - 'Couchbase\\SearchQuery::sort' => + 'couchbase\\searchquery::sort' => array ( 0 => 'Couchbase\\SearchQuery', '...sort=' => 'array', ), - 'Couchbase\\SearchQuery::term' => + 'couchbase\\searchquery::term' => array ( 0 => 'Couchbase\\TermSearchQuery', 'term' => 'string', ), - 'Couchbase\\SearchQuery::termFacet' => + 'couchbase\\searchquery::termfacet' => array ( 0 => 'Couchbase\\TermSearchFacet', 'field' => 'string', 'limit' => 'int', ), - 'Couchbase\\SearchQuery::termRange' => + 'couchbase\\searchquery::termrange' => array ( 0 => 'Couchbase\\TermRangeSearchQuery', ), - 'Couchbase\\SearchQuery::wildcard' => + 'couchbase\\searchquery::wildcard' => array ( 0 => 'Couchbase\\WildcardSearchQuery', 'wildcard' => 'string', ), - 'Couchbase\\SearchSort::__construct' => + 'couchbase\\searchsort::__construct' => array ( 0 => 'void', ), - 'Couchbase\\SearchSort::field' => + 'couchbase\\searchsort::field' => array ( 0 => 'Couchbase\\SearchSortField', 'field' => 'string', ), - 'Couchbase\\SearchSort::geoDistance' => + 'couchbase\\searchsort::geodistance' => array ( 0 => 'Couchbase\\SearchSortGeoDistance', 'field' => 'string', 'longitude' => 'float', 'latitude' => 'float', ), - 'Couchbase\\SearchSort::id' => + 'couchbase\\searchsort::id' => array ( 0 => 'Couchbase\\SearchSortId', ), - 'Couchbase\\SearchSort::score' => + 'couchbase\\searchsort::score' => array ( 0 => 'Couchbase\\SearchSortScore', ), - 'Couchbase\\SearchSortField::__construct' => + 'couchbase\\searchsortfield::__construct' => array ( 0 => 'void', ), - 'Couchbase\\SearchSortField::descending' => + 'couchbase\\searchsortfield::descending' => array ( 0 => 'Couchbase\\SearchSortField', 'descending' => 'bool', ), - 'Couchbase\\SearchSortField::field' => + 'couchbase\\searchsortfield::field' => array ( 0 => 'Couchbase\\SearchSortField', 'field' => 'string', ), - 'Couchbase\\SearchSortField::geoDistance' => + 'couchbase\\searchsortfield::geodistance' => array ( 0 => 'Couchbase\\SearchSortGeoDistance', 'field' => 'string', 'longitude' => 'float', 'latitude' => 'float', ), - 'Couchbase\\SearchSortField::id' => + 'couchbase\\searchsortfield::id' => array ( 0 => 'Couchbase\\SearchSortId', ), - 'Couchbase\\SearchSortField::jsonSerialize' => + 'couchbase\\searchsortfield::jsonserialize' => array ( 0 => 'mixed', ), - 'Couchbase\\SearchSortField::missing' => + 'couchbase\\searchsortfield::missing' => array ( 0 => 'mixed', 'missing' => 'string', ), - 'Couchbase\\SearchSortField::mode' => + 'couchbase\\searchsortfield::mode' => array ( 0 => 'mixed', 'mode' => 'string', ), - 'Couchbase\\SearchSortField::score' => + 'couchbase\\searchsortfield::score' => array ( 0 => 'Couchbase\\SearchSortScore', ), - 'Couchbase\\SearchSortField::type' => + 'couchbase\\searchsortfield::type' => array ( 0 => 'mixed', 'type' => 'string', ), - 'Couchbase\\SearchSortGeoDistance::__construct' => + 'couchbase\\searchsortgeodistance::__construct' => array ( 0 => 'void', ), - 'Couchbase\\SearchSortGeoDistance::descending' => + 'couchbase\\searchsortgeodistance::descending' => array ( 0 => 'Couchbase\\SearchSortGeoDistance', 'descending' => 'bool', ), - 'Couchbase\\SearchSortGeoDistance::field' => + 'couchbase\\searchsortgeodistance::field' => array ( 0 => 'Couchbase\\SearchSortField', 'field' => 'string', ), - 'Couchbase\\SearchSortGeoDistance::geoDistance' => + 'couchbase\\searchsortgeodistance::geodistance' => array ( 0 => 'Couchbase\\SearchSortGeoDistance', 'field' => 'string', 'longitude' => 'float', 'latitude' => 'float', ), - 'Couchbase\\SearchSortGeoDistance::id' => + 'couchbase\\searchsortgeodistance::id' => array ( 0 => 'Couchbase\\SearchSortId', ), - 'Couchbase\\SearchSortGeoDistance::jsonSerialize' => + 'couchbase\\searchsortgeodistance::jsonserialize' => array ( 0 => 'mixed', ), - 'Couchbase\\SearchSortGeoDistance::score' => + 'couchbase\\searchsortgeodistance::score' => array ( 0 => 'Couchbase\\SearchSortScore', ), - 'Couchbase\\SearchSortGeoDistance::unit' => + 'couchbase\\searchsortgeodistance::unit' => array ( 0 => 'Couchbase\\SearchSortGeoDistance', 'unit' => 'string', ), - 'Couchbase\\SearchSortId::__construct' => + 'couchbase\\searchsortid::__construct' => array ( 0 => 'void', ), - 'Couchbase\\SearchSortId::descending' => + 'couchbase\\searchsortid::descending' => array ( 0 => 'Couchbase\\SearchSortId', 'descending' => 'bool', ), - 'Couchbase\\SearchSortId::field' => + 'couchbase\\searchsortid::field' => array ( 0 => 'Couchbase\\SearchSortField', 'field' => 'string', ), - 'Couchbase\\SearchSortId::geoDistance' => + 'couchbase\\searchsortid::geodistance' => array ( 0 => 'Couchbase\\SearchSortGeoDistance', 'field' => 'string', 'longitude' => 'float', 'latitude' => 'float', ), - 'Couchbase\\SearchSortId::id' => + 'couchbase\\searchsortid::id' => array ( 0 => 'Couchbase\\SearchSortId', ), - 'Couchbase\\SearchSortId::jsonSerialize' => + 'couchbase\\searchsortid::jsonserialize' => array ( 0 => 'mixed', ), - 'Couchbase\\SearchSortId::score' => + 'couchbase\\searchsortid::score' => array ( 0 => 'Couchbase\\SearchSortScore', ), - 'Couchbase\\SearchSortScore::__construct' => + 'couchbase\\searchsortscore::__construct' => array ( 0 => 'void', ), - 'Couchbase\\SearchSortScore::descending' => + 'couchbase\\searchsortscore::descending' => array ( 0 => 'Couchbase\\SearchSortScore', 'descending' => 'bool', ), - 'Couchbase\\SearchSortScore::field' => + 'couchbase\\searchsortscore::field' => array ( 0 => 'Couchbase\\SearchSortField', 'field' => 'string', ), - 'Couchbase\\SearchSortScore::geoDistance' => + 'couchbase\\searchsortscore::geodistance' => array ( 0 => 'Couchbase\\SearchSortGeoDistance', 'field' => 'string', 'longitude' => 'float', 'latitude' => 'float', ), - 'Couchbase\\SearchSortScore::id' => + 'couchbase\\searchsortscore::id' => array ( 0 => 'Couchbase\\SearchSortId', ), - 'Couchbase\\SearchSortScore::jsonSerialize' => + 'couchbase\\searchsortscore::jsonserialize' => array ( 0 => 'mixed', ), - 'Couchbase\\SearchSortScore::score' => + 'couchbase\\searchsortscore::score' => array ( 0 => 'Couchbase\\SearchSortScore', ), - 'Couchbase\\SpatialViewQuery::__construct' => + 'couchbase\\spatialviewquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\SpatialViewQuery::bbox' => + 'couchbase\\spatialviewquery::bbox' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'bbox' => 'array', ), - 'Couchbase\\SpatialViewQuery::consistency' => + 'couchbase\\spatialviewquery::consistency' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'consistency' => 'int', ), - 'Couchbase\\SpatialViewQuery::custom' => + 'couchbase\\spatialviewquery::custom' => array ( 0 => 'mixed', 'customParameters' => 'array', ), - 'Couchbase\\SpatialViewQuery::encode' => + 'couchbase\\spatialviewquery::encode' => array ( 0 => 'array', ), - 'Couchbase\\SpatialViewQuery::endRange' => + 'couchbase\\spatialviewquery::endrange' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'range' => 'array', ), - 'Couchbase\\SpatialViewQuery::limit' => + 'couchbase\\spatialviewquery::limit' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'limit' => 'int', ), - 'Couchbase\\SpatialViewQuery::order' => + 'couchbase\\spatialviewquery::order' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'order' => 'int', ), - 'Couchbase\\SpatialViewQuery::skip' => + 'couchbase\\spatialviewquery::skip' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'skip' => 'int', ), - 'Couchbase\\SpatialViewQuery::startRange' => + 'couchbase\\spatialviewquery::startrange' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'range' => 'array', ), - 'Couchbase\\TermRangeSearchQuery::__construct' => + 'couchbase\\termrangesearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\TermRangeSearchQuery::boost' => + 'couchbase\\termrangesearchquery::boost' => array ( 0 => 'Couchbase\\TermRangeSearchQuery', 'boost' => 'float', ), - 'Couchbase\\TermRangeSearchQuery::field' => + 'couchbase\\termrangesearchquery::field' => array ( 0 => 'Couchbase\\TermRangeSearchQuery', 'field' => 'string', ), - 'Couchbase\\TermRangeSearchQuery::jsonSerialize' => + 'couchbase\\termrangesearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\TermRangeSearchQuery::max' => + 'couchbase\\termrangesearchquery::max' => array ( 0 => 'Couchbase\\TermRangeSearchQuery', 'max' => 'string', 'inclusive=' => 'bool', ), - 'Couchbase\\TermRangeSearchQuery::min' => + 'couchbase\\termrangesearchquery::min' => array ( 0 => 'Couchbase\\TermRangeSearchQuery', 'min' => 'string', 'inclusive=' => 'bool', ), - 'Couchbase\\TermSearchFacet::__construct' => + 'couchbase\\termsearchfacet::__construct' => array ( 0 => 'void', ), - 'Couchbase\\TermSearchFacet::jsonSerialize' => + 'couchbase\\termsearchfacet::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\TermSearchQuery::__construct' => + 'couchbase\\termsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\TermSearchQuery::boost' => + 'couchbase\\termsearchquery::boost' => array ( 0 => 'Couchbase\\TermSearchQuery', 'boost' => 'float', ), - 'Couchbase\\TermSearchQuery::field' => + 'couchbase\\termsearchquery::field' => array ( 0 => 'Couchbase\\TermSearchQuery', 'field' => 'string', ), - 'Couchbase\\TermSearchQuery::fuzziness' => + 'couchbase\\termsearchquery::fuzziness' => array ( 0 => 'Couchbase\\TermSearchQuery', 'fuzziness' => 'int', ), - 'Couchbase\\TermSearchQuery::jsonSerialize' => + 'couchbase\\termsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\TermSearchQuery::prefixLength' => + 'couchbase\\termsearchquery::prefixlength' => array ( 0 => 'Couchbase\\TermSearchQuery', 'prefixLength' => 'int', ), - 'Couchbase\\UserSettings::fullName' => + 'couchbase\\usersettings::fullname' => array ( 0 => 'Couchbase\\UserSettings', 'fullName' => 'string', ), - 'Couchbase\\UserSettings::password' => + 'couchbase\\usersettings::password' => array ( 0 => 'Couchbase\\UserSettings', 'password' => 'string', ), - 'Couchbase\\UserSettings::role' => + 'couchbase\\usersettings::role' => array ( 0 => 'Couchbase\\UserSettings', 'role' => 'string', 'bucket=' => 'string', ), - 'Couchbase\\ViewQuery::__construct' => + 'couchbase\\viewquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\ViewQuery::consistency' => + 'couchbase\\viewquery::consistency' => array ( 0 => 'Couchbase\\ViewQuery', 'consistency' => 'int', ), - 'Couchbase\\ViewQuery::custom' => + 'couchbase\\viewquery::custom' => array ( 0 => 'Couchbase\\ViewQuery', 'customParameters' => 'array', ), - 'Couchbase\\ViewQuery::encode' => + 'couchbase\\viewquery::encode' => array ( 0 => 'array', ), - 'Couchbase\\ViewQuery::from' => + 'couchbase\\viewquery::from' => array ( 0 => 'Couchbase\\ViewQuery', 'designDocumentName' => 'string', 'viewName' => 'string', ), - 'Couchbase\\ViewQuery::fromSpatial' => + 'couchbase\\viewquery::fromspatial' => array ( 0 => 'Couchbase\\SpatialViewQuery', 'designDocumentName' => 'string', 'viewName' => 'string', ), - 'Couchbase\\ViewQuery::group' => + 'couchbase\\viewquery::group' => array ( 0 => 'Couchbase\\ViewQuery', 'group' => 'bool', ), - 'Couchbase\\ViewQuery::groupLevel' => + 'couchbase\\viewquery::grouplevel' => array ( 0 => 'Couchbase\\ViewQuery', 'groupLevel' => 'int', ), - 'Couchbase\\ViewQuery::idRange' => + 'couchbase\\viewquery::idrange' => array ( 0 => 'Couchbase\\ViewQuery', 'startKeyDocumentId' => 'string', 'endKeyDocumentId' => 'string', ), - 'Couchbase\\ViewQuery::key' => + 'couchbase\\viewquery::key' => array ( 0 => 'Couchbase\\ViewQuery', 'key' => 'mixed', ), - 'Couchbase\\ViewQuery::keys' => + 'couchbase\\viewquery::keys' => array ( 0 => 'Couchbase\\ViewQuery', 'keys' => 'array', ), - 'Couchbase\\ViewQuery::limit' => + 'couchbase\\viewquery::limit' => array ( 0 => 'Couchbase\\ViewQuery', 'limit' => 'int', ), - 'Couchbase\\ViewQuery::order' => + 'couchbase\\viewquery::order' => array ( 0 => 'Couchbase\\ViewQuery', 'order' => 'int', ), - 'Couchbase\\ViewQuery::range' => + 'couchbase\\viewquery::range' => array ( 0 => 'Couchbase\\ViewQuery', 'startKey' => 'mixed', 'endKey' => 'mixed', 'inclusiveEnd=' => 'bool', ), - 'Couchbase\\ViewQuery::reduce' => + 'couchbase\\viewquery::reduce' => array ( 0 => 'Couchbase\\ViewQuery', 'reduce' => 'bool', ), - 'Couchbase\\ViewQuery::skip' => + 'couchbase\\viewquery::skip' => array ( 0 => 'Couchbase\\ViewQuery', 'skip' => 'int', ), - 'Couchbase\\ViewQueryEncodable::encode' => + 'couchbase\\viewqueryencodable::encode' => array ( 0 => 'array', ), - 'Couchbase\\WildcardSearchQuery::__construct' => + 'couchbase\\wildcardsearchquery::__construct' => array ( 0 => 'void', ), - 'Couchbase\\WildcardSearchQuery::boost' => + 'couchbase\\wildcardsearchquery::boost' => array ( 0 => 'Couchbase\\WildcardSearchQuery', 'boost' => 'float', ), - 'Couchbase\\WildcardSearchQuery::field' => + 'couchbase\\wildcardsearchquery::field' => array ( 0 => 'Couchbase\\WildcardSearchQuery', 'field' => 'string', ), - 'Couchbase\\WildcardSearchQuery::jsonSerialize' => + 'couchbase\\wildcardsearchquery::jsonserialize' => array ( 0 => 'array', ), - 'Couchbase\\basicDecoderV1' => + 'couchbase\\basicdecoderv1' => array ( 0 => 'mixed', 'bytes' => 'string', @@ -3253,510 +3253,510 @@ 'datatype' => 'int', 'options' => 'array', ), - 'Couchbase\\basicEncoderV1' => + 'couchbase\\basicencoderv1' => array ( 0 => 'array', 'value' => 'mixed', 'options' => 'array', ), - 'Couchbase\\defaultDecoder' => + 'couchbase\\defaultdecoder' => array ( 0 => 'mixed', 'bytes' => 'string', 'flags' => 'int', 'datatype' => 'int', ), - 'Couchbase\\defaultEncoder' => + 'couchbase\\defaultencoder' => array ( 0 => 'array', 'value' => 'mixed', ), - 'Couchbase\\fastlzCompress' => + 'couchbase\\fastlzcompress' => array ( 0 => 'string', 'data' => 'string', ), - 'Couchbase\\fastlzDecompress' => + 'couchbase\\fastlzdecompress' => array ( 0 => 'string', 'data' => 'string', ), - 'Couchbase\\passthruDecoder' => + 'couchbase\\passthrudecoder' => array ( 0 => 'string', 'bytes' => 'string', 'flags' => 'int', 'datatype' => 'int', ), - 'Couchbase\\passthruEncoder' => + 'couchbase\\passthruencoder' => array ( 0 => 'array', 'value' => 'string', ), - 'Couchbase\\zlibCompress' => + 'couchbase\\zlibcompress' => array ( 0 => 'string', 'data' => 'string', ), - 'Couchbase\\zlibDecompress' => + 'couchbase\\zlibdecompress' => array ( 0 => 'string', 'data' => 'string', ), - 'Countable::count' => + 'countable::count' => array ( 0 => 'int', ), - 'DOMAttr::__construct' => + 'domattr::__construct' => array ( 0 => 'void', 'name' => 'string', 'value=' => 'string', ), - 'DOMAttr::getLineNo' => + 'domattr::getlineno' => array ( 0 => 'int', ), - 'DOMAttr::getNodePath' => + 'domattr::getnodepath' => array ( 0 => 'null|string', ), - 'DOMAttr::hasAttributes' => + 'domattr::hasattributes' => array ( 0 => 'bool', ), - 'DOMAttr::hasChildNodes' => + 'domattr::haschildnodes' => array ( 0 => 'bool', ), - 'DOMAttr::insertBefore' => + 'domattr::insertbefore' => array ( 0 => 'DOMNode|false', 'node' => 'DOMNode', 'child=' => 'DOMNode|null', ), - 'DOMAttr::isDefaultNamespace' => + 'domattr::isdefaultnamespace' => array ( 0 => 'bool', 'namespace' => 'string', ), - 'DOMAttr::isId' => + 'domattr::isid' => array ( 0 => 'bool', ), - 'DOMAttr::isSameNode' => + 'domattr::issamenode' => array ( 0 => 'bool', 'otherNode' => 'DOMNode', ), - 'DOMAttr::isSupported' => + 'domattr::issupported' => array ( 0 => 'bool', 'feature' => 'string', 'version' => 'string', ), - 'DOMAttr::lookupNamespaceUri' => + 'domattr::lookupnamespaceuri' => array ( 0 => 'null|string', 'prefix' => 'null|string', ), - 'DOMAttr::lookupPrefix' => + 'domattr::lookupprefix' => array ( 0 => 'null|string', 'namespace' => 'string', ), - 'DOMAttr::normalize' => + 'domattr::normalize' => array ( 0 => 'void', ), - 'DOMAttr::removeChild' => + 'domattr::removechild' => array ( 0 => 'DOMNode|false', 'child' => 'DOMNode', ), - 'DOMAttr::replaceChild' => + 'domattr::replacechild' => array ( 0 => 'DOMNode|false', 'node' => 'DOMNode', 'child' => 'DOMNode', ), - 'DOMCdataSection::__construct' => + 'domcdatasection::__construct' => array ( 0 => 'void', 'data' => 'string', ), - 'DOMCharacterData::appendData' => + 'domcharacterdata::appenddata' => array ( 0 => 'true', 'data' => 'string', ), - 'DOMCharacterData::deleteData' => + 'domcharacterdata::deletedata' => array ( 0 => 'bool', 'offset' => 'int', 'count' => 'int', ), - 'DOMCharacterData::insertData' => + 'domcharacterdata::insertdata' => array ( 0 => 'bool', 'offset' => 'int', 'data' => 'string', ), - 'DOMCharacterData::replaceData' => + 'domcharacterdata::replacedata' => array ( 0 => 'bool', 'offset' => 'int', 'count' => 'int', 'data' => 'string', ), - 'DOMCharacterData::substringData' => + 'domcharacterdata::substringdata' => array ( 0 => 'string', 'offset' => 'int', 'count' => 'int', ), - 'DOMComment::__construct' => + 'domcomment::__construct' => array ( 0 => 'void', 'data=' => 'string', ), - 'DOMDocument::__construct' => + 'domdocument::__construct' => array ( 0 => 'void', 'version=' => 'string', 'encoding=' => 'string', ), - 'DOMDocument::createAttribute' => + 'domdocument::createattribute' => array ( 0 => 'DOMAttr|false', 'localName' => 'string', ), - 'DOMDocument::createAttributeNS' => + 'domdocument::createattributens' => array ( 0 => 'DOMAttr|false', 'namespace' => 'null|string', 'qualifiedName' => 'string', ), - 'DOMDocument::createCDATASection' => + 'domdocument::createcdatasection' => array ( 0 => 'DOMCDATASection|false', 'data' => 'string', ), - 'DOMDocument::createComment' => + 'domdocument::createcomment' => array ( 0 => 'DOMComment|false', 'data' => 'string', ), - 'DOMDocument::createDocumentFragment' => + 'domdocument::createdocumentfragment' => array ( 0 => 'DOMDocumentFragment|false', ), - 'DOMDocument::createElement' => + 'domdocument::createelement' => array ( 0 => 'DOMElement|false', 'localName' => 'string', 'value=' => 'string', ), - 'DOMDocument::createElementNS' => + 'domdocument::createelementns' => array ( 0 => 'DOMElement|false', 'namespace' => 'null|string', 'qualifiedName' => 'string', 'value=' => 'string', ), - 'DOMDocument::createEntityReference' => + 'domdocument::createentityreference' => array ( 0 => 'DOMEntityReference|false', 'name' => 'string', ), - 'DOMDocument::createProcessingInstruction' => + 'domdocument::createprocessinginstruction' => array ( 0 => 'DOMProcessingInstruction|false', 'target' => 'string', 'data=' => 'string', ), - 'DOMDocument::createTextNode' => + 'domdocument::createtextnode' => array ( 0 => 'DOMText|false', 'data' => 'string', ), - 'DOMDocument::getElementById' => + 'domdocument::getelementbyid' => array ( 0 => 'DOMElement|null', 'elementId' => 'string', ), - 'DOMDocument::getElementsByTagName' => + 'domdocument::getelementsbytagname' => array ( 0 => 'DOMNodeList', 'qualifiedName' => 'string', ), - 'DOMDocument::getElementsByTagNameNS' => + 'domdocument::getelementsbytagnamens' => array ( 0 => 'DOMNodeList', 'namespace' => 'string', 'localName' => 'string', ), - 'DOMDocument::importNode' => + 'domdocument::importnode' => array ( 0 => 'DOMNode|false', 'node' => 'DOMNode', 'deep=' => 'bool', ), - 'DOMDocument::load' => + 'domdocument::load' => array ( 0 => 'DOMDocument|bool', 'filename' => 'string', 'options=' => 'int', ), - 'DOMDocument::loadHTML' => + 'domdocument::loadhtml' => array ( 0 => 'DOMDocument|bool', 'source' => 'non-empty-string', 'options=' => 'int', ), - 'DOMDocument::loadHTMLFile' => + 'domdocument::loadhtmlfile' => array ( 0 => 'DOMDocument|bool', 'filename' => 'string', 'options=' => 'int', ), - 'DOMDocument::loadXML' => + 'domdocument::loadxml' => array ( 0 => 'DOMDocument|bool', 'source' => 'non-empty-string', 'options=' => 'int', ), - 'DOMDocument::normalizeDocument' => + 'domdocument::normalizedocument' => array ( 0 => 'void', ), - 'DOMDocument::registerNodeClass' => + 'domdocument::registernodeclass' => array ( 0 => 'bool', 'baseClass' => 'string', 'extendedClass' => 'null|string', ), - 'DOMDocument::relaxNGValidate' => + 'domdocument::relaxngvalidate' => array ( 0 => 'bool', 'filename' => 'string', ), - 'DOMDocument::relaxNGValidateSource' => + 'domdocument::relaxngvalidatesource' => array ( 0 => 'bool', 'source' => 'string', ), - 'DOMDocument::save' => + 'domdocument::save' => array ( 0 => 'false|int', 'filename' => 'string', 'options=' => 'int', ), - 'DOMDocument::saveHTML' => + 'domdocument::savehtml' => array ( 0 => 'false|string', 'node=' => 'DOMNode|null', ), - 'DOMDocument::saveHTMLFile' => + 'domdocument::savehtmlfile' => array ( 0 => 'false|int', 'filename' => 'string', ), - 'DOMDocument::saveXML' => + 'domdocument::savexml' => array ( 0 => 'false|string', 'node=' => 'DOMNode|null', 'options=' => 'int', ), - 'DOMDocument::schemaValidate' => + 'domdocument::schemavalidate' => array ( 0 => 'bool', 'filename' => 'string', 'flags=' => 'int', ), - 'DOMDocument::schemaValidateSource' => + 'domdocument::schemavalidatesource' => array ( 0 => 'bool', 'source' => 'string', 'flags=' => 'int', ), - 'DOMDocument::validate' => + 'domdocument::validate' => array ( 0 => 'bool', ), - 'DOMDocument::xinclude' => + 'domdocument::xinclude' => array ( 0 => 'int', 'options=' => 'int', ), - 'DOMDocumentFragment::__construct' => + 'domdocumentfragment::__construct' => array ( 0 => 'void', ), - 'DOMDocumentFragment::appendXML' => + 'domdocumentfragment::appendxml' => array ( 0 => 'bool', 'data' => 'string', ), - 'DOMElement::__construct' => + 'domelement::__construct' => array ( 0 => 'void', 'qualifiedName' => 'string', 'value=' => 'null|string', 'namespace=' => 'string', ), - 'DOMElement::getAttribute' => + 'domelement::getattribute' => array ( 0 => 'string', 'qualifiedName' => 'string', ), - 'DOMElement::getAttributeNS' => + 'domelement::getattributens' => array ( 0 => 'string', 'namespace' => 'null|string', 'localName' => 'string', ), - 'DOMElement::getAttributeNode' => + 'domelement::getattributenode' => array ( 0 => 'DOMAttr', 'qualifiedName' => 'string', ), - 'DOMElement::getAttributeNodeNS' => + 'domelement::getattributenodens' => array ( 0 => 'DOMAttr', 'namespace' => 'null|string', 'localName' => 'string', ), - 'DOMElement::getElementsByTagName' => + 'domelement::getelementsbytagname' => array ( 0 => 'DOMNodeList', 'qualifiedName' => 'string', ), - 'DOMElement::getElementsByTagNameNS' => + 'domelement::getelementsbytagnamens' => array ( 0 => 'DOMNodeList', 'namespace' => 'null|string', 'localName' => 'string', ), - 'DOMElement::hasAttribute' => + 'domelement::hasattribute' => array ( 0 => 'bool', 'qualifiedName' => 'string', ), - 'DOMElement::hasAttributeNS' => + 'domelement::hasattributens' => array ( 0 => 'bool', 'namespace' => 'null|string', 'localName' => 'string', ), - 'DOMElement::removeAttribute' => + 'domelement::removeattribute' => array ( 0 => 'bool', 'qualifiedName' => 'string', ), - 'DOMElement::removeAttributeNS' => + 'domelement::removeattributens' => array ( 0 => 'void', 'namespace' => 'null|string', 'localName' => 'string', ), - 'DOMElement::removeAttributeNode' => + 'domelement::removeattributenode' => array ( 0 => 'DOMAttr|false', 'attr' => 'DOMAttr', ), - 'DOMElement::setAttribute' => + 'domelement::setattribute' => array ( 0 => 'DOMAttr|false', 'qualifiedName' => 'string', 'value' => 'string', ), - 'DOMElement::setAttributeNS' => + 'domelement::setattributens' => array ( 0 => 'void', 'namespace' => 'null|string', 'qualifiedName' => 'string', 'value' => 'string', ), - 'DOMElement::setAttributeNode' => + 'domelement::setattributenode' => array ( 0 => 'DOMAttr|null', 'attr' => 'DOMAttr', ), - 'DOMElement::setAttributeNodeNS' => + 'domelement::setattributenodens' => array ( 0 => 'DOMAttr', 'attr' => 'DOMAttr', ), - 'DOMElement::setIdAttribute' => + 'domelement::setidattribute' => array ( 0 => 'void', 'qualifiedName' => 'string', 'isId' => 'bool', ), - 'DOMElement::setIdAttributeNS' => + 'domelement::setidattributens' => array ( 0 => 'void', 'namespace' => 'string', 'qualifiedName' => 'string', 'isId' => 'bool', ), - 'DOMElement::setIdAttributeNode' => + 'domelement::setidattributenode' => array ( 0 => 'void', 'attr' => 'DOMAttr', 'isId' => 'bool', ), - 'DOMEntityReference::__construct' => + 'domentityreference::__construct' => array ( 0 => 'void', 'name' => 'string', ), - 'DOMImplementation::__construct' => + 'domimplementation::__construct' => array ( 0 => 'void', ), - 'DOMImplementation::createDocument' => + 'domimplementation::createdocument' => array ( 0 => 'DOMDocument|false', 'namespace=' => 'string', 'qualifiedName=' => 'string', 'doctype=' => 'DOMDocumentType', ), - 'DOMImplementation::createDocumentType' => + 'domimplementation::createdocumenttype' => array ( 0 => 'DOMDocumentType|false', 'qualifiedName' => 'string', 'publicId=' => 'string', 'systemId=' => 'string', ), - 'DOMImplementation::hasFeature' => + 'domimplementation::hasfeature' => array ( 0 => 'bool', 'feature' => 'string', 'version' => 'string', ), - 'DOMNamedNodeMap::count' => + 'domnamednodemap::count' => array ( 0 => 'int', ), - 'DOMNamedNodeMap::getNamedItem' => + 'domnamednodemap::getnameditem' => array ( 0 => 'DOMNode|null', 'qualifiedName' => 'string', ), - 'DOMNamedNodeMap::getNamedItemNS' => + 'domnamednodemap::getnameditemns' => array ( 0 => 'DOMNode|null', 'namespace' => 'null|string', 'localName' => 'string', ), - 'DOMNamedNodeMap::item' => + 'domnamednodemap::item' => array ( 0 => 'DOMNode|null', 'index' => 'int', ), - 'DOMNode::C14N' => + 'domnode::c14n' => array ( 0 => 'false|string', 'exclusive=' => 'bool', @@ -3764,7 +3764,7 @@ 'xpath=' => 'array|null', 'nsPrefixes=' => 'array|null', ), - 'DOMNode::C14NFile' => + 'domnode::c14nfile' => array ( 0 => 'false|int', 'uri' => 'string', @@ -3773,188 +3773,188 @@ 'xpath=' => 'array|null', 'nsPrefixes=' => 'array|null', ), - 'DOMNode::appendChild' => + 'domnode::appendchild' => array ( 0 => 'DOMNode|false', 'node' => 'DOMNode', ), - 'DOMNode::cloneNode' => + 'domnode::clonenode' => array ( 0 => 'DOMNode', 'deep=' => 'bool', ), - 'DOMNode::getLineNo' => + 'domnode::getlineno' => array ( 0 => 'int', ), - 'DOMNode::getNodePath' => + 'domnode::getnodepath' => array ( 0 => 'null|string', ), - 'DOMNode::hasAttributes' => + 'domnode::hasattributes' => array ( 0 => 'bool', ), - 'DOMNode::hasChildNodes' => + 'domnode::haschildnodes' => array ( 0 => 'bool', ), - 'DOMNode::insertBefore' => + 'domnode::insertbefore' => array ( 0 => 'DOMNode|false', 'node' => 'DOMNode', 'child=' => 'DOMNode|null', ), - 'DOMNode::isDefaultNamespace' => + 'domnode::isdefaultnamespace' => array ( 0 => 'bool', 'namespace' => 'string', ), - 'DOMNode::isSameNode' => + 'domnode::issamenode' => array ( 0 => 'bool', 'otherNode' => 'DOMNode', ), - 'DOMNode::isSupported' => + 'domnode::issupported' => array ( 0 => 'bool', 'feature' => 'string', 'version' => 'string', ), - 'DOMNode::lookupNamespaceURI' => + 'domnode::lookupnamespaceuri' => array ( 0 => 'null|string', 'prefix' => 'null|string', ), - 'DOMNode::lookupPrefix' => + 'domnode::lookupprefix' => array ( 0 => 'null|string', 'namespace' => 'string', ), - 'DOMNode::normalize' => + 'domnode::normalize' => array ( 0 => 'void', ), - 'DOMNode::removeChild' => + 'domnode::removechild' => array ( 0 => 'DOMNode|false', 'child' => 'DOMNode', ), - 'DOMNode::replaceChild' => + 'domnode::replacechild' => array ( 0 => 'DOMNode|false', 'node' => 'DOMNode', 'child' => 'DOMNode', ), - 'DOMNodeList::item' => + 'domnodelist::item' => array ( 0 => 'DOMNode|null', 'index' => 'int', ), - 'DOMProcessingInstruction::__construct' => + 'domprocessinginstruction::__construct' => array ( 0 => 'void', 'name' => 'string', 'value=' => 'string', ), - 'DOMText::__construct' => + 'domtext::__construct' => array ( 0 => 'void', 'data=' => 'string', ), - 'DOMText::isElementContentWhitespace' => + 'domtext::iselementcontentwhitespace' => array ( 0 => 'bool', ), - 'DOMText::isWhitespaceInElementContent' => + 'domtext::iswhitespaceinelementcontent' => array ( 0 => 'bool', ), - 'DOMText::splitText' => + 'domtext::splittext' => array ( 0 => 'DOMText', 'offset' => 'int', ), - 'DOMXPath::__construct' => + 'domxpath::__construct' => array ( 0 => 'void', 'document' => 'DOMDocument', 'registerNodeNS=' => 'bool', ), - 'DOMXPath::evaluate' => + 'domxpath::evaluate' => array ( 0 => 'mixed', 'expression' => 'string', 'contextNode=' => 'DOMNode|null', 'registerNodeNS=' => 'bool', ), - 'DOMXPath::query' => + 'domxpath::query' => array ( 0 => 'DOMNodeList|false', 'expression' => 'string', 'contextNode=' => 'DOMNode|null', 'registerNodeNS=' => 'bool', ), - 'DOMXPath::registerNamespace' => + 'domxpath::registernamespace' => array ( 0 => 'bool', 'prefix' => 'string', 'namespace' => 'string', ), - 'DOMXPath::registerPhpFunctions' => + 'domxpath::registerphpfunctions' => array ( 0 => 'void', 'restrict=' => 'array|null|string', ), - 'DOTNET::__call' => + 'dotnet::__call' => array ( 0 => 'mixed', 'name' => 'string', 'args' => 'mixed', ), - 'DOTNET::__construct' => + 'dotnet::__construct' => array ( 0 => 'void', 'assembly_name' => 'string', 'datatype_name' => 'string', 'codepage=' => 'int', ), - 'DOTNET::__get' => + 'dotnet::__get' => array ( 0 => 'mixed', 'name' => 'string', ), - 'DOTNET::__set' => + 'dotnet::__set' => array ( 0 => 'void', 'name' => 'string', 'value' => 'mixed', ), - 'DateInterval::__construct' => + 'dateinterval::__construct' => array ( 0 => 'void', 'duration' => 'string', ), - 'DateInterval::__set_state' => + 'dateinterval::__set_state' => array ( 0 => 'DateInterval', 'array' => 'array', ), - 'DateInterval::__wakeup' => + 'dateinterval::__wakeup' => array ( 0 => 'void', ), - 'DateInterval::createFromDateString' => + 'dateinterval::createfromdatestring' => array ( 0 => 'DateInterval|false', 'datetime' => 'string', ), - 'DateInterval::format' => + 'dateinterval::format' => array ( 0 => 'string', 'format' => 'string', ), - 'DatePeriod::__construct' => + 'dateperiod::__construct' => array ( 0 => 'void', 'start' => 'DateTimeInterface', @@ -3962,7 +3962,7 @@ 'recur' => 'int', 'options=' => 'int', ), - 'DatePeriod::__construct\'1' => + 'dateperiod::__construct\'1' => array ( 0 => 'void', 'start' => 'DateTimeInterface', @@ -3970,102 +3970,102 @@ 'end' => 'DateTimeInterface', 'options=' => 'int', ), - 'DatePeriod::__construct\'2' => + 'dateperiod::__construct\'2' => array ( 0 => 'void', 'iso' => 'string', 'options=' => 'int', ), - 'DatePeriod::__wakeup' => + 'dateperiod::__wakeup' => array ( 0 => 'void', ), - 'DatePeriod::getDateInterval' => + 'dateperiod::getdateinterval' => array ( 0 => 'DateInterval', ), - 'DatePeriod::getEndDate' => + 'dateperiod::getenddate' => array ( 0 => 'DateTimeInterface|null', ), - 'DatePeriod::getStartDate' => + 'dateperiod::getstartdate' => array ( 0 => 'DateTimeInterface', ), - 'DateTime::__construct' => + 'datetime::__construct' => array ( 0 => 'void', 'time=' => 'string', ), - 'DateTime::__construct\'1' => + 'datetime::__construct\'1' => array ( 0 => 'void', 'time' => 'null|string', 'timezone' => 'DateTimeZone|null', ), - 'DateTime::__wakeup' => + 'datetime::__wakeup' => array ( 0 => 'void', ), - 'DateTime::add' => + 'datetime::add' => array ( 0 => 'static', 'interval' => 'DateInterval', ), - 'DateTime::createFromFormat' => + 'datetime::createfromformat' => array ( 0 => 'false|static', 'format' => 'string', 'datetime' => 'string', 'timezone=' => 'DateTimeZone|null', ), - 'DateTime::diff' => + 'datetime::diff' => array ( 0 => 'DateInterval', 'targetObject' => 'DateTimeInterface', 'absolute=' => 'bool', ), - 'DateTime::format' => + 'datetime::format' => array ( 0 => 'false|string', 'format' => 'string', ), - 'DateTime::getLastErrors' => + 'datetime::getlasterrors' => array ( 0 => 'array{error_count: int, errors: array, warning_count: int, warnings: array}|false', ), - 'DateTime::getOffset' => + 'datetime::getoffset' => array ( 0 => 'int', ), - 'DateTime::getTimestamp' => + 'datetime::gettimestamp' => array ( 0 => 'false|int', ), - 'DateTime::getTimezone' => + 'datetime::gettimezone' => array ( 0 => 'DateTimeZone|false', ), - 'DateTime::modify' => + 'datetime::modify' => array ( 0 => 'false|static', 'modifier' => 'string', ), - 'DateTime::setDate' => + 'datetime::setdate' => array ( 0 => 'static', 'year' => 'int', 'month' => 'int', 'day' => 'int', ), - 'DateTime::setISODate' => + 'datetime::setisodate' => array ( 0 => 'static', 'year' => 'int', 'week' => 'int', 'dayOfWeek=' => 'int', ), - 'DateTime::setTime' => + 'datetime::settime' => array ( 0 => 'static', 'hour' => 'int', @@ -4073,282 +4073,282 @@ 'second=' => 'int', 'microsecond=' => 'int', ), - 'DateTime::setTimestamp' => + 'datetime::settimestamp' => array ( 0 => 'static', 'timestamp' => 'int', ), - 'DateTime::setTimezone' => + 'datetime::settimezone' => array ( 0 => 'static', 'timezone' => 'DateTimeZone', ), - 'DateTime::sub' => + 'datetime::sub' => array ( 0 => 'static', 'interval' => 'DateInterval', ), - 'DateTimeImmutable::__wakeup' => + 'datetimeimmutable::__wakeup' => array ( 0 => 'void', ), - 'DateTimeImmutable::getLastErrors' => + 'datetimeimmutable::getlasterrors' => array ( 0 => 'array{error_count: int, errors: array, warning_count: int, warnings: array}|false', ), - 'DateTimeInterface::diff' => + 'datetimeinterface::diff' => array ( 0 => 'DateInterval', 'datetime2' => 'DateTimeInterface', 'absolute=' => 'bool', ), - 'DateTimeInterface::format' => + 'datetimeinterface::format' => array ( 0 => 'string', 'format' => 'string', ), - 'DateTimeInterface::getOffset' => + 'datetimeinterface::getoffset' => array ( 0 => 'int', ), - 'DateTimeInterface::getTimestamp' => + 'datetimeinterface::gettimestamp' => array ( 0 => 'false|int', ), - 'DateTimeInterface::getTimezone' => + 'datetimeinterface::gettimezone' => array ( 0 => 'DateTimeZone|false', ), - 'DateTimeZone::__construct' => + 'datetimezone::__construct' => array ( 0 => 'void', 'timezone' => 'non-empty-string', ), - 'DateTimeZone::__set_state' => + 'datetimezone::__set_state' => array ( 0 => 'DateTimeZone', 'array' => 'array', ), - 'DateTimeZone::__wakeup' => + 'datetimezone::__wakeup' => array ( 0 => 'void', ), - 'DateTimeZone::getLocation' => + 'datetimezone::getlocation' => array ( 0 => 'array|false', ), - 'DateTimeZone::getName' => + 'datetimezone::getname' => array ( 0 => 'non-empty-string', ), - 'DateTimeZone::getOffset' => + 'datetimezone::getoffset' => array ( 0 => 'false|int', 'datetime' => 'DateTimeInterface', ), - 'DateTimeZone::getTransitions' => + 'datetimezone::gettransitions' => array ( 0 => 'false|list', 'timestampBegin=' => 'int', 'timestampEnd=' => 'int', ), - 'DateTimeZone::listAbbreviations' => + 'datetimezone::listabbreviations' => array ( 0 => 'array>', ), - 'DateTimeZone::listIdentifiers' => + 'datetimezone::listidentifiers' => array ( 0 => 'false|list', 'timezoneGroup=' => 'int', 'countryCode=' => 'string', ), - 'Directory::close' => + 'directory::close' => array ( 0 => 'void', 'dir_handle=' => 'resource', ), - 'Directory::read' => + 'directory::read' => array ( 0 => 'false|string', 'dir_handle=' => 'resource', ), - 'Directory::rewind' => + 'directory::rewind' => array ( 0 => 'void', 'dir_handle=' => 'resource', ), - 'DirectoryIterator::__construct' => + 'directoryiterator::__construct' => array ( 0 => 'void', 'directory' => 'string', ), - 'DirectoryIterator::__toString' => + 'directoryiterator::__tostring' => array ( 0 => 'string', ), - 'DirectoryIterator::current' => + 'directoryiterator::current' => array ( 0 => 'DirectoryIterator', ), - 'DirectoryIterator::getATime' => + 'directoryiterator::getatime' => array ( 0 => 'int', ), - 'DirectoryIterator::getBasename' => + 'directoryiterator::getbasename' => array ( 0 => 'string', 'suffix=' => 'string', ), - 'DirectoryIterator::getCTime' => + 'directoryiterator::getctime' => array ( 0 => 'int', ), - 'DirectoryIterator::getExtension' => + 'directoryiterator::getextension' => array ( 0 => 'string', ), - 'DirectoryIterator::getFileInfo' => + 'directoryiterator::getfileinfo' => array ( 0 => 'SplFileInfo', 'class=' => 'class-string', ), - 'DirectoryIterator::getFilename' => + 'directoryiterator::getfilename' => array ( 0 => 'string', ), - 'DirectoryIterator::getGroup' => + 'directoryiterator::getgroup' => array ( 0 => 'int', ), - 'DirectoryIterator::getInode' => + 'directoryiterator::getinode' => array ( 0 => 'int', ), - 'DirectoryIterator::getLinkTarget' => + 'directoryiterator::getlinktarget' => array ( 0 => 'string', ), - 'DirectoryIterator::getMTime' => + 'directoryiterator::getmtime' => array ( 0 => 'int', ), - 'DirectoryIterator::getOwner' => + 'directoryiterator::getowner' => array ( 0 => 'int', ), - 'DirectoryIterator::getPath' => + 'directoryiterator::getpath' => array ( 0 => 'string', ), - 'DirectoryIterator::getPathInfo' => + 'directoryiterator::getpathinfo' => array ( 0 => 'SplFileInfo|null', 'class=' => 'class-string', ), - 'DirectoryIterator::getPathname' => + 'directoryiterator::getpathname' => array ( 0 => 'string', ), - 'DirectoryIterator::getPerms' => + 'directoryiterator::getperms' => array ( 0 => 'int', ), - 'DirectoryIterator::getRealPath' => + 'directoryiterator::getrealpath' => array ( 0 => 'non-falsy-string', ), - 'DirectoryIterator::getSize' => + 'directoryiterator::getsize' => array ( 0 => 'int', ), - 'DirectoryIterator::getType' => + 'directoryiterator::gettype' => array ( 0 => 'string', ), - 'DirectoryIterator::isDir' => + 'directoryiterator::isdir' => array ( 0 => 'bool', ), - 'DirectoryIterator::isDot' => + 'directoryiterator::isdot' => array ( 0 => 'bool', ), - 'DirectoryIterator::isExecutable' => + 'directoryiterator::isexecutable' => array ( 0 => 'bool', ), - 'DirectoryIterator::isFile' => + 'directoryiterator::isfile' => array ( 0 => 'bool', ), - 'DirectoryIterator::isLink' => + 'directoryiterator::islink' => array ( 0 => 'bool', ), - 'DirectoryIterator::isReadable' => + 'directoryiterator::isreadable' => array ( 0 => 'bool', ), - 'DirectoryIterator::isWritable' => + 'directoryiterator::iswritable' => array ( 0 => 'bool', ), - 'DirectoryIterator::key' => + 'directoryiterator::key' => array ( 0 => 'string', ), - 'DirectoryIterator::next' => + 'directoryiterator::next' => array ( 0 => 'void', ), - 'DirectoryIterator::openFile' => + 'directoryiterator::openfile' => array ( 0 => 'SplFileObject', 'mode=' => 'string', 'useIncludePath=' => 'bool', 'context=' => 'resource', ), - 'DirectoryIterator::rewind' => + 'directoryiterator::rewind' => array ( 0 => 'void', ), - 'DirectoryIterator::seek' => + 'directoryiterator::seek' => array ( 0 => 'void', 'offset' => 'int', ), - 'DirectoryIterator::setFileClass' => + 'directoryiterator::setfileclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'DirectoryIterator::setInfoClass' => + 'directoryiterator::setinfoclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'DirectoryIterator::valid' => + 'directoryiterator::valid' => array ( 0 => 'bool', ), - 'DomAttribute::name' => + 'domattribute::name' => array ( 0 => 'string', ), - 'DomAttribute::set_value' => + 'domattribute::set_value' => array ( 0 => 'bool', 'content' => 'string', ), - 'DomAttribute::specified' => + 'domattribute::specified' => array ( 0 => 'bool', ), - 'DomAttribute::value' => + 'domattribute::value' => array ( 0 => 'string', ), - 'DomXsltStylesheet::process' => + 'domxsltstylesheet::process' => array ( 0 => 'DomDocument', 'xml_doc' => 'DOMDocument', @@ -4356,1102 +4356,1102 @@ 'is_xpath_param=' => 'bool', 'profile_filename=' => 'string', ), - 'DomXsltStylesheet::result_dump_file' => + 'domxsltstylesheet::result_dump_file' => array ( 0 => 'string', 'xmldoc' => 'DOMDocument', 'filename' => 'string', ), - 'DomXsltStylesheet::result_dump_mem' => + 'domxsltstylesheet::result_dump_mem' => array ( 0 => 'string', 'xmldoc' => 'DOMDocument', ), - 'DomainException::__clone' => + 'domainexception::__clone' => array ( 0 => 'void', ), - 'DomainException::__construct' => + 'domainexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'DomainException::__toString' => + 'domainexception::__tostring' => array ( 0 => 'string', ), - 'DomainException::__wakeup' => + 'domainexception::__wakeup' => array ( 0 => 'void', ), - 'DomainException::getCode' => + 'domainexception::getcode' => array ( 0 => 'int', ), - 'DomainException::getFile' => + 'domainexception::getfile' => array ( 0 => 'string', ), - 'DomainException::getLine' => + 'domainexception::getline' => array ( 0 => 'int', ), - 'DomainException::getMessage' => + 'domainexception::getmessage' => array ( 0 => 'string', ), - 'DomainException::getPrevious' => + 'domainexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'DomainException::getTrace' => + 'domainexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'DomainException::getTraceAsString' => + 'domainexception::gettraceasstring' => array ( 0 => 'string', ), - 'Ds\\Collection::clear' => + 'ds\\collection::clear' => array ( 0 => 'void', ), - 'Ds\\Collection::copy' => + 'ds\\collection::copy' => array ( 0 => 'Ds\\Collection', ), - 'Ds\\Collection::isEmpty' => + 'ds\\collection::isempty' => array ( 0 => 'bool', ), - 'Ds\\Collection::toArray' => + 'ds\\collection::toarray' => array ( 0 => 'array', ), - 'Ds\\Deque::__construct' => + 'ds\\deque::__construct' => array ( 0 => 'void', 'values=' => 'mixed', ), - 'Ds\\Deque::allocate' => + 'ds\\deque::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\Deque::apply' => + 'ds\\deque::apply' => array ( 0 => 'void', 'callback' => 'callable', ), - 'Ds\\Deque::capacity' => + 'ds\\deque::capacity' => array ( 0 => 'int', ), - 'Ds\\Deque::clear' => + 'ds\\deque::clear' => array ( 0 => 'void', ), - 'Ds\\Deque::contains' => + 'ds\\deque::contains' => array ( 0 => 'bool', '...values=' => 'mixed', ), - 'Ds\\Deque::copy' => + 'ds\\deque::copy' => array ( 0 => 'Ds\\Deque', ), - 'Ds\\Deque::count' => + 'ds\\deque::count' => array ( 0 => 'int', ), - 'Ds\\Deque::filter' => + 'ds\\deque::filter' => array ( 0 => 'Ds\\Deque', 'callback=' => 'callable', ), - 'Ds\\Deque::find' => + 'ds\\deque::find' => array ( 0 => 'mixed', 'value' => 'mixed', ), - 'Ds\\Deque::first' => + 'ds\\deque::first' => array ( 0 => 'mixed', ), - 'Ds\\Deque::get' => + 'ds\\deque::get' => array ( 0 => 'void', 'index' => 'int', ), - 'Ds\\Deque::insert' => + 'ds\\deque::insert' => array ( 0 => 'void', 'index' => 'int', '...values=' => 'mixed', ), - 'Ds\\Deque::isEmpty' => + 'ds\\deque::isempty' => array ( 0 => 'bool', ), - 'Ds\\Deque::join' => + 'ds\\deque::join' => array ( 0 => 'string', 'glue=' => 'string', ), - 'Ds\\Deque::jsonSerialize' => + 'ds\\deque::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\Deque::last' => + 'ds\\deque::last' => array ( 0 => 'mixed', ), - 'Ds\\Deque::map' => + 'ds\\deque::map' => array ( 0 => 'Ds\\Deque', 'callback' => 'callable', ), - 'Ds\\Deque::merge' => + 'ds\\deque::merge' => array ( 0 => 'Ds\\Deque', 'values' => 'mixed', ), - 'Ds\\Deque::pop' => + 'ds\\deque::pop' => array ( 0 => 'mixed', ), - 'Ds\\Deque::push' => + 'ds\\deque::push' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Deque::reduce' => + 'ds\\deque::reduce' => array ( 0 => 'mixed', 'callback' => 'callable', 'initial=' => 'mixed', ), - 'Ds\\Deque::remove' => + 'ds\\deque::remove' => array ( 0 => 'mixed', 'index' => 'int', ), - 'Ds\\Deque::reverse' => + 'ds\\deque::reverse' => array ( 0 => 'void', ), - 'Ds\\Deque::reversed' => + 'ds\\deque::reversed' => array ( 0 => 'Ds\\Deque', ), - 'Ds\\Deque::rotate' => + 'ds\\deque::rotate' => array ( 0 => 'void', 'rotations' => 'int', ), - 'Ds\\Deque::set' => + 'ds\\deque::set' => array ( 0 => 'void', 'index' => 'int', 'value' => 'mixed', ), - 'Ds\\Deque::shift' => + 'ds\\deque::shift' => array ( 0 => 'mixed', ), - 'Ds\\Deque::slice' => + 'ds\\deque::slice' => array ( 0 => 'Ds\\Deque', 'index' => 'int', 'length=' => 'int|null', ), - 'Ds\\Deque::sort' => + 'ds\\deque::sort' => array ( 0 => 'void', 'comparator=' => 'callable', ), - 'Ds\\Deque::sorted' => + 'ds\\deque::sorted' => array ( 0 => 'Ds\\Deque', 'comparator=' => 'callable', ), - 'Ds\\Deque::sum' => + 'ds\\deque::sum' => array ( 0 => 'float|int', ), - 'Ds\\Deque::toArray' => + 'ds\\deque::toarray' => array ( 0 => 'array', ), - 'Ds\\Deque::unshift' => + 'ds\\deque::unshift' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Hashable::equals' => + 'ds\\hashable::equals' => array ( 0 => 'bool', 'object' => 'mixed', ), - 'Ds\\Hashable::hash' => + 'ds\\hashable::hash' => array ( 0 => 'mixed', ), - 'Ds\\Map::__construct' => + 'ds\\map::__construct' => array ( 0 => 'void', 'values=' => 'mixed', ), - 'Ds\\Map::allocate' => + 'ds\\map::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\Map::apply' => + 'ds\\map::apply' => array ( 0 => 'void', 'callback' => 'callable', ), - 'Ds\\Map::capacity' => + 'ds\\map::capacity' => array ( 0 => 'int', ), - 'Ds\\Map::clear' => + 'ds\\map::clear' => array ( 0 => 'void', ), - 'Ds\\Map::copy' => + 'ds\\map::copy' => array ( 0 => 'Ds\\Map', ), - 'Ds\\Map::count' => + 'ds\\map::count' => array ( 0 => 'int', ), - 'Ds\\Map::diff' => + 'ds\\map::diff' => array ( 0 => 'Ds\\Map', 'map' => 'Ds\\Map', ), - 'Ds\\Map::filter' => + 'ds\\map::filter' => array ( 0 => 'Ds\\Map', 'callback=' => 'callable', ), - 'Ds\\Map::first' => + 'ds\\map::first' => array ( 0 => 'Ds\\Pair', ), - 'Ds\\Map::get' => + 'ds\\map::get' => array ( 0 => 'mixed', 'key' => 'mixed', 'default=' => 'mixed', ), - 'Ds\\Map::hasKey' => + 'ds\\map::haskey' => array ( 0 => 'bool', 'key' => 'mixed', ), - 'Ds\\Map::hasValue' => + 'ds\\map::hasvalue' => array ( 0 => 'bool', 'value' => 'mixed', ), - 'Ds\\Map::intersect' => + 'ds\\map::intersect' => array ( 0 => 'Ds\\Map', 'map' => 'Ds\\Map', ), - 'Ds\\Map::isEmpty' => + 'ds\\map::isempty' => array ( 0 => 'bool', ), - 'Ds\\Map::jsonSerialize' => + 'ds\\map::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\Map::keys' => + 'ds\\map::keys' => array ( 0 => 'Ds\\Set', ), - 'Ds\\Map::ksort' => + 'ds\\map::ksort' => array ( 0 => 'void', 'comparator=' => 'callable', ), - 'Ds\\Map::ksorted' => + 'ds\\map::ksorted' => array ( 0 => 'Ds\\Map', 'comparator=' => 'callable', ), - 'Ds\\Map::last' => + 'ds\\map::last' => array ( 0 => 'Ds\\Pair', ), - 'Ds\\Map::map' => + 'ds\\map::map' => array ( 0 => 'Ds\\Map', 'callback' => 'callable', ), - 'Ds\\Map::merge' => + 'ds\\map::merge' => array ( 0 => 'Ds\\Map', 'values' => 'mixed', ), - 'Ds\\Map::pairs' => + 'ds\\map::pairs' => array ( 0 => 'Ds\\Sequence', ), - 'Ds\\Map::put' => + 'ds\\map::put' => array ( 0 => 'void', 'key' => 'mixed', 'value' => 'mixed', ), - 'Ds\\Map::putAll' => + 'ds\\map::putall' => array ( 0 => 'void', 'values' => 'mixed', ), - 'Ds\\Map::reduce' => + 'ds\\map::reduce' => array ( 0 => 'mixed', 'callback' => 'callable', 'initial=' => 'mixed', ), - 'Ds\\Map::remove' => + 'ds\\map::remove' => array ( 0 => 'mixed', 'key' => 'mixed', 'default=' => 'mixed', ), - 'Ds\\Map::reverse' => + 'ds\\map::reverse' => array ( 0 => 'void', ), - 'Ds\\Map::reversed' => + 'ds\\map::reversed' => array ( 0 => 'Ds\\Map', ), - 'Ds\\Map::skip' => + 'ds\\map::skip' => array ( 0 => 'Ds\\Pair', 'position' => 'int', ), - 'Ds\\Map::slice' => + 'ds\\map::slice' => array ( 0 => 'Ds\\Map', 'index' => 'int', 'length=' => 'int|null', ), - 'Ds\\Map::sort' => + 'ds\\map::sort' => array ( 0 => 'void', 'comparator=' => 'callable', ), - 'Ds\\Map::sorted' => + 'ds\\map::sorted' => array ( 0 => 'Ds\\Map', 'comparator=' => 'callable', ), - 'Ds\\Map::sum' => + 'ds\\map::sum' => array ( 0 => 'float|int', ), - 'Ds\\Map::toArray' => + 'ds\\map::toarray' => array ( 0 => 'array', ), - 'Ds\\Map::union' => + 'ds\\map::union' => array ( 0 => 'Ds\\Map', 'map' => 'Ds\\Map', ), - 'Ds\\Map::values' => + 'ds\\map::values' => array ( 0 => 'Ds\\Sequence', ), - 'Ds\\Map::xor' => + 'ds\\map::xor' => array ( 0 => 'Ds\\Map', 'map' => 'Ds\\Map', ), - 'Ds\\Pair::__construct' => + 'ds\\pair::__construct' => array ( 0 => 'void', 'key=' => 'mixed', 'value=' => 'mixed', ), - 'Ds\\Pair::clear' => + 'ds\\pair::clear' => array ( 0 => 'void', ), - 'Ds\\Pair::copy' => + 'ds\\pair::copy' => array ( 0 => 'Ds\\Pair', ), - 'Ds\\Pair::isEmpty' => + 'ds\\pair::isempty' => array ( 0 => 'bool', ), - 'Ds\\Pair::jsonSerialize' => + 'ds\\pair::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\Pair::toArray' => + 'ds\\pair::toarray' => array ( 0 => 'array', ), - 'Ds\\PriorityQueue::__construct' => + 'ds\\priorityqueue::__construct' => array ( 0 => 'void', ), - 'Ds\\PriorityQueue::allocate' => + 'ds\\priorityqueue::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\PriorityQueue::capacity' => + 'ds\\priorityqueue::capacity' => array ( 0 => 'int', ), - 'Ds\\PriorityQueue::clear' => + 'ds\\priorityqueue::clear' => array ( 0 => 'void', ), - 'Ds\\PriorityQueue::copy' => + 'ds\\priorityqueue::copy' => array ( 0 => 'Ds\\PriorityQueue', ), - 'Ds\\PriorityQueue::count' => + 'ds\\priorityqueue::count' => array ( 0 => 'int', ), - 'Ds\\PriorityQueue::isEmpty' => + 'ds\\priorityqueue::isempty' => array ( 0 => 'bool', ), - 'Ds\\PriorityQueue::jsonSerialize' => + 'ds\\priorityqueue::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\PriorityQueue::peek' => + 'ds\\priorityqueue::peek' => array ( 0 => 'mixed', ), - 'Ds\\PriorityQueue::pop' => + 'ds\\priorityqueue::pop' => array ( 0 => 'mixed', ), - 'Ds\\PriorityQueue::push' => + 'ds\\priorityqueue::push' => array ( 0 => 'void', 'value' => 'mixed', 'priority' => 'int', ), - 'Ds\\PriorityQueue::toArray' => + 'ds\\priorityqueue::toarray' => array ( 0 => 'array', ), - 'Ds\\Queue::__construct' => + 'ds\\queue::__construct' => array ( 0 => 'void', 'values=' => 'mixed', ), - 'Ds\\Queue::allocate' => + 'ds\\queue::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\Queue::capacity' => + 'ds\\queue::capacity' => array ( 0 => 'int', ), - 'Ds\\Queue::clear' => + 'ds\\queue::clear' => array ( 0 => 'void', ), - 'Ds\\Queue::copy' => + 'ds\\queue::copy' => array ( 0 => 'Ds\\Queue', ), - 'Ds\\Queue::count' => + 'ds\\queue::count' => array ( 0 => 'int', ), - 'Ds\\Queue::isEmpty' => + 'ds\\queue::isempty' => array ( 0 => 'bool', ), - 'Ds\\Queue::jsonSerialize' => + 'ds\\queue::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\Queue::peek' => + 'ds\\queue::peek' => array ( 0 => 'mixed', ), - 'Ds\\Queue::pop' => + 'ds\\queue::pop' => array ( 0 => 'mixed', ), - 'Ds\\Queue::push' => + 'ds\\queue::push' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Queue::toArray' => + 'ds\\queue::toarray' => array ( 0 => 'array', ), - 'Ds\\Sequence::allocate' => + 'ds\\sequence::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\Sequence::apply' => + 'ds\\sequence::apply' => array ( 0 => 'void', 'callback' => 'callable', ), - 'Ds\\Sequence::capacity' => + 'ds\\sequence::capacity' => array ( 0 => 'int', ), - 'Ds\\Sequence::contains' => + 'ds\\sequence::contains' => array ( 0 => 'bool', '...values=' => 'mixed', ), - 'Ds\\Sequence::filter' => + 'ds\\sequence::filter' => array ( 0 => 'Ds\\Sequence', 'callback=' => 'callable', ), - 'Ds\\Sequence::find' => + 'ds\\sequence::find' => array ( 0 => 'mixed', 'value' => 'mixed', ), - 'Ds\\Sequence::first' => + 'ds\\sequence::first' => array ( 0 => 'mixed', ), - 'Ds\\Sequence::get' => + 'ds\\sequence::get' => array ( 0 => 'mixed', 'index' => 'int', ), - 'Ds\\Sequence::insert' => + 'ds\\sequence::insert' => array ( 0 => 'void', 'index' => 'int', '...values=' => 'mixed', ), - 'Ds\\Sequence::join' => + 'ds\\sequence::join' => array ( 0 => 'string', 'glue=' => 'string', ), - 'Ds\\Sequence::last' => + 'ds\\sequence::last' => array ( 0 => 'void', ), - 'Ds\\Sequence::map' => + 'ds\\sequence::map' => array ( 0 => 'Ds\\Sequence', 'callback' => 'callable', ), - 'Ds\\Sequence::merge' => + 'ds\\sequence::merge' => array ( 0 => 'Ds\\Sequence', 'values' => 'mixed', ), - 'Ds\\Sequence::pop' => + 'ds\\sequence::pop' => array ( 0 => 'mixed', ), - 'Ds\\Sequence::push' => + 'ds\\sequence::push' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Sequence::reduce' => + 'ds\\sequence::reduce' => array ( 0 => 'mixed', 'callback' => 'callable', 'initial=' => 'mixed', ), - 'Ds\\Sequence::remove' => + 'ds\\sequence::remove' => array ( 0 => 'mixed', 'index' => 'int', ), - 'Ds\\Sequence::reverse' => + 'ds\\sequence::reverse' => array ( 0 => 'void', ), - 'Ds\\Sequence::reversed' => + 'ds\\sequence::reversed' => array ( 0 => 'Ds\\Sequence', ), - 'Ds\\Sequence::rotate' => + 'ds\\sequence::rotate' => array ( 0 => 'void', 'rotations' => 'int', ), - 'Ds\\Sequence::set' => + 'ds\\sequence::set' => array ( 0 => 'void', 'index' => 'int', 'value' => 'mixed', ), - 'Ds\\Sequence::shift' => + 'ds\\sequence::shift' => array ( 0 => 'mixed', ), - 'Ds\\Sequence::slice' => + 'ds\\sequence::slice' => array ( 0 => 'Ds\\Sequence', 'index' => 'int', 'length=' => 'int|null', ), - 'Ds\\Sequence::sort' => + 'ds\\sequence::sort' => array ( 0 => 'void', 'comparator=' => 'callable', ), - 'Ds\\Sequence::sorted' => + 'ds\\sequence::sorted' => array ( 0 => 'Ds\\Sequence', 'comparator=' => 'callable', ), - 'Ds\\Sequence::sum' => + 'ds\\sequence::sum' => array ( 0 => 'float|int', ), - 'Ds\\Sequence::unshift' => + 'ds\\sequence::unshift' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Set::__construct' => + 'ds\\set::__construct' => array ( 0 => 'void', 'values=' => 'mixed', ), - 'Ds\\Set::add' => + 'ds\\set::add' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Set::allocate' => + 'ds\\set::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\Set::capacity' => + 'ds\\set::capacity' => array ( 0 => 'int', ), - 'Ds\\Set::clear' => + 'ds\\set::clear' => array ( 0 => 'void', ), - 'Ds\\Set::contains' => + 'ds\\set::contains' => array ( 0 => 'bool', '...values=' => 'mixed', ), - 'Ds\\Set::copy' => + 'ds\\set::copy' => array ( 0 => 'Ds\\Set', ), - 'Ds\\Set::count' => + 'ds\\set::count' => array ( 0 => 'int', ), - 'Ds\\Set::diff' => + 'ds\\set::diff' => array ( 0 => 'Ds\\Set', 'set' => 'Ds\\Set', ), - 'Ds\\Set::filter' => + 'ds\\set::filter' => array ( 0 => 'Ds\\Set', 'callback=' => 'callable', ), - 'Ds\\Set::first' => + 'ds\\set::first' => array ( 0 => 'mixed', ), - 'Ds\\Set::get' => + 'ds\\set::get' => array ( 0 => 'mixed', 'index' => 'int', ), - 'Ds\\Set::intersect' => + 'ds\\set::intersect' => array ( 0 => 'Ds\\Set', 'set' => 'Ds\\Set', ), - 'Ds\\Set::isEmpty' => + 'ds\\set::isempty' => array ( 0 => 'bool', ), - 'Ds\\Set::join' => + 'ds\\set::join' => array ( 0 => 'string', 'glue=' => 'string', ), - 'Ds\\Set::jsonSerialize' => + 'ds\\set::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\Set::last' => + 'ds\\set::last' => array ( 0 => 'mixed', ), - 'Ds\\Set::merge' => + 'ds\\set::merge' => array ( 0 => 'Ds\\Set', 'values' => 'mixed', ), - 'Ds\\Set::reduce' => + 'ds\\set::reduce' => array ( 0 => 'mixed', 'callback' => 'callable', 'initial=' => 'mixed', ), - 'Ds\\Set::remove' => + 'ds\\set::remove' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Set::reverse' => + 'ds\\set::reverse' => array ( 0 => 'void', ), - 'Ds\\Set::reversed' => + 'ds\\set::reversed' => array ( 0 => 'Ds\\Set', ), - 'Ds\\Set::slice' => + 'ds\\set::slice' => array ( 0 => 'Ds\\Set', 'index' => 'int', 'length=' => 'int|null', ), - 'Ds\\Set::sort' => + 'ds\\set::sort' => array ( 0 => 'void', 'comparator=' => 'callable', ), - 'Ds\\Set::sorted' => + 'ds\\set::sorted' => array ( 0 => 'Ds\\Set', 'comparator=' => 'callable', ), - 'Ds\\Set::sum' => + 'ds\\set::sum' => array ( 0 => 'float|int', ), - 'Ds\\Set::toArray' => + 'ds\\set::toarray' => array ( 0 => 'array', ), - 'Ds\\Set::union' => + 'ds\\set::union' => array ( 0 => 'Ds\\Set', 'set' => 'Ds\\Set', ), - 'Ds\\Set::xor' => + 'ds\\set::xor' => array ( 0 => 'Ds\\Set', 'set' => 'Ds\\Set', ), - 'Ds\\Stack::__construct' => + 'ds\\stack::__construct' => array ( 0 => 'void', 'values=' => 'mixed', ), - 'Ds\\Stack::allocate' => + 'ds\\stack::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\Stack::capacity' => + 'ds\\stack::capacity' => array ( 0 => 'int', ), - 'Ds\\Stack::clear' => + 'ds\\stack::clear' => array ( 0 => 'void', ), - 'Ds\\Stack::copy' => + 'ds\\stack::copy' => array ( 0 => 'Ds\\Stack', ), - 'Ds\\Stack::count' => + 'ds\\stack::count' => array ( 0 => 'int', ), - 'Ds\\Stack::isEmpty' => + 'ds\\stack::isempty' => array ( 0 => 'bool', ), - 'Ds\\Stack::jsonSerialize' => + 'ds\\stack::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\Stack::peek' => + 'ds\\stack::peek' => array ( 0 => 'mixed', ), - 'Ds\\Stack::pop' => + 'ds\\stack::pop' => array ( 0 => 'mixed', ), - 'Ds\\Stack::push' => + 'ds\\stack::push' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Stack::toArray' => + 'ds\\stack::toarray' => array ( 0 => 'array', ), - 'Ds\\Vector::__construct' => + 'ds\\vector::__construct' => array ( 0 => 'void', 'values=' => 'mixed', ), - 'Ds\\Vector::allocate' => + 'ds\\vector::allocate' => array ( 0 => 'void', 'capacity' => 'int', ), - 'Ds\\Vector::apply' => + 'ds\\vector::apply' => array ( 0 => 'void', 'callback' => 'callable', ), - 'Ds\\Vector::capacity' => + 'ds\\vector::capacity' => array ( 0 => 'int', ), - 'Ds\\Vector::clear' => + 'ds\\vector::clear' => array ( 0 => 'void', ), - 'Ds\\Vector::contains' => + 'ds\\vector::contains' => array ( 0 => 'bool', '...values=' => 'mixed', ), - 'Ds\\Vector::copy' => + 'ds\\vector::copy' => array ( 0 => 'Ds\\Vector', ), - 'Ds\\Vector::count' => + 'ds\\vector::count' => array ( 0 => 'int', ), - 'Ds\\Vector::filter' => + 'ds\\vector::filter' => array ( 0 => 'Ds\\Vector', 'callback=' => 'callable', ), - 'Ds\\Vector::find' => + 'ds\\vector::find' => array ( 0 => 'mixed', 'value' => 'mixed', ), - 'Ds\\Vector::first' => + 'ds\\vector::first' => array ( 0 => 'mixed', ), - 'Ds\\Vector::get' => + 'ds\\vector::get' => array ( 0 => 'mixed', 'index' => 'int', ), - 'Ds\\Vector::insert' => + 'ds\\vector::insert' => array ( 0 => 'void', 'index' => 'int', '...values=' => 'mixed', ), - 'Ds\\Vector::isEmpty' => + 'ds\\vector::isempty' => array ( 0 => 'bool', ), - 'Ds\\Vector::join' => + 'ds\\vector::join' => array ( 0 => 'string', 'glue=' => 'string', ), - 'Ds\\Vector::jsonSerialize' => + 'ds\\vector::jsonserialize' => array ( 0 => 'array', ), - 'Ds\\Vector::last' => + 'ds\\vector::last' => array ( 0 => 'mixed', ), - 'Ds\\Vector::map' => + 'ds\\vector::map' => array ( 0 => 'Ds\\Vector', 'callback' => 'callable', ), - 'Ds\\Vector::merge' => + 'ds\\vector::merge' => array ( 0 => 'Ds\\Vector', 'values' => 'mixed', ), - 'Ds\\Vector::pop' => + 'ds\\vector::pop' => array ( 0 => 'mixed', ), - 'Ds\\Vector::push' => + 'ds\\vector::push' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'Ds\\Vector::reduce' => + 'ds\\vector::reduce' => array ( 0 => 'mixed', 'callback' => 'callable', 'initial=' => 'mixed', ), - 'Ds\\Vector::remove' => + 'ds\\vector::remove' => array ( 0 => 'mixed', 'index' => 'int', ), - 'Ds\\Vector::reverse' => + 'ds\\vector::reverse' => array ( 0 => 'void', ), - 'Ds\\Vector::reversed' => + 'ds\\vector::reversed' => array ( 0 => 'Ds\\Vector', ), - 'Ds\\Vector::rotate' => + 'ds\\vector::rotate' => array ( 0 => 'void', 'rotations' => 'int', ), - 'Ds\\Vector::set' => + 'ds\\vector::set' => array ( 0 => 'void', 'index' => 'int', 'value' => 'mixed', ), - 'Ds\\Vector::shift' => + 'ds\\vector::shift' => array ( 0 => 'mixed', ), - 'Ds\\Vector::slice' => + 'ds\\vector::slice' => array ( 0 => 'Ds\\Vector', 'index' => 'int', 'length=' => 'int|null', ), - 'Ds\\Vector::sort' => + 'ds\\vector::sort' => array ( 0 => 'void', 'comparator=' => 'callable', ), - 'Ds\\Vector::sorted' => + 'ds\\vector::sorted' => array ( 0 => 'Ds\\Vector', 'comparator=' => 'callable', ), - 'Ds\\Vector::sum' => + 'ds\\vector::sum' => array ( 0 => 'float|int', ), - 'Ds\\Vector::toArray' => + 'ds\\vector::toarray' => array ( 0 => 'array', ), - 'Ds\\Vector::unshift' => + 'ds\\vector::unshift' => array ( 0 => 'void', '...values=' => 'mixed', ), - 'EmptyIterator::current' => + 'emptyiterator::current' => array ( 0 => 'never', ), - 'EmptyIterator::key' => + 'emptyiterator::key' => array ( 0 => 'never', ), - 'EmptyIterator::next' => + 'emptyiterator::next' => array ( 0 => 'void', ), - 'EmptyIterator::rewind' => + 'emptyiterator::rewind' => array ( 0 => 'void', ), - 'EmptyIterator::valid' => + 'emptyiterator::valid' => array ( 0 => 'false', ), - 'Error::__clone' => + 'error::__clone' => array ( 0 => 'void', ), - 'Error::__construct' => + 'error::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'Error::__toString' => + 'error::__tostring' => array ( 0 => 'string', ), - 'Error::getCode' => + 'error::getcode' => array ( 0 => 'int', ), - 'Error::getFile' => + 'error::getfile' => array ( 0 => 'string', ), - 'Error::getLine' => + 'error::getline' => array ( 0 => 'int', ), - 'Error::getMessage' => + 'error::getmessage' => array ( 0 => 'string', ), - 'Error::getPrevious' => + 'error::getprevious' => array ( 0 => 'Throwable|null', ), - 'Error::getTrace' => + 'error::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'Error::getTraceAsString' => + 'error::gettraceasstring' => array ( 0 => 'string', ), - 'ErrorException::__clone' => + 'errorexception::__clone' => array ( 0 => 'void', ), - 'ErrorException::__construct' => + 'errorexception::__construct' => array ( 0 => 'void', 'message=' => 'string', @@ -5461,166 +5461,166 @@ 'line=' => 'int', 'previous=' => 'Throwable|null', ), - 'ErrorException::__toString' => + 'errorexception::__tostring' => array ( 0 => 'string', ), - 'ErrorException::getCode' => + 'errorexception::getcode' => array ( 0 => 'int', ), - 'ErrorException::getFile' => + 'errorexception::getfile' => array ( 0 => 'string', ), - 'ErrorException::getLine' => + 'errorexception::getline' => array ( 0 => 'int', ), - 'ErrorException::getMessage' => + 'errorexception::getmessage' => array ( 0 => 'string', ), - 'ErrorException::getPrevious' => + 'errorexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'ErrorException::getSeverity' => + 'errorexception::getseverity' => array ( 0 => 'int', ), - 'ErrorException::getTrace' => + 'errorexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'ErrorException::getTraceAsString' => + 'errorexception::gettraceasstring' => array ( 0 => 'string', ), - 'Ev::backend' => + 'ev::backend' => array ( 0 => 'int', ), - 'Ev::depth' => + 'ev::depth' => array ( 0 => 'int', ), - 'Ev::embeddableBackends' => + 'ev::embeddablebackends' => array ( 0 => 'int', ), - 'Ev::feedSignal' => + 'ev::feedsignal' => array ( 0 => 'void', 'signum' => 'int', ), - 'Ev::feedSignalEvent' => + 'ev::feedsignalevent' => array ( 0 => 'void', 'signum' => 'int', ), - 'Ev::iteration' => + 'ev::iteration' => array ( 0 => 'int', ), - 'Ev::now' => + 'ev::now' => array ( 0 => 'float', ), - 'Ev::nowUpdate' => + 'ev::nowupdate' => array ( 0 => 'void', ), - 'Ev::recommendedBackends' => + 'ev::recommendedbackends' => array ( 0 => 'int', ), - 'Ev::resume' => + 'ev::resume' => array ( 0 => 'void', ), - 'Ev::run' => + 'ev::run' => array ( 0 => 'void', 'flags=' => 'int', ), - 'Ev::sleep' => + 'ev::sleep' => array ( 0 => 'void', 'seconds' => 'float', ), - 'Ev::stop' => + 'ev::stop' => array ( 0 => 'void', 'how=' => 'int', ), - 'Ev::supportedBackends' => + 'ev::supportedbackends' => array ( 0 => 'int', ), - 'Ev::suspend' => + 'ev::suspend' => array ( 0 => 'void', ), - 'Ev::time' => + 'ev::time' => array ( 0 => 'float', ), - 'Ev::verify' => + 'ev::verify' => array ( 0 => 'void', ), - 'EvCheck::__construct' => + 'evcheck::__construct' => array ( 0 => 'void', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvCheck::clear' => + 'evcheck::clear' => array ( 0 => 'int', ), - 'EvCheck::createStopped' => + 'evcheck::createstopped' => array ( 0 => 'EvCheck', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvCheck::feed' => + 'evcheck::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvCheck::getLoop' => + 'evcheck::getloop' => array ( 0 => 'EvLoop', ), - 'EvCheck::invoke' => + 'evcheck::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvCheck::keepAlive' => + 'evcheck::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvCheck::setCallback' => + 'evcheck::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvCheck::start' => + 'evcheck::start' => array ( 0 => 'void', ), - 'EvCheck::stop' => + 'evcheck::stop' => array ( 0 => 'void', ), - 'EvChild::__construct' => + 'evchild::__construct' => array ( 0 => 'void', 'pid' => 'int', @@ -5629,11 +5629,11 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvChild::clear' => + 'evchild::clear' => array ( 0 => 'int', ), - 'EvChild::createStopped' => + 'evchild::createstopped' => array ( 0 => 'EvChild', 'pid' => 'int', @@ -5642,45 +5642,45 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvChild::feed' => + 'evchild::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvChild::getLoop' => + 'evchild::getloop' => array ( 0 => 'EvLoop', ), - 'EvChild::invoke' => + 'evchild::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvChild::keepAlive' => + 'evchild::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvChild::set' => + 'evchild::set' => array ( 0 => 'void', 'pid' => 'int', 'trace' => 'bool', ), - 'EvChild::setCallback' => + 'evchild::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvChild::start' => + 'evchild::start' => array ( 0 => 'void', ), - 'EvChild::stop' => + 'evchild::stop' => array ( 0 => 'void', ), - 'EvEmbed::__construct' => + 'evembed::__construct' => array ( 0 => 'void', 'other' => 'object', @@ -5688,11 +5688,11 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvEmbed::clear' => + 'evembed::clear' => array ( 0 => 'int', ), - 'EvEmbed::createStopped' => + 'evembed::createstopped' => array ( 0 => 'EvEmbed', 'other' => 'object', @@ -5700,148 +5700,148 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvEmbed::feed' => + 'evembed::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvEmbed::getLoop' => + 'evembed::getloop' => array ( 0 => 'EvLoop', ), - 'EvEmbed::invoke' => + 'evembed::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvEmbed::keepAlive' => + 'evembed::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvEmbed::set' => + 'evembed::set' => array ( 0 => 'void', 'other' => 'object', ), - 'EvEmbed::setCallback' => + 'evembed::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvEmbed::start' => + 'evembed::start' => array ( 0 => 'void', ), - 'EvEmbed::stop' => + 'evembed::stop' => array ( 0 => 'void', ), - 'EvEmbed::sweep' => + 'evembed::sweep' => array ( 0 => 'void', ), - 'EvFork::__construct' => + 'evfork::__construct' => array ( 0 => 'void', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvFork::clear' => + 'evfork::clear' => array ( 0 => 'int', ), - 'EvFork::createStopped' => + 'evfork::createstopped' => array ( 0 => 'EvFork', 'callback' => 'callable', 'data=' => 'string', 'priority=' => 'string', ), - 'EvFork::feed' => + 'evfork::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvFork::getLoop' => + 'evfork::getloop' => array ( 0 => 'EvLoop', ), - 'EvFork::invoke' => + 'evfork::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvFork::keepAlive' => + 'evfork::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvFork::setCallback' => + 'evfork::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvFork::start' => + 'evfork::start' => array ( 0 => 'void', ), - 'EvFork::stop' => + 'evfork::stop' => array ( 0 => 'void', ), - 'EvIdle::__construct' => + 'evidle::__construct' => array ( 0 => 'void', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvIdle::clear' => + 'evidle::clear' => array ( 0 => 'int', ), - 'EvIdle::createStopped' => + 'evidle::createstopped' => array ( 0 => 'EvIdle', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvIdle::feed' => + 'evidle::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvIdle::getLoop' => + 'evidle::getloop' => array ( 0 => 'EvLoop', ), - 'EvIdle::invoke' => + 'evidle::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvIdle::keepAlive' => + 'evidle::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvIdle::setCallback' => + 'evidle::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvIdle::start' => + 'evidle::start' => array ( 0 => 'void', ), - 'EvIdle::stop' => + 'evidle::stop' => array ( 0 => 'void', ), - 'EvIo::__construct' => + 'evio::__construct' => array ( 0 => 'void', 'fd' => 'mixed', @@ -5850,11 +5850,11 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvIo::clear' => + 'evio::clear' => array ( 0 => 'int', ), - 'EvIo::createStopped' => + 'evio::createstopped' => array ( 0 => 'EvIo', 'fd' => 'resource', @@ -5863,45 +5863,45 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvIo::feed' => + 'evio::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvIo::getLoop' => + 'evio::getloop' => array ( 0 => 'EvLoop', ), - 'EvIo::invoke' => + 'evio::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvIo::keepAlive' => + 'evio::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvIo::set' => + 'evio::set' => array ( 0 => 'void', 'fd' => 'resource', 'events' => 'int', ), - 'EvIo::setCallback' => + 'evio::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvIo::start' => + 'evio::start' => array ( 0 => 'void', ), - 'EvIo::stop' => + 'evio::stop' => array ( 0 => 'void', ), - 'EvLoop::__construct' => + 'evloop::__construct' => array ( 0 => 'void', 'flags=' => 'int', @@ -5909,18 +5909,18 @@ 'io_interval=' => 'float', 'timeout_interval=' => 'float', ), - 'EvLoop::backend' => + 'evloop::backend' => array ( 0 => 'int', ), - 'EvLoop::check' => + 'evloop::check' => array ( 0 => 'EvCheck', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::child' => + 'evloop::child' => array ( 0 => 'EvChild', 'pid' => 'int', @@ -5929,7 +5929,7 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::defaultLoop' => + 'evloop::defaultloop' => array ( 0 => 'EvLoop', 'flags=' => 'int', @@ -5937,7 +5937,7 @@ 'io_interval=' => 'float', 'timeout_interval=' => 'float', ), - 'EvLoop::embed' => + 'evloop::embed' => array ( 0 => 'EvEmbed', 'other' => 'EvLoop', @@ -5945,25 +5945,25 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::fork' => + 'evloop::fork' => array ( 0 => 'EvFork', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::idle' => + 'evloop::idle' => array ( 0 => 'EvIdle', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::invokePending' => + 'evloop::invokepending' => array ( 0 => 'void', ), - 'EvLoop::io' => + 'evloop::io' => array ( 0 => 'EvIo', 'fd' => 'resource', @@ -5972,19 +5972,19 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::loopFork' => + 'evloop::loopfork' => array ( 0 => 'void', ), - 'EvLoop::now' => + 'evloop::now' => array ( 0 => 'float', ), - 'EvLoop::nowUpdate' => + 'evloop::nowupdate' => array ( 0 => 'void', ), - 'EvLoop::periodic' => + 'evloop::periodic' => array ( 0 => 'EvPeriodic', 'offset' => 'float', @@ -5993,23 +5993,23 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::prepare' => + 'evloop::prepare' => array ( 0 => 'EvPrepare', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::resume' => + 'evloop::resume' => array ( 0 => 'void', ), - 'EvLoop::run' => + 'evloop::run' => array ( 0 => 'void', 'flags=' => 'int', ), - 'EvLoop::signal' => + 'evloop::signal' => array ( 0 => 'EvSignal', 'signum' => 'int', @@ -6017,7 +6017,7 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::stat' => + 'evloop::stat' => array ( 0 => 'EvStat', 'path' => 'string', @@ -6026,16 +6026,16 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::stop' => + 'evloop::stop' => array ( 0 => 'void', 'how=' => 'int', ), - 'EvLoop::suspend' => + 'evloop::suspend' => array ( 0 => 'void', ), - 'EvLoop::timer' => + 'evloop::timer' => array ( 0 => 'EvTimer', 'after' => 'float', @@ -6044,11 +6044,11 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvLoop::verify' => + 'evloop::verify' => array ( 0 => 'void', ), - 'EvPeriodic::__construct' => + 'evperiodic::__construct' => array ( 0 => 'void', 'offset' => 'float', @@ -6058,19 +6058,19 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvPeriodic::again' => + 'evperiodic::again' => array ( 0 => 'void', ), - 'EvPeriodic::at' => + 'evperiodic::at' => array ( 0 => 'float', ), - 'EvPeriodic::clear' => + 'evperiodic::clear' => array ( 0 => 'int', ), - 'EvPeriodic::createStopped' => + 'evperiodic::createstopped' => array ( 0 => 'EvPeriodic', 'offset' => 'float', @@ -6080,95 +6080,95 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvPeriodic::feed' => + 'evperiodic::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvPeriodic::getLoop' => + 'evperiodic::getloop' => array ( 0 => 'EvLoop', ), - 'EvPeriodic::invoke' => + 'evperiodic::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvPeriodic::keepAlive' => + 'evperiodic::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvPeriodic::set' => + 'evperiodic::set' => array ( 0 => 'void', 'offset' => 'float', 'interval' => 'float', ), - 'EvPeriodic::setCallback' => + 'evperiodic::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvPeriodic::start' => + 'evperiodic::start' => array ( 0 => 'void', ), - 'EvPeriodic::stop' => + 'evperiodic::stop' => array ( 0 => 'void', ), - 'EvPrepare::__construct' => + 'evprepare::__construct' => array ( 0 => 'void', 'callback' => 'string', 'data=' => 'string', 'priority=' => 'string', ), - 'EvPrepare::clear' => + 'evprepare::clear' => array ( 0 => 'int', ), - 'EvPrepare::createStopped' => + 'evprepare::createstopped' => array ( 0 => 'EvPrepare', 'callback' => 'callable', 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvPrepare::feed' => + 'evprepare::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvPrepare::getLoop' => + 'evprepare::getloop' => array ( 0 => 'EvLoop', ), - 'EvPrepare::invoke' => + 'evprepare::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvPrepare::keepAlive' => + 'evprepare::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvPrepare::setCallback' => + 'evprepare::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvPrepare::start' => + 'evprepare::start' => array ( 0 => 'void', ), - 'EvPrepare::stop' => + 'evprepare::stop' => array ( 0 => 'void', ), - 'EvSignal::__construct' => + 'evsignal::__construct' => array ( 0 => 'void', 'signum' => 'int', @@ -6176,11 +6176,11 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvSignal::clear' => + 'evsignal::clear' => array ( 0 => 'int', ), - 'EvSignal::createStopped' => + 'evsignal::createstopped' => array ( 0 => 'EvSignal', 'signum' => 'int', @@ -6188,44 +6188,44 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvSignal::feed' => + 'evsignal::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvSignal::getLoop' => + 'evsignal::getloop' => array ( 0 => 'EvLoop', ), - 'EvSignal::invoke' => + 'evsignal::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvSignal::keepAlive' => + 'evsignal::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvSignal::set' => + 'evsignal::set' => array ( 0 => 'void', 'signum' => 'int', ), - 'EvSignal::setCallback' => + 'evsignal::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvSignal::start' => + 'evsignal::start' => array ( 0 => 'void', ), - 'EvSignal::stop' => + 'evsignal::stop' => array ( 0 => 'void', ), - 'EvStat::__construct' => + 'evstat::__construct' => array ( 0 => 'void', 'path' => 'string', @@ -6234,15 +6234,15 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvStat::attr' => + 'evstat::attr' => array ( 0 => 'array', ), - 'EvStat::clear' => + 'evstat::clear' => array ( 0 => 'int', ), - 'EvStat::createStopped' => + 'evstat::createstopped' => array ( 0 => 'EvStat', 'path' => 'string', @@ -6251,53 +6251,53 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvStat::feed' => + 'evstat::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvStat::getLoop' => + 'evstat::getloop' => array ( 0 => 'EvLoop', ), - 'EvStat::invoke' => + 'evstat::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvStat::keepAlive' => + 'evstat::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvStat::prev' => + 'evstat::prev' => array ( 0 => 'array', ), - 'EvStat::set' => + 'evstat::set' => array ( 0 => 'void', 'path' => 'string', 'interval' => 'float', ), - 'EvStat::setCallback' => + 'evstat::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvStat::start' => + 'evstat::start' => array ( 0 => 'void', ), - 'EvStat::stat' => + 'evstat::stat' => array ( 0 => 'bool', ), - 'EvStat::stop' => + 'evstat::stop' => array ( 0 => 'void', ), - 'EvTimer::__construct' => + 'evtimer::__construct' => array ( 0 => 'void', 'after' => 'float', @@ -6306,15 +6306,15 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvTimer::again' => + 'evtimer::again' => array ( 0 => 'void', ), - 'EvTimer::clear' => + 'evtimer::clear' => array ( 0 => 'int', ), - 'EvTimer::createStopped' => + 'evtimer::createstopped' => array ( 0 => 'EvTimer', 'after' => 'float', @@ -6323,85 +6323,85 @@ 'data=' => 'mixed', 'priority=' => 'int', ), - 'EvTimer::feed' => + 'evtimer::feed' => array ( 0 => 'void', 'events' => 'int', ), - 'EvTimer::getLoop' => + 'evtimer::getloop' => array ( 0 => 'EvLoop', ), - 'EvTimer::invoke' => + 'evtimer::invoke' => array ( 0 => 'void', 'events' => 'int', ), - 'EvTimer::keepAlive' => + 'evtimer::keepalive' => array ( 0 => 'void', 'value' => 'bool', ), - 'EvTimer::set' => + 'evtimer::set' => array ( 0 => 'void', 'after' => 'float', 'repeat' => 'float', ), - 'EvTimer::setCallback' => + 'evtimer::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvTimer::start' => + 'evtimer::start' => array ( 0 => 'void', ), - 'EvTimer::stop' => + 'evtimer::stop' => array ( 0 => 'void', ), - 'EvWatcher::__construct' => + 'evwatcher::__construct' => array ( 0 => 'void', ), - 'EvWatcher::clear' => + 'evwatcher::clear' => array ( 0 => 'int', ), - 'EvWatcher::feed' => + 'evwatcher::feed' => array ( 0 => 'void', 'revents' => 'int', ), - 'EvWatcher::getLoop' => + 'evwatcher::getloop' => array ( 0 => 'EvLoop', ), - 'EvWatcher::invoke' => + 'evwatcher::invoke' => array ( 0 => 'void', 'revents' => 'int', ), - 'EvWatcher::keepalive' => + 'evwatcher::keepalive' => array ( 0 => 'bool', 'value=' => 'bool', ), - 'EvWatcher::setCallback' => + 'evwatcher::setcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'EvWatcher::start' => + 'evwatcher::start' => array ( 0 => 'void', ), - 'EvWatcher::stop' => + 'evwatcher::stop' => array ( 0 => 'void', ), - 'Event::__construct' => + 'event::__construct' => array ( 0 => 'void', 'base' => 'EventBase', @@ -6410,47 +6410,47 @@ 'cb' => 'callable', 'arg=' => 'mixed', ), - 'Event::add' => + 'event::add' => array ( 0 => 'bool', 'timeout=' => 'float', ), - 'Event::addSignal' => + 'event::addsignal' => array ( 0 => 'bool', 'timeout=' => 'float', ), - 'Event::addTimer' => + 'event::addtimer' => array ( 0 => 'bool', 'timeout=' => 'float', ), - 'Event::del' => + 'event::del' => array ( 0 => 'bool', ), - 'Event::delSignal' => + 'event::delsignal' => array ( 0 => 'bool', ), - 'Event::delTimer' => + 'event::deltimer' => array ( 0 => 'bool', ), - 'Event::free' => + 'event::free' => array ( 0 => 'void', ), - 'Event::getSupportedMethods' => + 'event::getsupportedmethods' => array ( 0 => 'array', ), - 'Event::pending' => + 'event::pending' => array ( 0 => 'bool', 'flags' => 'int', ), - 'Event::set' => + 'event::set' => array ( 0 => 'bool', 'base' => 'EventBase', @@ -6459,19 +6459,19 @@ 'cb=' => 'callable', 'arg=' => 'mixed', ), - 'Event::setPriority' => + 'event::setpriority' => array ( 0 => 'bool', 'priority' => 'int', ), - 'Event::setTimer' => + 'event::settimer' => array ( 0 => 'bool', 'base' => 'EventBase', 'cb' => 'callable', 'arg=' => 'mixed', ), - 'Event::signal' => + 'event::signal' => array ( 0 => 'Event', 'base' => 'EventBase', @@ -6479,185 +6479,185 @@ 'cb' => 'callable', 'arg=' => 'mixed', ), - 'Event::timer' => + 'event::timer' => array ( 0 => 'Event', 'base' => 'EventBase', 'cb' => 'callable', 'arg=' => 'mixed', ), - 'EventBase::__construct' => + 'eventbase::__construct' => array ( 0 => 'void', 'cfg=' => 'EventConfig', ), - 'EventBase::dispatch' => + 'eventbase::dispatch' => array ( 0 => 'void', ), - 'EventBase::exit' => + 'eventbase::exit' => array ( 0 => 'bool', 'timeout=' => 'float', ), - 'EventBase::free' => + 'eventbase::free' => array ( 0 => 'void', ), - 'EventBase::getFeatures' => + 'eventbase::getfeatures' => array ( 0 => 'int', ), - 'EventBase::getMethod' => + 'eventbase::getmethod' => array ( 0 => 'string', 'cfg=' => 'EventConfig', ), - 'EventBase::getTimeOfDayCached' => + 'eventbase::gettimeofdaycached' => array ( 0 => 'float', ), - 'EventBase::gotExit' => + 'eventbase::gotexit' => array ( 0 => 'bool', ), - 'EventBase::gotStop' => + 'eventbase::gotstop' => array ( 0 => 'bool', ), - 'EventBase::loop' => + 'eventbase::loop' => array ( 0 => 'bool', 'flags=' => 'int', ), - 'EventBase::priorityInit' => + 'eventbase::priorityinit' => array ( 0 => 'bool', 'n_priorities' => 'int', ), - 'EventBase::reInit' => + 'eventbase::reinit' => array ( 0 => 'bool', ), - 'EventBase::stop' => + 'eventbase::stop' => array ( 0 => 'bool', ), - 'EventBuffer::__construct' => + 'eventbuffer::__construct' => array ( 0 => 'void', ), - 'EventBuffer::add' => + 'eventbuffer::add' => array ( 0 => 'bool', 'data' => 'string', ), - 'EventBuffer::addBuffer' => + 'eventbuffer::addbuffer' => array ( 0 => 'bool', 'buf' => 'EventBuffer', ), - 'EventBuffer::appendFrom' => + 'eventbuffer::appendfrom' => array ( 0 => 'int', 'buf' => 'EventBuffer', 'length' => 'int', ), - 'EventBuffer::copyout' => + 'eventbuffer::copyout' => array ( 0 => 'int', '&w_data' => 'string', 'max_bytes' => 'int', ), - 'EventBuffer::drain' => + 'eventbuffer::drain' => array ( 0 => 'bool', 'length' => 'int', ), - 'EventBuffer::enableLocking' => + 'eventbuffer::enablelocking' => array ( 0 => 'void', ), - 'EventBuffer::expand' => + 'eventbuffer::expand' => array ( 0 => 'bool', 'length' => 'int', ), - 'EventBuffer::freeze' => + 'eventbuffer::freeze' => array ( 0 => 'bool', 'at_front' => 'bool', ), - 'EventBuffer::lock' => + 'eventbuffer::lock' => array ( 0 => 'void', ), - 'EventBuffer::prepend' => + 'eventbuffer::prepend' => array ( 0 => 'bool', 'data' => 'string', ), - 'EventBuffer::prependBuffer' => + 'eventbuffer::prependbuffer' => array ( 0 => 'bool', 'buf' => 'EventBuffer', ), - 'EventBuffer::pullup' => + 'eventbuffer::pullup' => array ( 0 => 'string', 'size' => 'int', ), - 'EventBuffer::read' => + 'eventbuffer::read' => array ( 0 => 'string', 'max_bytes' => 'int', ), - 'EventBuffer::readFrom' => + 'eventbuffer::readfrom' => array ( 0 => 'int', 'fd' => 'mixed', 'howmuch' => 'int', ), - 'EventBuffer::readLine' => + 'eventbuffer::readline' => array ( 0 => 'string', 'eol_style' => 'int', ), - 'EventBuffer::search' => + 'eventbuffer::search' => array ( 0 => 'mixed', 'what' => 'string', 'start=' => 'int', 'end=' => 'int', ), - 'EventBuffer::searchEol' => + 'eventbuffer::searcheol' => array ( 0 => 'mixed', 'start=' => 'int', 'eol_style=' => 'int', ), - 'EventBuffer::substr' => + 'eventbuffer::substr' => array ( 0 => 'string', 'start' => 'int', 'length=' => 'int', ), - 'EventBuffer::unfreeze' => + 'eventbuffer::unfreeze' => array ( 0 => 'bool', 'at_front' => 'bool', ), - 'EventBuffer::unlock' => + 'eventbuffer::unlock' => array ( 0 => 'bool', ), - 'EventBuffer::write' => + 'eventbuffer::write' => array ( 0 => 'int', 'fd' => 'mixed', 'howmuch=' => 'int', ), - 'EventBufferEvent::__construct' => + 'eventbufferevent::__construct' => array ( 0 => 'void', 'base' => 'EventBase', @@ -6667,16 +6667,16 @@ 'writecb=' => 'callable', 'eventcb=' => 'callable', ), - 'EventBufferEvent::close' => + 'eventbufferevent::close' => array ( 0 => 'void', ), - 'EventBufferEvent::connect' => + 'eventbufferevent::connect' => array ( 0 => 'bool', 'addr' => 'string', ), - 'EventBufferEvent::connectHost' => + 'eventbufferevent::connecthost' => array ( 0 => 'bool', 'dns_base' => 'EventDnsBase', @@ -6684,53 +6684,53 @@ 'port' => 'int', 'family=' => 'int', ), - 'EventBufferEvent::createPair' => + 'eventbufferevent::createpair' => array ( 0 => 'array', 'base' => 'EventBase', 'options=' => 'int', ), - 'EventBufferEvent::disable' => + 'eventbufferevent::disable' => array ( 0 => 'bool', 'events' => 'int', ), - 'EventBufferEvent::enable' => + 'eventbufferevent::enable' => array ( 0 => 'bool', 'events' => 'int', ), - 'EventBufferEvent::free' => + 'eventbufferevent::free' => array ( 0 => 'void', ), - 'EventBufferEvent::getDnsErrorString' => + 'eventbufferevent::getdnserrorstring' => array ( 0 => 'string', ), - 'EventBufferEvent::getEnabled' => + 'eventbufferevent::getenabled' => array ( 0 => 'int', ), - 'EventBufferEvent::getInput' => + 'eventbufferevent::getinput' => array ( 0 => 'EventBuffer', ), - 'EventBufferEvent::getOutput' => + 'eventbufferevent::getoutput' => array ( 0 => 'EventBuffer', ), - 'EventBufferEvent::read' => + 'eventbufferevent::read' => array ( 0 => 'string', 'size' => 'int', ), - 'EventBufferEvent::readBuffer' => + 'eventbufferevent::readbuffer' => array ( 0 => 'bool', 'buf' => 'EventBuffer', ), - 'EventBufferEvent::setCallbacks' => + 'eventbufferevent::setcallbacks' => array ( 0 => 'void', 'readcb' => 'callable', @@ -6738,29 +6738,29 @@ 'eventcb' => 'callable', 'arg=' => 'string', ), - 'EventBufferEvent::setPriority' => + 'eventbufferevent::setpriority' => array ( 0 => 'bool', 'priority' => 'int', ), - 'EventBufferEvent::setTimeouts' => + 'eventbufferevent::settimeouts' => array ( 0 => 'bool', 'timeout_read' => 'float', 'timeout_write' => 'float', ), - 'EventBufferEvent::setWatermark' => + 'eventbufferevent::setwatermark' => array ( 0 => 'void', 'events' => 'int', 'lowmark' => 'int', 'highmark' => 'int', ), - 'EventBufferEvent::sslError' => + 'eventbufferevent::sslerror' => array ( 0 => 'string', ), - 'EventBufferEvent::sslFilter' => + 'eventbufferevent::sslfilter' => array ( 0 => 'EventBufferEvent', 'base' => 'EventBase', @@ -6769,27 +6769,27 @@ 'state' => 'int', 'options=' => 'int', ), - 'EventBufferEvent::sslGetCipherInfo' => + 'eventbufferevent::sslgetcipherinfo' => array ( 0 => 'string', ), - 'EventBufferEvent::sslGetCipherName' => + 'eventbufferevent::sslgetciphername' => array ( 0 => 'string', ), - 'EventBufferEvent::sslGetCipherVersion' => + 'eventbufferevent::sslgetcipherversion' => array ( 0 => 'string', ), - 'EventBufferEvent::sslGetProtocol' => + 'eventbufferevent::sslgetprotocol' => array ( 0 => 'string', ), - 'EventBufferEvent::sslRenegotiate' => + 'eventbufferevent::sslrenegotiate' => array ( 0 => 'void', ), - 'EventBufferEvent::sslSocket' => + 'eventbufferevent::sslsocket' => array ( 0 => 'EventBufferEvent', 'base' => 'EventBase', @@ -6798,144 +6798,144 @@ 'state' => 'int', 'options=' => 'int', ), - 'EventBufferEvent::write' => + 'eventbufferevent::write' => array ( 0 => 'bool', 'data' => 'string', ), - 'EventBufferEvent::writeBuffer' => + 'eventbufferevent::writebuffer' => array ( 0 => 'bool', 'buf' => 'EventBuffer', ), - 'EventConfig::__construct' => + 'eventconfig::__construct' => array ( 0 => 'void', ), - 'EventConfig::avoidMethod' => + 'eventconfig::avoidmethod' => array ( 0 => 'bool', 'method' => 'string', ), - 'EventConfig::requireFeatures' => + 'eventconfig::requirefeatures' => array ( 0 => 'bool', 'feature' => 'int', ), - 'EventConfig::setMaxDispatchInterval' => + 'eventconfig::setmaxdispatchinterval' => array ( 0 => 'void', 'max_interval' => 'int', 'max_callbacks' => 'int', 'min_priority' => 'int', ), - 'EventDnsBase::__construct' => + 'eventdnsbase::__construct' => array ( 0 => 'void', 'base' => 'EventBase', 'initialize' => 'bool', ), - 'EventDnsBase::addNameserverIp' => + 'eventdnsbase::addnameserverip' => array ( 0 => 'bool', 'ip' => 'string', ), - 'EventDnsBase::addSearch' => + 'eventdnsbase::addsearch' => array ( 0 => 'void', 'domain' => 'string', ), - 'EventDnsBase::clearSearch' => + 'eventdnsbase::clearsearch' => array ( 0 => 'void', ), - 'EventDnsBase::countNameservers' => + 'eventdnsbase::countnameservers' => array ( 0 => 'int', ), - 'EventDnsBase::loadHosts' => + 'eventdnsbase::loadhosts' => array ( 0 => 'bool', 'hosts' => 'string', ), - 'EventDnsBase::parseResolvConf' => + 'eventdnsbase::parseresolvconf' => array ( 0 => 'bool', 'flags' => 'int', 'filename' => 'string', ), - 'EventDnsBase::setOption' => + 'eventdnsbase::setoption' => array ( 0 => 'bool', 'option' => 'string', 'value' => 'string', ), - 'EventDnsBase::setSearchNdots' => + 'eventdnsbase::setsearchndots' => array ( 0 => 'bool', 'ndots' => 'int', ), - 'EventHttp::__construct' => + 'eventhttp::__construct' => array ( 0 => 'void', 'base' => 'EventBase', 'ctx=' => 'EventSslContext', ), - 'EventHttp::accept' => + 'eventhttp::accept' => array ( 0 => 'bool', 'socket' => 'mixed', ), - 'EventHttp::addServerAlias' => + 'eventhttp::addserveralias' => array ( 0 => 'bool', 'alias' => 'string', ), - 'EventHttp::bind' => + 'eventhttp::bind' => array ( 0 => 'void', 'address' => 'string', 'port' => 'int', ), - 'EventHttp::removeServerAlias' => + 'eventhttp::removeserveralias' => array ( 0 => 'bool', 'alias' => 'string', ), - 'EventHttp::setAllowedMethods' => + 'eventhttp::setallowedmethods' => array ( 0 => 'void', 'methods' => 'int', ), - 'EventHttp::setCallback' => + 'eventhttp::setcallback' => array ( 0 => 'void', 'path' => 'string', 'cb' => 'string', 'arg=' => 'string', ), - 'EventHttp::setDefaultCallback' => + 'eventhttp::setdefaultcallback' => array ( 0 => 'void', 'cb' => 'string', 'arg=' => 'string', ), - 'EventHttp::setMaxBodySize' => + 'eventhttp::setmaxbodysize' => array ( 0 => 'void', 'value' => 'int', ), - 'EventHttp::setMaxHeadersSize' => + 'eventhttp::setmaxheaderssize' => array ( 0 => 'void', 'value' => 'int', ), - 'EventHttp::setTimeout' => + 'eventhttp::settimeout' => array ( 0 => 'void', 'value' => 'int', ), - 'EventHttpConnection::__construct' => + 'eventhttpconnection::__construct' => array ( 0 => 'void', 'base' => 'EventBase', @@ -6944,169 +6944,169 @@ 'port' => 'int', 'ctx=' => 'EventSslContext', ), - 'EventHttpConnection::getBase' => + 'eventhttpconnection::getbase' => array ( 0 => 'EventBase', ), - 'EventHttpConnection::getPeer' => + 'eventhttpconnection::getpeer' => array ( 0 => 'void', '&w_address' => 'string', '&w_port' => 'int', ), - 'EventHttpConnection::makeRequest' => + 'eventhttpconnection::makerequest' => array ( 0 => 'bool', 'req' => 'EventHttpRequest', 'type' => 'int', 'uri' => 'string', ), - 'EventHttpConnection::setCloseCallback' => + 'eventhttpconnection::setclosecallback' => array ( 0 => 'void', 'callback' => 'callable', 'data=' => 'mixed', ), - 'EventHttpConnection::setLocalAddress' => + 'eventhttpconnection::setlocaladdress' => array ( 0 => 'void', 'address' => 'string', ), - 'EventHttpConnection::setLocalPort' => + 'eventhttpconnection::setlocalport' => array ( 0 => 'void', 'port' => 'int', ), - 'EventHttpConnection::setMaxBodySize' => + 'eventhttpconnection::setmaxbodysize' => array ( 0 => 'void', 'max_size' => 'string', ), - 'EventHttpConnection::setMaxHeadersSize' => + 'eventhttpconnection::setmaxheaderssize' => array ( 0 => 'void', 'max_size' => 'string', ), - 'EventHttpConnection::setRetries' => + 'eventhttpconnection::setretries' => array ( 0 => 'void', 'retries' => 'int', ), - 'EventHttpConnection::setTimeout' => + 'eventhttpconnection::settimeout' => array ( 0 => 'void', 'timeout' => 'int', ), - 'EventHttpRequest::__construct' => + 'eventhttprequest::__construct' => array ( 0 => 'void', 'callback' => 'callable', 'data=' => 'mixed', ), - 'EventHttpRequest::addHeader' => + 'eventhttprequest::addheader' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', 'type' => 'int', ), - 'EventHttpRequest::cancel' => + 'eventhttprequest::cancel' => array ( 0 => 'void', ), - 'EventHttpRequest::clearHeaders' => + 'eventhttprequest::clearheaders' => array ( 0 => 'void', ), - 'EventHttpRequest::closeConnection' => + 'eventhttprequest::closeconnection' => array ( 0 => 'void', ), - 'EventHttpRequest::findHeader' => + 'eventhttprequest::findheader' => array ( 0 => 'void', 'key' => 'string', 'type' => 'string', ), - 'EventHttpRequest::free' => + 'eventhttprequest::free' => array ( 0 => 'void', ), - 'EventHttpRequest::getBufferEvent' => + 'eventhttprequest::getbufferevent' => array ( 0 => 'EventBufferEvent', ), - 'EventHttpRequest::getCommand' => + 'eventhttprequest::getcommand' => array ( 0 => 'void', ), - 'EventHttpRequest::getConnection' => + 'eventhttprequest::getconnection' => array ( 0 => 'EventHttpConnection', ), - 'EventHttpRequest::getHost' => + 'eventhttprequest::gethost' => array ( 0 => 'string', ), - 'EventHttpRequest::getInputBuffer' => + 'eventhttprequest::getinputbuffer' => array ( 0 => 'EventBuffer', ), - 'EventHttpRequest::getInputHeaders' => + 'eventhttprequest::getinputheaders' => array ( 0 => 'array', ), - 'EventHttpRequest::getOutputBuffer' => + 'eventhttprequest::getoutputbuffer' => array ( 0 => 'EventBuffer', ), - 'EventHttpRequest::getOutputHeaders' => + 'eventhttprequest::getoutputheaders' => array ( 0 => 'void', ), - 'EventHttpRequest::getResponseCode' => + 'eventhttprequest::getresponsecode' => array ( 0 => 'int', ), - 'EventHttpRequest::getUri' => + 'eventhttprequest::geturi' => array ( 0 => 'string', ), - 'EventHttpRequest::removeHeader' => + 'eventhttprequest::removeheader' => array ( 0 => 'void', 'key' => 'string', 'type' => 'string', ), - 'EventHttpRequest::sendError' => + 'eventhttprequest::senderror' => array ( 0 => 'void', 'error' => 'int', 'reason=' => 'string', ), - 'EventHttpRequest::sendReply' => + 'eventhttprequest::sendreply' => array ( 0 => 'void', 'code' => 'int', 'reason' => 'string', 'buf=' => 'EventBuffer', ), - 'EventHttpRequest::sendReplyChunk' => + 'eventhttprequest::sendreplychunk' => array ( 0 => 'void', 'buf' => 'EventBuffer', ), - 'EventHttpRequest::sendReplyEnd' => + 'eventhttprequest::sendreplyend' => array ( 0 => 'void', ), - 'EventHttpRequest::sendReplyStart' => + 'eventhttprequest::sendreplystart' => array ( 0 => 'void', 'code' => 'int', 'reason' => 'string', ), - 'EventListener::__construct' => + 'eventlistener::__construct' => array ( 0 => 'void', 'base' => 'EventBase', @@ -7116,68 +7116,68 @@ 'backlog' => 'int', 'target' => 'mixed', ), - 'EventListener::disable' => + 'eventlistener::disable' => array ( 0 => 'bool', ), - 'EventListener::enable' => + 'eventlistener::enable' => array ( 0 => 'bool', ), - 'EventListener::getBase' => + 'eventlistener::getbase' => array ( 0 => 'void', ), - 'EventListener::getSocketName' => + 'eventlistener::getsocketname' => array ( 0 => 'bool', '&w_address' => 'string', '&w_port=' => 'mixed', ), - 'EventListener::setCallback' => + 'eventlistener::setcallback' => array ( 0 => 'void', 'cb' => 'callable', 'arg=' => 'mixed', ), - 'EventListener::setErrorCallback' => + 'eventlistener::seterrorcallback' => array ( 0 => 'void', 'cb' => 'string', ), - 'EventSslContext::__construct' => + 'eventsslcontext::__construct' => array ( 0 => 'void', 'method' => 'string', 'options' => 'string', ), - 'EventUtil::__construct' => + 'eventutil::__construct' => array ( 0 => 'void', ), - 'EventUtil::getLastSocketErrno' => + 'eventutil::getlastsocketerrno' => array ( 0 => 'int', 'socket=' => 'mixed', ), - 'EventUtil::getLastSocketError' => + 'eventutil::getlastsocketerror' => array ( 0 => 'string', 'socket=' => 'mixed', ), - 'EventUtil::getSocketFd' => + 'eventutil::getsocketfd' => array ( 0 => 'int', 'socket' => 'mixed', ), - 'EventUtil::getSocketName' => + 'eventutil::getsocketname' => array ( 0 => 'bool', 'socket' => 'mixed', '&w_address' => 'string', '&w_port=' => 'mixed', ), - 'EventUtil::setSocketOption' => + 'eventutil::setsocketoption' => array ( 0 => 'bool', 'socket' => 'mixed', @@ -7185,709 +7185,709 @@ 'optname' => 'int', 'optval' => 'mixed', ), - 'EventUtil::sslRandPoll' => + 'eventutil::sslrandpoll' => array ( 0 => 'void', ), - 'Exception::__clone' => + 'exception::__clone' => array ( 0 => 'void', ), - 'Exception::__construct' => + 'exception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'Exception::__toString' => + 'exception::__tostring' => array ( 0 => 'string', ), - 'Exception::getCode' => + 'exception::getcode' => array ( 0 => 'int|string', ), - 'Exception::getFile' => + 'exception::getfile' => array ( 0 => 'string', ), - 'Exception::getLine' => + 'exception::getline' => array ( 0 => 'int', ), - 'Exception::getMessage' => + 'exception::getmessage' => array ( 0 => 'string', ), - 'Exception::getPrevious' => + 'exception::getprevious' => array ( 0 => 'Throwable|null', ), - 'Exception::getTrace' => + 'exception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'Exception::getTraceAsString' => + 'exception::gettraceasstring' => array ( 0 => 'string', ), - 'FANNConnection::__construct' => + 'fannconnection::__construct' => array ( 0 => 'void', 'from_neuron' => 'int', 'to_neuron' => 'int', 'weight' => 'float', ), - 'FANNConnection::getFromNeuron' => + 'fannconnection::getfromneuron' => array ( 0 => 'int', ), - 'FANNConnection::getToNeuron' => + 'fannconnection::gettoneuron' => array ( 0 => 'int', ), - 'FANNConnection::getWeight' => + 'fannconnection::getweight' => array ( 0 => 'void', ), - 'FANNConnection::setWeight' => + 'fannconnection::setweight' => array ( 0 => 'bool', 'weight' => 'float', ), - 'FilesystemIterator::__construct' => + 'filesystemiterator::__construct' => array ( 0 => 'void', 'directory' => 'string', 'flags=' => 'int', ), - 'FilesystemIterator::__toString' => + 'filesystemiterator::__tostring' => array ( 0 => 'string', ), - 'FilesystemIterator::current' => + 'filesystemiterator::current' => array ( 0 => 'FilesystemIterator|SplFileInfo|string', ), - 'FilesystemIterator::getATime' => + 'filesystemiterator::getatime' => array ( 0 => 'int', ), - 'FilesystemIterator::getBasename' => + 'filesystemiterator::getbasename' => array ( 0 => 'string', 'suffix=' => 'string', ), - 'FilesystemIterator::getCTime' => + 'filesystemiterator::getctime' => array ( 0 => 'int', ), - 'FilesystemIterator::getExtension' => + 'filesystemiterator::getextension' => array ( 0 => 'string', ), - 'FilesystemIterator::getFileInfo' => + 'filesystemiterator::getfileinfo' => array ( 0 => 'SplFileInfo', 'class=' => 'class-string', ), - 'FilesystemIterator::getFilename' => + 'filesystemiterator::getfilename' => array ( 0 => 'string', ), - 'FilesystemIterator::getFlags' => + 'filesystemiterator::getflags' => array ( 0 => 'int', ), - 'FilesystemIterator::getGroup' => + 'filesystemiterator::getgroup' => array ( 0 => 'int', ), - 'FilesystemIterator::getInode' => + 'filesystemiterator::getinode' => array ( 0 => 'int', ), - 'FilesystemIterator::getLinkTarget' => + 'filesystemiterator::getlinktarget' => array ( 0 => 'string', ), - 'FilesystemIterator::getMTime' => + 'filesystemiterator::getmtime' => array ( 0 => 'int', ), - 'FilesystemIterator::getOwner' => + 'filesystemiterator::getowner' => array ( 0 => 'int', ), - 'FilesystemIterator::getPath' => + 'filesystemiterator::getpath' => array ( 0 => 'string', ), - 'FilesystemIterator::getPathInfo' => + 'filesystemiterator::getpathinfo' => array ( 0 => 'SplFileInfo|null', 'class=' => 'class-string', ), - 'FilesystemIterator::getPathname' => + 'filesystemiterator::getpathname' => array ( 0 => 'string', ), - 'FilesystemIterator::getPerms' => + 'filesystemiterator::getperms' => array ( 0 => 'int', ), - 'FilesystemIterator::getRealPath' => + 'filesystemiterator::getrealpath' => array ( 0 => 'non-falsy-string', ), - 'FilesystemIterator::getSize' => + 'filesystemiterator::getsize' => array ( 0 => 'int', ), - 'FilesystemIterator::getType' => + 'filesystemiterator::gettype' => array ( 0 => 'string', ), - 'FilesystemIterator::isDir' => + 'filesystemiterator::isdir' => array ( 0 => 'bool', ), - 'FilesystemIterator::isDot' => + 'filesystemiterator::isdot' => array ( 0 => 'bool', ), - 'FilesystemIterator::isExecutable' => + 'filesystemiterator::isexecutable' => array ( 0 => 'bool', ), - 'FilesystemIterator::isFile' => + 'filesystemiterator::isfile' => array ( 0 => 'bool', ), - 'FilesystemIterator::isLink' => + 'filesystemiterator::islink' => array ( 0 => 'bool', ), - 'FilesystemIterator::isReadable' => + 'filesystemiterator::isreadable' => array ( 0 => 'bool', ), - 'FilesystemIterator::isWritable' => + 'filesystemiterator::iswritable' => array ( 0 => 'bool', ), - 'FilesystemIterator::key' => + 'filesystemiterator::key' => array ( 0 => 'string', ), - 'FilesystemIterator::next' => + 'filesystemiterator::next' => array ( 0 => 'void', ), - 'FilesystemIterator::openFile' => + 'filesystemiterator::openfile' => array ( 0 => 'SplFileObject', 'mode=' => 'string', 'useIncludePath=' => 'bool', 'context=' => 'resource', ), - 'FilesystemIterator::rewind' => + 'filesystemiterator::rewind' => array ( 0 => 'void', ), - 'FilesystemIterator::seek' => + 'filesystemiterator::seek' => array ( 0 => 'void', 'offset' => 'int', ), - 'FilesystemIterator::setFileClass' => + 'filesystemiterator::setfileclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'FilesystemIterator::setFlags' => + 'filesystemiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'FilesystemIterator::setInfoClass' => + 'filesystemiterator::setinfoclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'FilesystemIterator::valid' => + 'filesystemiterator::valid' => array ( 0 => 'bool', ), - 'FilterIterator::__construct' => + 'filteriterator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', ), - 'FilterIterator::accept' => + 'filteriterator::accept' => array ( 0 => 'bool', ), - 'FilterIterator::current' => + 'filteriterator::current' => array ( 0 => 'mixed', ), - 'FilterIterator::getInnerIterator' => + 'filteriterator::getinneriterator' => array ( 0 => 'Iterator', ), - 'FilterIterator::key' => + 'filteriterator::key' => array ( 0 => 'mixed', ), - 'FilterIterator::next' => + 'filteriterator::next' => array ( 0 => 'void', ), - 'FilterIterator::rewind' => + 'filteriterator::rewind' => array ( 0 => 'void', ), - 'FilterIterator::valid' => + 'filteriterator::valid' => array ( 0 => 'bool', ), - 'GEOSGeometry::__toString' => + 'geosgeometry::__tostring' => array ( 0 => 'string', ), - 'GEOSGeometry::area' => + 'geosgeometry::area' => array ( 0 => 'float', ), - 'GEOSGeometry::boundary' => + 'geosgeometry::boundary' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::buffer' => + 'geosgeometry::buffer' => array ( 0 => 'GEOSGeometry', 'dist' => 'float', 'styleArray=' => 'array', ), - 'GEOSGeometry::centroid' => + 'geosgeometry::centroid' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::checkValidity' => + 'geosgeometry::checkvalidity' => array ( 0 => 'array{location?: GEOSGeometry, reason?: string, valid: bool}', ), - 'GEOSGeometry::contains' => + 'geosgeometry::contains' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::convexHull' => + 'geosgeometry::convexhull' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::coordinateDimension' => + 'geosgeometry::coordinatedimension' => array ( 0 => 'int', ), - 'GEOSGeometry::coveredBy' => + 'geosgeometry::coveredby' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::covers' => + 'geosgeometry::covers' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::crosses' => + 'geosgeometry::crosses' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::delaunayTriangulation' => + 'geosgeometry::delaunaytriangulation' => array ( 0 => 'GEOSGeometry', 'tolerance' => 'float', 'onlyEdges' => 'bool', ), - 'GEOSGeometry::difference' => + 'geosgeometry::difference' => array ( 0 => 'GEOSGeometry', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::dimension' => + 'geosgeometry::dimension' => array ( 0 => 'int', ), - 'GEOSGeometry::disjoint' => + 'geosgeometry::disjoint' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::distance' => + 'geosgeometry::distance' => array ( 0 => 'float', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::endPoint' => + 'geosgeometry::endpoint' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::envelope' => + 'geosgeometry::envelope' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::equals' => + 'geosgeometry::equals' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::equalsExact' => + 'geosgeometry::equalsexact' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', 'tolerance' => 'float', ), - 'GEOSGeometry::exteriorRing' => + 'geosgeometry::exteriorring' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::extractUniquePoints' => + 'geosgeometry::extractuniquepoints' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::geometryN' => + 'geosgeometry::geometryn' => array ( 0 => 'GEOSGeometry', 'num' => 'int', ), - 'GEOSGeometry::getSRID' => + 'geosgeometry::getsrid' => array ( 0 => 'int', ), - 'GEOSGeometry::getX' => + 'geosgeometry::getx' => array ( 0 => 'float', ), - 'GEOSGeometry::getY' => + 'geosgeometry::gety' => array ( 0 => 'float', ), - 'GEOSGeometry::hasZ' => + 'geosgeometry::hasz' => array ( 0 => 'bool', ), - 'GEOSGeometry::hausdorffDistance' => + 'geosgeometry::hausdorffdistance' => array ( 0 => 'float', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::interiorRingN' => + 'geosgeometry::interiorringn' => array ( 0 => 'GEOSGeometry', 'num' => 'int', ), - 'GEOSGeometry::interpolate' => + 'geosgeometry::interpolate' => array ( 0 => 'GEOSGeometry', 'dist' => 'float', 'normalized' => 'bool', ), - 'GEOSGeometry::intersection' => + 'geosgeometry::intersection' => array ( 0 => 'GEOSGeometry', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::intersects' => + 'geosgeometry::intersects' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::isClosed' => + 'geosgeometry::isclosed' => array ( 0 => 'bool', ), - 'GEOSGeometry::isEmpty' => + 'geosgeometry::isempty' => array ( 0 => 'bool', ), - 'GEOSGeometry::isRing' => + 'geosgeometry::isring' => array ( 0 => 'bool', ), - 'GEOSGeometry::isSimple' => + 'geosgeometry::issimple' => array ( 0 => 'bool', ), - 'GEOSGeometry::length' => + 'geosgeometry::length' => array ( 0 => 'float', ), - 'GEOSGeometry::node' => + 'geosgeometry::node' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::normalize' => + 'geosgeometry::normalize' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::numCoordinates' => + 'geosgeometry::numcoordinates' => array ( 0 => 'int', ), - 'GEOSGeometry::numGeometries' => + 'geosgeometry::numgeometries' => array ( 0 => 'int', ), - 'GEOSGeometry::numInteriorRings' => + 'geosgeometry::numinteriorrings' => array ( 0 => 'int', ), - 'GEOSGeometry::numPoints' => + 'geosgeometry::numpoints' => array ( 0 => 'int', ), - 'GEOSGeometry::offsetCurve' => + 'geosgeometry::offsetcurve' => array ( 0 => 'GEOSGeometry', 'dist' => 'float', 'styleArray' => 'array', ), - 'GEOSGeometry::overlaps' => + 'geosgeometry::overlaps' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::pointN' => + 'geosgeometry::pointn' => array ( 0 => 'GEOSGeometry', 'num' => 'int', ), - 'GEOSGeometry::pointOnSurface' => + 'geosgeometry::pointonsurface' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::project' => + 'geosgeometry::project' => array ( 0 => 'float', 'other' => 'GEOSGeometry', 'normalized' => 'bool', ), - 'GEOSGeometry::relate' => + 'geosgeometry::relate' => array ( 0 => 'bool|string', 'otherGeom' => 'GEOSGeometry', 'pattern' => 'string', ), - 'GEOSGeometry::relateBoundaryNodeRule' => + 'geosgeometry::relateboundarynoderule' => array ( 0 => 'string', 'otherGeom' => 'GEOSGeometry', 'rule' => 'int', ), - 'GEOSGeometry::setSRID' => + 'geosgeometry::setsrid' => array ( 0 => 'void', 'srid' => 'int', ), - 'GEOSGeometry::simplify' => + 'geosgeometry::simplify' => array ( 0 => 'GEOSGeometry', 'tolerance' => 'float', 'preserveTopology=' => 'bool', ), - 'GEOSGeometry::snapTo' => + 'geosgeometry::snapto' => array ( 0 => 'GEOSGeometry', 'geom' => 'GEOSGeometry', 'tolerance' => 'float', ), - 'GEOSGeometry::startPoint' => + 'geosgeometry::startpoint' => array ( 0 => 'GEOSGeometry', ), - 'GEOSGeometry::symDifference' => + 'geosgeometry::symdifference' => array ( 0 => 'GEOSGeometry', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::touches' => + 'geosgeometry::touches' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSGeometry::typeId' => + 'geosgeometry::typeid' => array ( 0 => 'int', ), - 'GEOSGeometry::typeName' => + 'geosgeometry::typename' => array ( 0 => 'string', ), - 'GEOSGeometry::union' => + 'geosgeometry::union' => array ( 0 => 'GEOSGeometry', 'otherGeom=' => 'GEOSGeometry', ), - 'GEOSGeometry::voronoiDiagram' => + 'geosgeometry::voronoidiagram' => array ( 0 => 'GEOSGeometry', 'tolerance' => 'float', 'onlyEdges' => 'bool', 'extent' => 'GEOSGeometry|null', ), - 'GEOSGeometry::within' => + 'geosgeometry::within' => array ( 0 => 'bool', 'geom' => 'GEOSGeometry', ), - 'GEOSLineMerge' => + 'geoslinemerge' => array ( 0 => 'array', 'geom' => 'GEOSGeometry', ), - 'GEOSPolygonize' => + 'geospolygonize' => array ( 0 => 'array{cut_edges?: array, dangles: array, invalid_rings: array, rings: array}', 'geom' => 'GEOSGeometry', ), - 'GEOSRelateMatch' => + 'geosrelatematch' => array ( 0 => 'bool', 'matrix' => 'string', 'pattern' => 'string', ), - 'GEOSSharedPaths' => + 'geossharedpaths' => array ( 0 => 'GEOSGeometry', 'geom1' => 'GEOSGeometry', 'geom2' => 'GEOSGeometry', ), - 'GEOSVersion' => + 'geosversion' => array ( 0 => 'string', ), - 'GEOSWKBReader::__construct' => + 'geoswkbreader::__construct' => array ( 0 => 'void', ), - 'GEOSWKBReader::read' => + 'geoswkbreader::read' => array ( 0 => 'GEOSGeometry', 'wkb' => 'string', ), - 'GEOSWKBReader::readHEX' => + 'geoswkbreader::readhex' => array ( 0 => 'GEOSGeometry', 'wkb' => 'string', ), - 'GEOSWKBWriter::__construct' => + 'geoswkbwriter::__construct' => array ( 0 => 'void', ), - 'GEOSWKBWriter::getByteOrder' => + 'geoswkbwriter::getbyteorder' => array ( 0 => 'int', ), - 'GEOSWKBWriter::getIncludeSRID' => + 'geoswkbwriter::getincludesrid' => array ( 0 => 'bool', ), - 'GEOSWKBWriter::getOutputDimension' => + 'geoswkbwriter::getoutputdimension' => array ( 0 => 'int', ), - 'GEOSWKBWriter::setByteOrder' => + 'geoswkbwriter::setbyteorder' => array ( 0 => 'void', 'byteOrder' => 'int', ), - 'GEOSWKBWriter::setIncludeSRID' => + 'geoswkbwriter::setincludesrid' => array ( 0 => 'void', 'inc' => 'bool', ), - 'GEOSWKBWriter::setOutputDimension' => + 'geoswkbwriter::setoutputdimension' => array ( 0 => 'void', 'dim' => 'int', ), - 'GEOSWKBWriter::write' => + 'geoswkbwriter::write' => array ( 0 => 'string', 'geom' => 'GEOSGeometry', ), - 'GEOSWKBWriter::writeHEX' => + 'geoswkbwriter::writehex' => array ( 0 => 'string', 'geom' => 'GEOSGeometry', ), - 'GEOSWKTReader::__construct' => + 'geoswktreader::__construct' => array ( 0 => 'void', ), - 'GEOSWKTReader::read' => + 'geoswktreader::read' => array ( 0 => 'GEOSGeometry', 'wkt' => 'string', ), - 'GEOSWKTWriter::__construct' => + 'geoswktwriter::__construct' => array ( 0 => 'void', ), - 'GEOSWKTWriter::getOutputDimension' => + 'geoswktwriter::getoutputdimension' => array ( 0 => 'int', ), - 'GEOSWKTWriter::setOld3D' => + 'geoswktwriter::setold3d' => array ( 0 => 'void', 'val' => 'bool', ), - 'GEOSWKTWriter::setOutputDimension' => + 'geoswktwriter::setoutputdimension' => array ( 0 => 'void', 'dim' => 'int', ), - 'GEOSWKTWriter::setRoundingPrecision' => + 'geoswktwriter::setroundingprecision' => array ( 0 => 'void', 'prec' => 'int', ), - 'GEOSWKTWriter::setTrim' => + 'geoswktwriter::settrim' => array ( 0 => 'void', 'trim' => 'bool', ), - 'GEOSWKTWriter::write' => + 'geoswktwriter::write' => array ( 0 => 'string', 'geom' => 'GEOSGeometry', ), - 'GearmanClient::__construct' => + 'gearmanclient::__construct' => array ( 0 => 'void', ), - 'GearmanClient::addOptions' => + 'gearmanclient::addoptions' => array ( 0 => 'bool', 'options' => 'int', ), - 'GearmanClient::addServer' => + 'gearmanclient::addserver' => array ( 0 => 'bool', 'host=' => 'string', 'port=' => 'int', ), - 'GearmanClient::addServers' => + 'gearmanclient::addservers' => array ( 0 => 'bool', 'servers=' => 'string', ), - 'GearmanClient::addTask' => + 'gearmanclient::addtask' => array ( 0 => 'GearmanTask|false', 'function_name' => 'string', @@ -7895,7 +7895,7 @@ 'context=' => 'mixed', 'unique=' => 'string', ), - 'GearmanClient::addTaskBackground' => + 'gearmanclient::addtaskbackground' => array ( 0 => 'GearmanTask|false', 'function_name' => 'string', @@ -7903,7 +7903,7 @@ 'context=' => 'mixed', 'unique=' => 'string', ), - 'GearmanClient::addTaskHigh' => + 'gearmanclient::addtaskhigh' => array ( 0 => 'GearmanTask|false', 'function_name' => 'string', @@ -7911,7 +7911,7 @@ 'context=' => 'mixed', 'unique=' => 'string', ), - 'GearmanClient::addTaskHighBackground' => + 'gearmanclient::addtaskhighbackground' => array ( 0 => 'GearmanTask|false', 'function_name' => 'string', @@ -7919,7 +7919,7 @@ 'context=' => 'mixed', 'unique=' => 'string', ), - 'GearmanClient::addTaskLow' => + 'gearmanclient::addtasklow' => array ( 0 => 'GearmanTask|false', 'function_name' => 'string', @@ -7927,7 +7927,7 @@ 'context=' => 'mixed', 'unique=' => 'string', ), - 'GearmanClient::addTaskLowBackground' => + 'gearmanclient::addtasklowbackground' => array ( 0 => 'GearmanTask|false', 'function_name' => 'string', @@ -7935,367 +7935,367 @@ 'context=' => 'mixed', 'unique=' => 'string', ), - 'GearmanClient::addTaskStatus' => + 'gearmanclient::addtaskstatus' => array ( 0 => 'GearmanTask', 'job_handle' => 'string', 'context=' => 'string', ), - 'GearmanClient::clearCallbacks' => + 'gearmanclient::clearcallbacks' => array ( 0 => 'bool', ), - 'GearmanClient::clone' => + 'gearmanclient::clone' => array ( 0 => 'GearmanClient', ), - 'GearmanClient::context' => + 'gearmanclient::context' => array ( 0 => 'string', ), - 'GearmanClient::data' => + 'gearmanclient::data' => array ( 0 => 'string', ), - 'GearmanClient::do' => + 'gearmanclient::do' => array ( 0 => 'string', 'function_name' => 'string', 'workload' => 'string', 'unique=' => 'string', ), - 'GearmanClient::doBackground' => + 'gearmanclient::dobackground' => array ( 0 => 'string', 'function_name' => 'string', 'workload' => 'string', 'unique=' => 'string', ), - 'GearmanClient::doHigh' => + 'gearmanclient::dohigh' => array ( 0 => 'string', 'function_name' => 'string', 'workload' => 'string', 'unique=' => 'string', ), - 'GearmanClient::doHighBackground' => + 'gearmanclient::dohighbackground' => array ( 0 => 'string', 'function_name' => 'string', 'workload' => 'string', 'unique=' => 'string', ), - 'GearmanClient::doJobHandle' => + 'gearmanclient::dojobhandle' => array ( 0 => 'string', ), - 'GearmanClient::doLow' => + 'gearmanclient::dolow' => array ( 0 => 'string', 'function_name' => 'string', 'workload' => 'string', 'unique=' => 'string', ), - 'GearmanClient::doLowBackground' => + 'gearmanclient::dolowbackground' => array ( 0 => 'string', 'function_name' => 'string', 'workload' => 'string', 'unique=' => 'string', ), - 'GearmanClient::doNormal' => + 'gearmanclient::donormal' => array ( 0 => 'string', 'function_name' => 'string', 'workload' => 'string', 'unique=' => 'string', ), - 'GearmanClient::doStatus' => + 'gearmanclient::dostatus' => array ( 0 => 'array', ), - 'GearmanClient::echo' => + 'gearmanclient::echo' => array ( 0 => 'bool', 'workload' => 'string', ), - 'GearmanClient::error' => + 'gearmanclient::error' => array ( 0 => 'string', ), - 'GearmanClient::getErrno' => + 'gearmanclient::geterrno' => array ( 0 => 'int', ), - 'GearmanClient::jobStatus' => + 'gearmanclient::jobstatus' => array ( 0 => 'array', 'job_handle' => 'string', ), - 'GearmanClient::options' => + 'gearmanclient::options' => array ( 0 => 'mixed', ), - 'GearmanClient::ping' => + 'gearmanclient::ping' => array ( 0 => 'bool', 'workload' => 'string', ), - 'GearmanClient::removeOptions' => + 'gearmanclient::removeoptions' => array ( 0 => 'bool', 'options' => 'int', ), - 'GearmanClient::returnCode' => + 'gearmanclient::returncode' => array ( 0 => 'int', ), - 'GearmanClient::runTasks' => + 'gearmanclient::runtasks' => array ( 0 => 'bool', ), - 'GearmanClient::setClientCallback' => + 'gearmanclient::setclientcallback' => array ( 0 => 'void', 'callback' => 'callable', ), - 'GearmanClient::setCompleteCallback' => + 'gearmanclient::setcompletecallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'GearmanClient::setContext' => + 'gearmanclient::setcontext' => array ( 0 => 'bool', 'context' => 'string', ), - 'GearmanClient::setCreatedCallback' => + 'gearmanclient::setcreatedcallback' => array ( 0 => 'bool', 'callback' => 'string', ), - 'GearmanClient::setData' => + 'gearmanclient::setdata' => array ( 0 => 'bool', 'data' => 'string', ), - 'GearmanClient::setDataCallback' => + 'gearmanclient::setdatacallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'GearmanClient::setExceptionCallback' => + 'gearmanclient::setexceptioncallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'GearmanClient::setFailCallback' => + 'gearmanclient::setfailcallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'GearmanClient::setOptions' => + 'gearmanclient::setoptions' => array ( 0 => 'bool', 'options' => 'int', ), - 'GearmanClient::setStatusCallback' => + 'gearmanclient::setstatuscallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'GearmanClient::setTimeout' => + 'gearmanclient::settimeout' => array ( 0 => 'bool', 'timeout' => 'int', ), - 'GearmanClient::setWarningCallback' => + 'gearmanclient::setwarningcallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'GearmanClient::setWorkloadCallback' => + 'gearmanclient::setworkloadcallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'GearmanClient::timeout' => + 'gearmanclient::timeout' => array ( 0 => 'int', ), - 'GearmanClient::wait' => + 'gearmanclient::wait' => array ( 0 => 'mixed', ), - 'GearmanJob::__construct' => + 'gearmanjob::__construct' => array ( 0 => 'void', ), - 'GearmanJob::complete' => + 'gearmanjob::complete' => array ( 0 => 'bool', 'result' => 'string', ), - 'GearmanJob::data' => + 'gearmanjob::data' => array ( 0 => 'bool', 'data' => 'string', ), - 'GearmanJob::exception' => + 'gearmanjob::exception' => array ( 0 => 'bool', 'exception' => 'string', ), - 'GearmanJob::fail' => + 'gearmanjob::fail' => array ( 0 => 'bool', ), - 'GearmanJob::functionName' => + 'gearmanjob::functionname' => array ( 0 => 'string', ), - 'GearmanJob::handle' => + 'gearmanjob::handle' => array ( 0 => 'string', ), - 'GearmanJob::returnCode' => + 'gearmanjob::returncode' => array ( 0 => 'int', ), - 'GearmanJob::sendComplete' => + 'gearmanjob::sendcomplete' => array ( 0 => 'bool', 'result' => 'string', ), - 'GearmanJob::sendData' => + 'gearmanjob::senddata' => array ( 0 => 'bool', 'data' => 'string', ), - 'GearmanJob::sendException' => + 'gearmanjob::sendexception' => array ( 0 => 'bool', 'exception' => 'string', ), - 'GearmanJob::sendFail' => + 'gearmanjob::sendfail' => array ( 0 => 'bool', ), - 'GearmanJob::sendStatus' => + 'gearmanjob::sendstatus' => array ( 0 => 'bool', 'numerator' => 'int', 'denominator' => 'int', ), - 'GearmanJob::sendWarning' => + 'gearmanjob::sendwarning' => array ( 0 => 'bool', 'warning' => 'string', ), - 'GearmanJob::setReturn' => + 'gearmanjob::setreturn' => array ( 0 => 'bool', 'gearman_return_t' => 'string', ), - 'GearmanJob::status' => + 'gearmanjob::status' => array ( 0 => 'bool', 'numerator' => 'int', 'denominator' => 'int', ), - 'GearmanJob::unique' => + 'gearmanjob::unique' => array ( 0 => 'string', ), - 'GearmanJob::warning' => + 'gearmanjob::warning' => array ( 0 => 'bool', 'warning' => 'string', ), - 'GearmanJob::workload' => + 'gearmanjob::workload' => array ( 0 => 'string', ), - 'GearmanJob::workloadSize' => + 'gearmanjob::workloadsize' => array ( 0 => 'int', ), - 'GearmanTask::__construct' => + 'gearmantask::__construct' => array ( 0 => 'void', ), - 'GearmanTask::create' => + 'gearmantask::create' => array ( 0 => 'GearmanTask', ), - 'GearmanTask::data' => + 'gearmantask::data' => array ( 0 => 'false|string', ), - 'GearmanTask::dataSize' => + 'gearmantask::datasize' => array ( 0 => 'false|int', ), - 'GearmanTask::function' => + 'gearmantask::function' => array ( 0 => 'string', ), - 'GearmanTask::functionName' => + 'gearmantask::functionname' => array ( 0 => 'string', ), - 'GearmanTask::isKnown' => + 'gearmantask::isknown' => array ( 0 => 'bool', ), - 'GearmanTask::isRunning' => + 'gearmantask::isrunning' => array ( 0 => 'bool', ), - 'GearmanTask::jobHandle' => + 'gearmantask::jobhandle' => array ( 0 => 'string', ), - 'GearmanTask::recvData' => + 'gearmantask::recvdata' => array ( 0 => 'array|false', 'data_len' => 'int', ), - 'GearmanTask::returnCode' => + 'gearmantask::returncode' => array ( 0 => 'int', ), - 'GearmanTask::sendData' => + 'gearmantask::senddata' => array ( 0 => 'int', 'data' => 'string', ), - 'GearmanTask::sendWorkload' => + 'gearmantask::sendworkload' => array ( 0 => 'false|int', 'data' => 'string', ), - 'GearmanTask::taskDenominator' => + 'gearmantask::taskdenominator' => array ( 0 => 'false|int', ), - 'GearmanTask::taskNumerator' => + 'gearmantask::tasknumerator' => array ( 0 => 'false|int', ), - 'GearmanTask::unique' => + 'gearmantask::unique' => array ( 0 => 'false|string', ), - 'GearmanTask::uuid' => + 'gearmantask::uuid' => array ( 0 => 'string', ), - 'GearmanWorker::__construct' => + 'gearmanworker::__construct' => array ( 0 => 'void', ), - 'GearmanWorker::addFunction' => + 'gearmanworker::addfunction' => array ( 0 => 'bool', 'function_name' => 'string', @@ -8303,346 +8303,346 @@ 'context=' => 'mixed', 'timeout=' => 'int', ), - 'GearmanWorker::addOptions' => + 'gearmanworker::addoptions' => array ( 0 => 'bool', 'option' => 'int', ), - 'GearmanWorker::addServer' => + 'gearmanworker::addserver' => array ( 0 => 'bool', 'host=' => 'string', 'port=' => 'int', ), - 'GearmanWorker::addServers' => + 'gearmanworker::addservers' => array ( 0 => 'bool', 'servers' => 'string', ), - 'GearmanWorker::clone' => + 'gearmanworker::clone' => array ( 0 => 'void', ), - 'GearmanWorker::echo' => + 'gearmanworker::echo' => array ( 0 => 'bool', 'workload' => 'string', ), - 'GearmanWorker::error' => + 'gearmanworker::error' => array ( 0 => 'string', ), - 'GearmanWorker::getErrno' => + 'gearmanworker::geterrno' => array ( 0 => 'int', ), - 'GearmanWorker::grabJob' => + 'gearmanworker::grabjob' => array ( 0 => 'mixed', ), - 'GearmanWorker::options' => + 'gearmanworker::options' => array ( 0 => 'int', ), - 'GearmanWorker::register' => + 'gearmanworker::register' => array ( 0 => 'bool', 'function_name' => 'string', 'timeout=' => 'int', ), - 'GearmanWorker::removeOptions' => + 'gearmanworker::removeoptions' => array ( 0 => 'bool', 'option' => 'int', ), - 'GearmanWorker::returnCode' => + 'gearmanworker::returncode' => array ( 0 => 'int', ), - 'GearmanWorker::setId' => + 'gearmanworker::setid' => array ( 0 => 'bool', 'id' => 'string', ), - 'GearmanWorker::setOptions' => + 'gearmanworker::setoptions' => array ( 0 => 'bool', 'option' => 'int', ), - 'GearmanWorker::setTimeout' => + 'gearmanworker::settimeout' => array ( 0 => 'bool', 'timeout' => 'int', ), - 'GearmanWorker::timeout' => + 'gearmanworker::timeout' => array ( 0 => 'int', ), - 'GearmanWorker::unregister' => + 'gearmanworker::unregister' => array ( 0 => 'bool', 'function_name' => 'string', ), - 'GearmanWorker::unregisterAll' => + 'gearmanworker::unregisterall' => array ( 0 => 'bool', ), - 'GearmanWorker::wait' => + 'gearmanworker::wait' => array ( 0 => 'bool', ), - 'GearmanWorker::work' => + 'gearmanworker::work' => array ( 0 => 'bool', ), - 'Gender\\Gender::__construct' => + 'gender\\gender::__construct' => array ( 0 => 'void', 'dsn=' => 'string', ), - 'Gender\\Gender::connect' => + 'gender\\gender::connect' => array ( 0 => 'bool', 'dsn' => 'string', ), - 'Gender\\Gender::country' => + 'gender\\gender::country' => array ( 0 => 'array', 'country' => 'int', ), - 'Gender\\Gender::get' => + 'gender\\gender::get' => array ( 0 => 'int', 'name' => 'string', 'country=' => 'int', ), - 'Gender\\Gender::isNick' => + 'gender\\gender::isnick' => array ( 0 => 'array', 'name0' => 'string', 'name1' => 'string', 'country=' => 'int', ), - 'Gender\\Gender::similarNames' => + 'gender\\gender::similarnames' => array ( 0 => 'array', 'name' => 'string', 'country=' => 'int', ), - 'Generator::current' => + 'generator::current' => array ( 0 => 'mixed', ), - 'Generator::getReturn' => + 'generator::getreturn' => array ( 0 => 'mixed', ), - 'Generator::key' => + 'generator::key' => array ( 0 => 'mixed', ), - 'Generator::next' => + 'generator::next' => array ( 0 => 'void', ), - 'Generator::rewind' => + 'generator::rewind' => array ( 0 => 'void', ), - 'Generator::send' => + 'generator::send' => array ( 0 => 'mixed', 'value' => 'mixed', ), - 'Generator::throw' => + 'generator::throw' => array ( 0 => 'mixed', 'exception' => 'Throwable', ), - 'Generator::valid' => + 'generator::valid' => array ( 0 => 'bool', ), - 'GlobIterator::__construct' => + 'globiterator::__construct' => array ( 0 => 'void', 'pattern' => 'string', 'flags=' => 'int', ), - 'GlobIterator::count' => + 'globiterator::count' => array ( 0 => 'int', ), - 'GlobIterator::current' => + 'globiterator::current' => array ( 0 => 'FilesystemIterator|SplFileInfo|string', ), - 'GlobIterator::getATime' => + 'globiterator::getatime' => array ( 0 => 'int', ), - 'GlobIterator::getBasename' => + 'globiterator::getbasename' => array ( 0 => 'string', 'suffix=' => 'string', ), - 'GlobIterator::getCTime' => + 'globiterator::getctime' => array ( 0 => 'int', ), - 'GlobIterator::getExtension' => + 'globiterator::getextension' => array ( 0 => 'string', ), - 'GlobIterator::getFileInfo' => + 'globiterator::getfileinfo' => array ( 0 => 'SplFileInfo', 'class=' => 'class-string', ), - 'GlobIterator::getFilename' => + 'globiterator::getfilename' => array ( 0 => 'string', ), - 'GlobIterator::getFlags' => + 'globiterator::getflags' => array ( 0 => 'int', ), - 'GlobIterator::getGroup' => + 'globiterator::getgroup' => array ( 0 => 'int', ), - 'GlobIterator::getInode' => + 'globiterator::getinode' => array ( 0 => 'int', ), - 'GlobIterator::getLinkTarget' => + 'globiterator::getlinktarget' => array ( 0 => 'false|string', ), - 'GlobIterator::getMTime' => + 'globiterator::getmtime' => array ( 0 => 'int', ), - 'GlobIterator::getOwner' => + 'globiterator::getowner' => array ( 0 => 'int', ), - 'GlobIterator::getPath' => + 'globiterator::getpath' => array ( 0 => 'string', ), - 'GlobIterator::getPathInfo' => + 'globiterator::getpathinfo' => array ( 0 => 'SplFileInfo|null', 'class=' => 'class-string', ), - 'GlobIterator::getPathname' => + 'globiterator::getpathname' => array ( 0 => 'string', ), - 'GlobIterator::getPerms' => + 'globiterator::getperms' => array ( 0 => 'int', ), - 'GlobIterator::getRealPath' => + 'globiterator::getrealpath' => array ( 0 => 'false|non-falsy-string', ), - 'GlobIterator::getSize' => + 'globiterator::getsize' => array ( 0 => 'int', ), - 'GlobIterator::getType' => + 'globiterator::gettype' => array ( 0 => 'false|string', ), - 'GlobIterator::isDir' => + 'globiterator::isdir' => array ( 0 => 'bool', ), - 'GlobIterator::isDot' => + 'globiterator::isdot' => array ( 0 => 'bool', ), - 'GlobIterator::isExecutable' => + 'globiterator::isexecutable' => array ( 0 => 'bool', ), - 'GlobIterator::isFile' => + 'globiterator::isfile' => array ( 0 => 'bool', ), - 'GlobIterator::isLink' => + 'globiterator::islink' => array ( 0 => 'bool', ), - 'GlobIterator::isReadable' => + 'globiterator::isreadable' => array ( 0 => 'bool', ), - 'GlobIterator::isWritable' => + 'globiterator::iswritable' => array ( 0 => 'bool', ), - 'GlobIterator::key' => + 'globiterator::key' => array ( 0 => 'string', ), - 'GlobIterator::next' => + 'globiterator::next' => array ( 0 => 'void', ), - 'GlobIterator::openFile' => + 'globiterator::openfile' => array ( 0 => 'SplFileObject', 'mode=' => 'string', 'useIncludePath=' => 'bool', 'context=' => 'resource', ), - 'GlobIterator::rewind' => + 'globiterator::rewind' => array ( 0 => 'void', ), - 'GlobIterator::seek' => + 'globiterator::seek' => array ( 0 => 'void', 'offset' => 'int', ), - 'GlobIterator::setFileClass' => + 'globiterator::setfileclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'GlobIterator::setFlags' => + 'globiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'GlobIterator::setInfoClass' => + 'globiterator::setinfoclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'GlobIterator::valid' => + 'globiterator::valid' => array ( 0 => 'bool', ), - 'Gmagick::__construct' => + 'gmagick::__construct' => array ( 0 => 'void', 'filename=' => 'string', ), - 'Gmagick::addimage' => + 'gmagick::addimage' => array ( 0 => 'Gmagick', 'gmagick' => 'gmagick', ), - 'Gmagick::addnoiseimage' => + 'gmagick::addnoiseimage' => array ( 0 => 'Gmagick', 'noise' => 'int', ), - 'Gmagick::annotateimage' => + 'gmagick::annotateimage' => array ( 0 => 'Gmagick', 'gmagickdraw' => 'gmagickdraw', @@ -8651,27 +8651,27 @@ 'angle' => 'float', 'text' => 'string', ), - 'Gmagick::blurimage' => + 'gmagick::blurimage' => array ( 0 => 'Gmagick', 'radius' => 'float', 'sigma' => 'float', 'channel=' => 'int', ), - 'Gmagick::borderimage' => + 'gmagick::borderimage' => array ( 0 => 'Gmagick', 'color' => 'gmagickpixel', 'width' => 'int', 'height' => 'int', ), - 'Gmagick::charcoalimage' => + 'gmagick::charcoalimage' => array ( 0 => 'Gmagick', 'radius' => 'float', 'sigma' => 'float', ), - 'Gmagick::chopimage' => + 'gmagick::chopimage' => array ( 0 => 'Gmagick', 'width' => 'int', @@ -8679,16 +8679,16 @@ 'x' => 'int', 'y' => 'int', ), - 'Gmagick::clear' => + 'gmagick::clear' => array ( 0 => 'Gmagick', ), - 'Gmagick::commentimage' => + 'gmagick::commentimage' => array ( 0 => 'Gmagick', 'comment' => 'string', ), - 'Gmagick::compositeimage' => + 'gmagick::compositeimage' => array ( 0 => 'Gmagick', 'source' => 'gmagick', @@ -8696,7 +8696,7 @@ 'x' => 'int', 'y' => 'int', ), - 'Gmagick::cropimage' => + 'gmagick::cropimage' => array ( 0 => 'Gmagick', 'width' => 'int', @@ -8704,66 +8704,66 @@ 'x' => 'int', 'y' => 'int', ), - 'Gmagick::cropthumbnailimage' => + 'gmagick::cropthumbnailimage' => array ( 0 => 'Gmagick', 'width' => 'int', 'height' => 'int', ), - 'Gmagick::current' => + 'gmagick::current' => array ( 0 => 'Gmagick', ), - 'Gmagick::cyclecolormapimage' => + 'gmagick::cyclecolormapimage' => array ( 0 => 'Gmagick', 'displace' => 'int', ), - 'Gmagick::deconstructimages' => + 'gmagick::deconstructimages' => array ( 0 => 'Gmagick', ), - 'Gmagick::despeckleimage' => + 'gmagick::despeckleimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::destroy' => + 'gmagick::destroy' => array ( 0 => 'bool', ), - 'Gmagick::drawimage' => + 'gmagick::drawimage' => array ( 0 => 'Gmagick', 'gmagickdraw' => 'gmagickdraw', ), - 'Gmagick::edgeimage' => + 'gmagick::edgeimage' => array ( 0 => 'Gmagick', 'radius' => 'float', ), - 'Gmagick::embossimage' => + 'gmagick::embossimage' => array ( 0 => 'Gmagick', 'radius' => 'float', 'sigma' => 'float', ), - 'Gmagick::enhanceimage' => + 'gmagick::enhanceimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::equalizeimage' => + 'gmagick::equalizeimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::flipimage' => + 'gmagick::flipimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::flopimage' => + 'gmagick::flopimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::frameimage' => + 'gmagick::frameimage' => array ( 0 => 'Gmagick', 'color' => 'gmagickpixel', @@ -8772,192 +8772,192 @@ 'inner_bevel' => 'int', 'outer_bevel' => 'int', ), - 'Gmagick::gammaimage' => + 'gmagick::gammaimage' => array ( 0 => 'Gmagick', 'gamma' => 'float', ), - 'Gmagick::getcopyright' => + 'gmagick::getcopyright' => array ( 0 => 'string', ), - 'Gmagick::getfilename' => + 'gmagick::getfilename' => array ( 0 => 'string', ), - 'Gmagick::getimagebackgroundcolor' => + 'gmagick::getimagebackgroundcolor' => array ( 0 => 'GmagickPixel', ), - 'Gmagick::getimageblueprimary' => + 'gmagick::getimageblueprimary' => array ( 0 => 'array', ), - 'Gmagick::getimagebordercolor' => + 'gmagick::getimagebordercolor' => array ( 0 => 'GmagickPixel', ), - 'Gmagick::getimagechanneldepth' => + 'gmagick::getimagechanneldepth' => array ( 0 => 'int', 'channel_type' => 'int', ), - 'Gmagick::getimagecolors' => + 'gmagick::getimagecolors' => array ( 0 => 'int', ), - 'Gmagick::getimagecolorspace' => + 'gmagick::getimagecolorspace' => array ( 0 => 'int', ), - 'Gmagick::getimagecompose' => + 'gmagick::getimagecompose' => array ( 0 => 'int', ), - 'Gmagick::getimagedelay' => + 'gmagick::getimagedelay' => array ( 0 => 'int', ), - 'Gmagick::getimagedepth' => + 'gmagick::getimagedepth' => array ( 0 => 'int', ), - 'Gmagick::getimagedispose' => + 'gmagick::getimagedispose' => array ( 0 => 'int', ), - 'Gmagick::getimageextrema' => + 'gmagick::getimageextrema' => array ( 0 => 'array', ), - 'Gmagick::getimagefilename' => + 'gmagick::getimagefilename' => array ( 0 => 'string', ), - 'Gmagick::getimageformat' => + 'gmagick::getimageformat' => array ( 0 => 'string', ), - 'Gmagick::getimagegamma' => + 'gmagick::getimagegamma' => array ( 0 => 'float', ), - 'Gmagick::getimagegreenprimary' => + 'gmagick::getimagegreenprimary' => array ( 0 => 'array', ), - 'Gmagick::getimageheight' => + 'gmagick::getimageheight' => array ( 0 => 'int', ), - 'Gmagick::getimagehistogram' => + 'gmagick::getimagehistogram' => array ( 0 => 'array', ), - 'Gmagick::getimageindex' => + 'gmagick::getimageindex' => array ( 0 => 'int', ), - 'Gmagick::getimageinterlacescheme' => + 'gmagick::getimageinterlacescheme' => array ( 0 => 'int', ), - 'Gmagick::getimageiterations' => + 'gmagick::getimageiterations' => array ( 0 => 'int', ), - 'Gmagick::getimagematte' => + 'gmagick::getimagematte' => array ( 0 => 'int', ), - 'Gmagick::getimagemattecolor' => + 'gmagick::getimagemattecolor' => array ( 0 => 'GmagickPixel', ), - 'Gmagick::getimageprofile' => + 'gmagick::getimageprofile' => array ( 0 => 'string', 'name' => 'string', ), - 'Gmagick::getimageredprimary' => + 'gmagick::getimageredprimary' => array ( 0 => 'array', ), - 'Gmagick::getimagerenderingintent' => + 'gmagick::getimagerenderingintent' => array ( 0 => 'int', ), - 'Gmagick::getimageresolution' => + 'gmagick::getimageresolution' => array ( 0 => 'array', ), - 'Gmagick::getimagescene' => + 'gmagick::getimagescene' => array ( 0 => 'int', ), - 'Gmagick::getimagesignature' => + 'gmagick::getimagesignature' => array ( 0 => 'string', ), - 'Gmagick::getimagetype' => + 'gmagick::getimagetype' => array ( 0 => 'int', ), - 'Gmagick::getimageunits' => + 'gmagick::getimageunits' => array ( 0 => 'int', ), - 'Gmagick::getimagewhitepoint' => + 'gmagick::getimagewhitepoint' => array ( 0 => 'array', ), - 'Gmagick::getimagewidth' => + 'gmagick::getimagewidth' => array ( 0 => 'int', ), - 'Gmagick::getpackagename' => + 'gmagick::getpackagename' => array ( 0 => 'string', ), - 'Gmagick::getquantumdepth' => + 'gmagick::getquantumdepth' => array ( 0 => 'array', ), - 'Gmagick::getreleasedate' => + 'gmagick::getreleasedate' => array ( 0 => 'string', ), - 'Gmagick::getsamplingfactors' => + 'gmagick::getsamplingfactors' => array ( 0 => 'array', ), - 'Gmagick::getsize' => + 'gmagick::getsize' => array ( 0 => 'array', ), - 'Gmagick::getversion' => + 'gmagick::getversion' => array ( 0 => 'array', ), - 'Gmagick::hasnextimage' => + 'gmagick::hasnextimage' => array ( 0 => 'bool', ), - 'Gmagick::haspreviousimage' => + 'gmagick::haspreviousimage' => array ( 0 => 'bool', ), - 'Gmagick::implodeimage' => + 'gmagick::implodeimage' => array ( 0 => 'mixed', 'radius' => 'float', ), - 'Gmagick::labelimage' => + 'gmagick::labelimage' => array ( 0 => 'mixed', 'label' => 'string', ), - 'Gmagick::levelimage' => + 'gmagick::levelimage' => array ( 0 => 'mixed', 'blackpoint' => 'float', @@ -8965,40 +8965,40 @@ 'whitepoint' => 'float', 'channel=' => 'int', ), - 'Gmagick::magnifyimage' => + 'gmagick::magnifyimage' => array ( 0 => 'mixed', ), - 'Gmagick::mapimage' => + 'gmagick::mapimage' => array ( 0 => 'Gmagick', 'gmagick' => 'gmagick', 'dither' => 'bool', ), - 'Gmagick::medianfilterimage' => + 'gmagick::medianfilterimage' => array ( 0 => 'void', 'radius' => 'float', ), - 'Gmagick::minifyimage' => + 'gmagick::minifyimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::modulateimage' => + 'gmagick::modulateimage' => array ( 0 => 'Gmagick', 'brightness' => 'float', 'saturation' => 'float', 'hue' => 'float', ), - 'Gmagick::motionblurimage' => + 'gmagick::motionblurimage' => array ( 0 => 'Gmagick', 'radius' => 'float', 'sigma' => 'float', 'angle' => 'float', ), - 'Gmagick::newimage' => + 'gmagick::newimage' => array ( 0 => 'Gmagick', 'width' => 'int', @@ -9006,31 +9006,31 @@ 'background' => 'string', 'format=' => 'string', ), - 'Gmagick::nextimage' => + 'gmagick::nextimage' => array ( 0 => 'bool', ), - 'Gmagick::normalizeimage' => + 'gmagick::normalizeimage' => array ( 0 => 'Gmagick', 'channel=' => 'int', ), - 'Gmagick::oilpaintimage' => + 'gmagick::oilpaintimage' => array ( 0 => 'Gmagick', 'radius' => 'float', ), - 'Gmagick::previousimage' => + 'gmagick::previousimage' => array ( 0 => 'bool', ), - 'Gmagick::profileimage' => + 'gmagick::profileimage' => array ( 0 => 'Gmagick', 'name' => 'string', 'profile' => 'string', ), - 'Gmagick::quantizeimage' => + 'gmagick::quantizeimage' => array ( 0 => 'Gmagick', 'numcolors' => 'int', @@ -9039,7 +9039,7 @@ 'dither' => 'bool', 'measureerror' => 'bool', ), - 'Gmagick::quantizeimages' => + 'gmagick::quantizeimages' => array ( 0 => 'Gmagick', 'numcolors' => 'int', @@ -9048,29 +9048,29 @@ 'dither' => 'bool', 'measureerror' => 'bool', ), - 'Gmagick::queryfontmetrics' => + 'gmagick::queryfontmetrics' => array ( 0 => 'array', 'draw' => 'gmagickdraw', 'text' => 'string', ), - 'Gmagick::queryfonts' => + 'gmagick::queryfonts' => array ( 0 => 'array', 'pattern=' => 'string', ), - 'Gmagick::queryformats' => + 'gmagick::queryformats' => array ( 0 => 'array', 'pattern=' => 'string', ), - 'Gmagick::radialblurimage' => + 'gmagick::radialblurimage' => array ( 0 => 'Gmagick', 'angle' => 'float', 'channel=' => 'int', ), - 'Gmagick::raiseimage' => + 'gmagick::raiseimage' => array ( 0 => 'Gmagick', 'width' => 'int', @@ -9079,43 +9079,43 @@ 'y' => 'int', 'raise' => 'bool', ), - 'Gmagick::read' => + 'gmagick::read' => array ( 0 => 'Gmagick', 'filename' => 'string', ), - 'Gmagick::readimage' => + 'gmagick::readimage' => array ( 0 => 'Gmagick', 'filename' => 'string', ), - 'Gmagick::readimageblob' => + 'gmagick::readimageblob' => array ( 0 => 'Gmagick', 'imagecontents' => 'string', 'filename=' => 'string', ), - 'Gmagick::readimagefile' => + 'gmagick::readimagefile' => array ( 0 => 'Gmagick', 'fp' => 'resource', 'filename=' => 'string', ), - 'Gmagick::reducenoiseimage' => + 'gmagick::reducenoiseimage' => array ( 0 => 'Gmagick', 'radius' => 'float', ), - 'Gmagick::removeimage' => + 'gmagick::removeimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::removeimageprofile' => + 'gmagick::removeimageprofile' => array ( 0 => 'string', 'name' => 'string', ), - 'Gmagick::resampleimage' => + 'gmagick::resampleimage' => array ( 0 => 'Gmagick', 'xresolution' => 'float', @@ -9123,7 +9123,7 @@ 'filter' => 'int', 'blur' => 'float', ), - 'Gmagick::resizeimage' => + 'gmagick::resizeimage' => array ( 0 => 'Gmagick', 'width' => 'int', @@ -9132,235 +9132,235 @@ 'blur' => 'float', 'fit=' => 'bool', ), - 'Gmagick::rollimage' => + 'gmagick::rollimage' => array ( 0 => 'Gmagick', 'x' => 'int', 'y' => 'int', ), - 'Gmagick::rotateimage' => + 'gmagick::rotateimage' => array ( 0 => 'Gmagick', 'color' => 'mixed', 'degrees' => 'float', ), - 'Gmagick::scaleimage' => + 'gmagick::scaleimage' => array ( 0 => 'Gmagick', 'width' => 'int', 'height' => 'int', 'fit=' => 'bool', ), - 'Gmagick::separateimagechannel' => + 'gmagick::separateimagechannel' => array ( 0 => 'Gmagick', 'channel' => 'int', ), - 'Gmagick::setCompressionQuality' => + 'gmagick::setcompressionquality' => array ( 0 => 'Gmagick', 'quality' => 'int', ), - 'Gmagick::setfilename' => + 'gmagick::setfilename' => array ( 0 => 'Gmagick', 'filename' => 'string', ), - 'Gmagick::setimagebackgroundcolor' => + 'gmagick::setimagebackgroundcolor' => array ( 0 => 'Gmagick', 'color' => 'gmagickpixel', ), - 'Gmagick::setimageblueprimary' => + 'gmagick::setimageblueprimary' => array ( 0 => 'Gmagick', 'x' => 'float', 'y' => 'float', ), - 'Gmagick::setimagebordercolor' => + 'gmagick::setimagebordercolor' => array ( 0 => 'Gmagick', 'color' => 'gmagickpixel', ), - 'Gmagick::setimagechanneldepth' => + 'gmagick::setimagechanneldepth' => array ( 0 => 'Gmagick', 'channel' => 'int', 'depth' => 'int', ), - 'Gmagick::setimagecolorspace' => + 'gmagick::setimagecolorspace' => array ( 0 => 'Gmagick', 'colorspace' => 'int', ), - 'Gmagick::setimagecompose' => + 'gmagick::setimagecompose' => array ( 0 => 'Gmagick', 'composite' => 'int', ), - 'Gmagick::setimagedelay' => + 'gmagick::setimagedelay' => array ( 0 => 'Gmagick', 'delay' => 'int', ), - 'Gmagick::setimagedepth' => + 'gmagick::setimagedepth' => array ( 0 => 'Gmagick', 'depth' => 'int', ), - 'Gmagick::setimagedispose' => + 'gmagick::setimagedispose' => array ( 0 => 'Gmagick', 'disposetype' => 'int', ), - 'Gmagick::setimagefilename' => + 'gmagick::setimagefilename' => array ( 0 => 'Gmagick', 'filename' => 'string', ), - 'Gmagick::setimageformat' => + 'gmagick::setimageformat' => array ( 0 => 'Gmagick', 'imageformat' => 'string', ), - 'Gmagick::setimagegamma' => + 'gmagick::setimagegamma' => array ( 0 => 'Gmagick', 'gamma' => 'float', ), - 'Gmagick::setimagegreenprimary' => + 'gmagick::setimagegreenprimary' => array ( 0 => 'Gmagick', 'x' => 'float', 'y' => 'float', ), - 'Gmagick::setimageindex' => + 'gmagick::setimageindex' => array ( 0 => 'Gmagick', 'index' => 'int', ), - 'Gmagick::setimageinterlacescheme' => + 'gmagick::setimageinterlacescheme' => array ( 0 => 'Gmagick', 'interlace' => 'int', ), - 'Gmagick::setimageiterations' => + 'gmagick::setimageiterations' => array ( 0 => 'Gmagick', 'iterations' => 'int', ), - 'Gmagick::setimageprofile' => + 'gmagick::setimageprofile' => array ( 0 => 'Gmagick', 'name' => 'string', 'profile' => 'string', ), - 'Gmagick::setimageredprimary' => + 'gmagick::setimageredprimary' => array ( 0 => 'Gmagick', 'x' => 'float', 'y' => 'float', ), - 'Gmagick::setimagerenderingintent' => + 'gmagick::setimagerenderingintent' => array ( 0 => 'Gmagick', 'rendering_intent' => 'int', ), - 'Gmagick::setimageresolution' => + 'gmagick::setimageresolution' => array ( 0 => 'Gmagick', 'xresolution' => 'float', 'yresolution' => 'float', ), - 'Gmagick::setimagescene' => + 'gmagick::setimagescene' => array ( 0 => 'Gmagick', 'scene' => 'int', ), - 'Gmagick::setimagetype' => + 'gmagick::setimagetype' => array ( 0 => 'Gmagick', 'imgtype' => 'int', ), - 'Gmagick::setimageunits' => + 'gmagick::setimageunits' => array ( 0 => 'Gmagick', 'resolution' => 'int', ), - 'Gmagick::setimagewhitepoint' => + 'gmagick::setimagewhitepoint' => array ( 0 => 'Gmagick', 'x' => 'float', 'y' => 'float', ), - 'Gmagick::setsamplingfactors' => + 'gmagick::setsamplingfactors' => array ( 0 => 'Gmagick', 'factors' => 'array', ), - 'Gmagick::setsize' => + 'gmagick::setsize' => array ( 0 => 'Gmagick', 'columns' => 'int', 'rows' => 'int', ), - 'Gmagick::shearimage' => + 'gmagick::shearimage' => array ( 0 => 'Gmagick', 'color' => 'mixed', 'xshear' => 'float', 'yshear' => 'float', ), - 'Gmagick::solarizeimage' => + 'gmagick::solarizeimage' => array ( 0 => 'Gmagick', 'threshold' => 'int', ), - 'Gmagick::spreadimage' => + 'gmagick::spreadimage' => array ( 0 => 'Gmagick', 'radius' => 'float', ), - 'Gmagick::stripimage' => + 'gmagick::stripimage' => array ( 0 => 'Gmagick', ), - 'Gmagick::swirlimage' => + 'gmagick::swirlimage' => array ( 0 => 'Gmagick', 'degrees' => 'float', ), - 'Gmagick::thumbnailimage' => + 'gmagick::thumbnailimage' => array ( 0 => 'Gmagick', 'width' => 'int', 'height' => 'int', 'fit=' => 'bool', ), - 'Gmagick::trimimage' => + 'gmagick::trimimage' => array ( 0 => 'Gmagick', 'fuzz' => 'float', ), - 'Gmagick::write' => + 'gmagick::write' => array ( 0 => 'Gmagick', 'filename' => 'string', ), - 'Gmagick::writeimage' => + 'gmagick::writeimage' => array ( 0 => 'Gmagick', 'filename' => 'string', 'all_frames=' => 'bool', ), - 'GmagickDraw::annotate' => + 'gmagickdraw::annotate' => array ( 0 => 'GmagickDraw', 'x' => 'float', 'y' => 'float', 'text' => 'string', ), - 'GmagickDraw::arc' => + 'gmagickdraw::arc' => array ( 0 => 'GmagickDraw', 'sx' => 'float', @@ -9370,12 +9370,12 @@ 'sd' => 'float', 'ed' => 'float', ), - 'GmagickDraw::bezier' => + 'gmagickdraw::bezier' => array ( 0 => 'GmagickDraw', 'coordinate_array' => 'array', ), - 'GmagickDraw::ellipse' => + 'gmagickdraw::ellipse' => array ( 0 => 'GmagickDraw', 'ox' => 'float', @@ -9385,51 +9385,51 @@ 'start' => 'float', 'end' => 'float', ), - 'GmagickDraw::getfillcolor' => + 'gmagickdraw::getfillcolor' => array ( 0 => 'GmagickPixel', ), - 'GmagickDraw::getfillopacity' => + 'gmagickdraw::getfillopacity' => array ( 0 => 'float', ), - 'GmagickDraw::getfont' => + 'gmagickdraw::getfont' => array ( 0 => 'false|string', ), - 'GmagickDraw::getfontsize' => + 'gmagickdraw::getfontsize' => array ( 0 => 'float', ), - 'GmagickDraw::getfontstyle' => + 'gmagickdraw::getfontstyle' => array ( 0 => 'int', ), - 'GmagickDraw::getfontweight' => + 'gmagickdraw::getfontweight' => array ( 0 => 'int', ), - 'GmagickDraw::getstrokecolor' => + 'gmagickdraw::getstrokecolor' => array ( 0 => 'GmagickPixel', ), - 'GmagickDraw::getstrokeopacity' => + 'gmagickdraw::getstrokeopacity' => array ( 0 => 'float', ), - 'GmagickDraw::getstrokewidth' => + 'gmagickdraw::getstrokewidth' => array ( 0 => 'float', ), - 'GmagickDraw::gettextdecoration' => + 'gmagickdraw::gettextdecoration' => array ( 0 => 'int', ), - 'GmagickDraw::gettextencoding' => + 'gmagickdraw::gettextencoding' => array ( 0 => 'false|string', ), - 'GmagickDraw::line' => + 'gmagickdraw::line' => array ( 0 => 'GmagickDraw', 'sx' => 'float', @@ -9437,23 +9437,23 @@ 'ex' => 'float', 'ey' => 'float', ), - 'GmagickDraw::point' => + 'gmagickdraw::point' => array ( 0 => 'GmagickDraw', 'x' => 'float', 'y' => 'float', ), - 'GmagickDraw::polygon' => + 'gmagickdraw::polygon' => array ( 0 => 'GmagickDraw', 'coordinates' => 'array', ), - 'GmagickDraw::polyline' => + 'gmagickdraw::polyline' => array ( 0 => 'GmagickDraw', 'coordinate_array' => 'array', ), - 'GmagickDraw::rectangle' => + 'gmagickdraw::rectangle' => array ( 0 => 'GmagickDraw', 'x1' => 'float', @@ -9461,12 +9461,12 @@ 'x2' => 'float', 'y2' => 'float', ), - 'GmagickDraw::rotate' => + 'gmagickdraw::rotate' => array ( 0 => 'GmagickDraw', 'degrees' => 'float', ), - 'GmagickDraw::roundrectangle' => + 'gmagickdraw::roundrectangle' => array ( 0 => 'GmagickDraw', 'x1' => 'float', @@ -9476,99 +9476,99 @@ 'rx' => 'float', 'ry' => 'float', ), - 'GmagickDraw::scale' => + 'gmagickdraw::scale' => array ( 0 => 'GmagickDraw', 'x' => 'float', 'y' => 'float', ), - 'GmagickDraw::setfillcolor' => + 'gmagickdraw::setfillcolor' => array ( 0 => 'GmagickDraw', 'color' => 'string', ), - 'GmagickDraw::setfillopacity' => + 'gmagickdraw::setfillopacity' => array ( 0 => 'GmagickDraw', 'fill_opacity' => 'float', ), - 'GmagickDraw::setfont' => + 'gmagickdraw::setfont' => array ( 0 => 'GmagickDraw', 'font' => 'string', ), - 'GmagickDraw::setfontsize' => + 'gmagickdraw::setfontsize' => array ( 0 => 'GmagickDraw', 'pointsize' => 'float', ), - 'GmagickDraw::setfontstyle' => + 'gmagickdraw::setfontstyle' => array ( 0 => 'GmagickDraw', 'style' => 'int', ), - 'GmagickDraw::setfontweight' => + 'gmagickdraw::setfontweight' => array ( 0 => 'GmagickDraw', 'weight' => 'int', ), - 'GmagickDraw::setstrokecolor' => + 'gmagickdraw::setstrokecolor' => array ( 0 => 'GmagickDraw', 'color' => 'gmagickpixel', ), - 'GmagickDraw::setstrokeopacity' => + 'gmagickdraw::setstrokeopacity' => array ( 0 => 'GmagickDraw', 'stroke_opacity' => 'float', ), - 'GmagickDraw::setstrokewidth' => + 'gmagickdraw::setstrokewidth' => array ( 0 => 'GmagickDraw', 'width' => 'float', ), - 'GmagickDraw::settextdecoration' => + 'gmagickdraw::settextdecoration' => array ( 0 => 'GmagickDraw', 'decoration' => 'int', ), - 'GmagickDraw::settextencoding' => + 'gmagickdraw::settextencoding' => array ( 0 => 'GmagickDraw', 'encoding' => 'string', ), - 'GmagickPixel::__construct' => + 'gmagickpixel::__construct' => array ( 0 => 'void', 'color=' => 'string', ), - 'GmagickPixel::getcolor' => + 'gmagickpixel::getcolor' => array ( 0 => 'mixed', 'as_array=' => 'bool', 'normalize_array=' => 'bool', ), - 'GmagickPixel::getcolorcount' => + 'gmagickpixel::getcolorcount' => array ( 0 => 'int', ), - 'GmagickPixel::getcolorvalue' => + 'gmagickpixel::getcolorvalue' => array ( 0 => 'float', 'color' => 'int', ), - 'GmagickPixel::setcolor' => + 'gmagickpixel::setcolor' => array ( 0 => 'GmagickPixel', 'color' => 'string', ), - 'GmagickPixel::setcolorvalue' => + 'gmagickpixel::setcolorvalue' => array ( 0 => 'GmagickPixel', 'color' => 'int', 'value' => 'float', ), - 'Grpc\\Call::__construct' => + 'grpc\\call::__construct' => array ( 0 => 'void', 'channel' => 'Grpc\\Channel', @@ -9576,276 +9576,276 @@ 'absolute_deadline' => 'Grpc\\Timeval', 'host_override=' => 'mixed', ), - 'Grpc\\Call::cancel' => + 'grpc\\call::cancel' => array ( 0 => 'mixed', ), - 'Grpc\\Call::getPeer' => + 'grpc\\call::getpeer' => array ( 0 => 'string', ), - 'Grpc\\Call::setCredentials' => + 'grpc\\call::setcredentials' => array ( 0 => 'int', 'creds_obj' => 'Grpc\\CallCredentials', ), - 'Grpc\\Call::startBatch' => + 'grpc\\call::startbatch' => array ( 0 => 'object', 'batch' => 'array', ), - 'Grpc\\CallCredentials::createComposite' => + 'grpc\\callcredentials::createcomposite' => array ( 0 => 'Grpc\\CallCredentials', 'cred1' => 'Grpc\\CallCredentials', 'cred2' => 'Grpc\\CallCredentials', ), - 'Grpc\\CallCredentials::createFromPlugin' => + 'grpc\\callcredentials::createfromplugin' => array ( 0 => 'Grpc\\CallCredentials', 'callback' => 'Closure', ), - 'Grpc\\Channel::__construct' => + 'grpc\\channel::__construct' => array ( 0 => 'void', 'target' => 'string', 'args=' => 'array', ), - 'Grpc\\Channel::close' => + 'grpc\\channel::close' => array ( 0 => 'mixed', ), - 'Grpc\\Channel::getConnectivityState' => + 'grpc\\channel::getconnectivitystate' => array ( 0 => 'int', 'try_to_connect=' => 'bool', ), - 'Grpc\\Channel::getTarget' => + 'grpc\\channel::gettarget' => array ( 0 => 'string', ), - 'Grpc\\Channel::watchConnectivityState' => + 'grpc\\channel::watchconnectivitystate' => array ( 0 => 'bool', 'last_state' => 'int', 'deadline_obj' => 'Grpc\\Timeval', ), - 'Grpc\\ChannelCredentials::createComposite' => + 'grpc\\channelcredentials::createcomposite' => array ( 0 => 'Grpc\\ChannelCredentials', 'cred1' => 'Grpc\\ChannelCredentials', 'cred2' => 'Grpc\\CallCredentials', ), - 'Grpc\\ChannelCredentials::createDefault' => + 'grpc\\channelcredentials::createdefault' => array ( 0 => 'Grpc\\ChannelCredentials', ), - 'Grpc\\ChannelCredentials::createInsecure' => + 'grpc\\channelcredentials::createinsecure' => array ( 0 => 'null', ), - 'Grpc\\ChannelCredentials::createSsl' => + 'grpc\\channelcredentials::createssl' => array ( 0 => 'Grpc\\ChannelCredentials', 'pem_root_certs' => 'string', 'pem_private_key=' => 'string', 'pem_cert_chain=' => 'string', ), - 'Grpc\\ChannelCredentials::setDefaultRootsPem' => + 'grpc\\channelcredentials::setdefaultrootspem' => array ( 0 => 'mixed', 'pem_roots' => 'string', ), - 'Grpc\\Server::__construct' => + 'grpc\\server::__construct' => array ( 0 => 'void', 'args' => 'array', ), - 'Grpc\\Server::addHttp2Port' => + 'grpc\\server::addhttp2port' => array ( 0 => 'bool', 'addr' => 'string', ), - 'Grpc\\Server::addSecureHttp2Port' => + 'grpc\\server::addsecurehttp2port' => array ( 0 => 'bool', 'addr' => 'string', 'creds_obj' => 'Grpc\\ServerCredentials', ), - 'Grpc\\Server::requestCall' => + 'grpc\\server::requestcall' => array ( 0 => 'mixed', 'tag_new' => 'int', 'tag_cancel' => 'int', ), - 'Grpc\\Server::start' => + 'grpc\\server::start' => array ( 0 => 'mixed', ), - 'Grpc\\ServerCredentials::createSsl' => + 'grpc\\servercredentials::createssl' => array ( 0 => 'object', 'pem_root_certs' => 'string', 'pem_private_key' => 'string', 'pem_cert_chain' => 'string', ), - 'Grpc\\Timeval::__construct' => + 'grpc\\timeval::__construct' => array ( 0 => 'void', 'usec' => 'int', ), - 'Grpc\\Timeval::add' => + 'grpc\\timeval::add' => array ( 0 => 'Grpc\\Timeval', 'other' => 'Grpc\\Timeval', ), - 'Grpc\\Timeval::compare' => + 'grpc\\timeval::compare' => array ( 0 => 'int', 'a' => 'Grpc\\Timeval', 'b' => 'Grpc\\Timeval', ), - 'Grpc\\Timeval::infFuture' => + 'grpc\\timeval::inffuture' => array ( 0 => 'Grpc\\Timeval', ), - 'Grpc\\Timeval::infPast' => + 'grpc\\timeval::infpast' => array ( 0 => 'Grpc\\Timeval', ), - 'Grpc\\Timeval::now' => + 'grpc\\timeval::now' => array ( 0 => 'Grpc\\Timeval', ), - 'Grpc\\Timeval::similar' => + 'grpc\\timeval::similar' => array ( 0 => 'bool', 'a' => 'Grpc\\Timeval', 'b' => 'Grpc\\Timeval', 'threshold' => 'Grpc\\Timeval', ), - 'Grpc\\Timeval::sleepUntil' => + 'grpc\\timeval::sleepuntil' => array ( 0 => 'mixed', ), - 'Grpc\\Timeval::subtract' => + 'grpc\\timeval::subtract' => array ( 0 => 'Grpc\\Timeval', 'other' => 'Grpc\\Timeval', ), - 'Grpc\\Timeval::zero' => + 'grpc\\timeval::zero' => array ( 0 => 'Grpc\\Timeval', ), - 'HRTime\\PerformanceCounter::getElapsedTicks' => + 'hrtime\\performancecounter::getelapsedticks' => array ( 0 => 'int', ), - 'HRTime\\PerformanceCounter::getFrequency' => + 'hrtime\\performancecounter::getfrequency' => array ( 0 => 'int', ), - 'HRTime\\PerformanceCounter::getLastElapsedTicks' => + 'hrtime\\performancecounter::getlastelapsedticks' => array ( 0 => 'int', ), - 'HRTime\\PerformanceCounter::getTicks' => + 'hrtime\\performancecounter::getticks' => array ( 0 => 'int', ), - 'HRTime\\PerformanceCounter::getTicksSince' => + 'hrtime\\performancecounter::gettickssince' => array ( 0 => 'int', 'start' => 'int', ), - 'HRTime\\PerformanceCounter::isRunning' => + 'hrtime\\performancecounter::isrunning' => array ( 0 => 'bool', ), - 'HRTime\\PerformanceCounter::start' => + 'hrtime\\performancecounter::start' => array ( 0 => 'void', ), - 'HRTime\\PerformanceCounter::stop' => + 'hrtime\\performancecounter::stop' => array ( 0 => 'void', ), - 'HRTime\\StopWatch::getElapsedTicks' => + 'hrtime\\stopwatch::getelapsedticks' => array ( 0 => 'int', ), - 'HRTime\\StopWatch::getElapsedTime' => + 'hrtime\\stopwatch::getelapsedtime' => array ( 0 => 'float', 'unit=' => 'int', ), - 'HRTime\\StopWatch::getLastElapsedTicks' => + 'hrtime\\stopwatch::getlastelapsedticks' => array ( 0 => 'int', ), - 'HRTime\\StopWatch::getLastElapsedTime' => + 'hrtime\\stopwatch::getlastelapsedtime' => array ( 0 => 'float', 'unit=' => 'int', ), - 'HRTime\\StopWatch::isRunning' => + 'hrtime\\stopwatch::isrunning' => array ( 0 => 'bool', ), - 'HRTime\\StopWatch::start' => + 'hrtime\\stopwatch::start' => array ( 0 => 'void', ), - 'HRTime\\StopWatch::stop' => + 'hrtime\\stopwatch::stop' => array ( 0 => 'void', ), - 'HaruAnnotation::setBorderStyle' => + 'haruannotation::setborderstyle' => array ( 0 => 'bool', 'width' => 'float', 'dash_on' => 'int', 'dash_off' => 'int', ), - 'HaruAnnotation::setHighlightMode' => + 'haruannotation::sethighlightmode' => array ( 0 => 'bool', 'mode' => 'int', ), - 'HaruAnnotation::setIcon' => + 'haruannotation::seticon' => array ( 0 => 'bool', 'icon' => 'int', ), - 'HaruAnnotation::setOpened' => + 'haruannotation::setopened' => array ( 0 => 'bool', 'opened' => 'bool', ), - 'HaruDestination::setFit' => + 'harudestination::setfit' => array ( 0 => 'bool', ), - 'HaruDestination::setFitB' => + 'harudestination::setfitb' => array ( 0 => 'bool', ), - 'HaruDestination::setFitBH' => + 'harudestination::setfitbh' => array ( 0 => 'bool', 'top' => 'float', ), - 'HaruDestination::setFitBV' => + 'harudestination::setfitbv' => array ( 0 => 'bool', 'left' => 'float', ), - 'HaruDestination::setFitH' => + 'harudestination::setfith' => array ( 0 => 'bool', 'top' => 'float', ), - 'HaruDestination::setFitR' => + 'harudestination::setfitr' => array ( 0 => 'bool', 'left' => 'float', @@ -9853,27 +9853,27 @@ 'right' => 'float', 'top' => 'float', ), - 'HaruDestination::setFitV' => + 'harudestination::setfitv' => array ( 0 => 'bool', 'left' => 'float', ), - 'HaruDestination::setXYZ' => + 'harudestination::setxyz' => array ( 0 => 'bool', 'left' => 'float', 'top' => 'float', 'zoom' => 'float', ), - 'HaruDoc::__construct' => + 'harudoc::__construct' => array ( 0 => 'void', ), - 'HaruDoc::addPage' => + 'harudoc::addpage' => array ( 0 => 'object', ), - 'HaruDoc::addPageLabel' => + 'harudoc::addpagelabel' => array ( 0 => 'bool', 'first_page' => 'int', @@ -9881,66 +9881,66 @@ 'first_num' => 'int', 'prefix=' => 'string', ), - 'HaruDoc::createOutline' => + 'harudoc::createoutline' => array ( 0 => 'object', 'title' => 'string', 'parent_outline=' => 'object', 'encoder=' => 'object', ), - 'HaruDoc::getCurrentEncoder' => + 'harudoc::getcurrentencoder' => array ( 0 => 'object', ), - 'HaruDoc::getCurrentPage' => + 'harudoc::getcurrentpage' => array ( 0 => 'object', ), - 'HaruDoc::getEncoder' => + 'harudoc::getencoder' => array ( 0 => 'object', 'encoding' => 'string', ), - 'HaruDoc::getFont' => + 'harudoc::getfont' => array ( 0 => 'object', 'fontname' => 'string', 'encoding=' => 'string', ), - 'HaruDoc::getInfoAttr' => + 'harudoc::getinfoattr' => array ( 0 => 'string', 'type' => 'int', ), - 'HaruDoc::getPageLayout' => + 'harudoc::getpagelayout' => array ( 0 => 'int', ), - 'HaruDoc::getPageMode' => + 'harudoc::getpagemode' => array ( 0 => 'int', ), - 'HaruDoc::getStreamSize' => + 'harudoc::getstreamsize' => array ( 0 => 'int', ), - 'HaruDoc::insertPage' => + 'harudoc::insertpage' => array ( 0 => 'object', 'page' => 'object', ), - 'HaruDoc::loadJPEG' => + 'harudoc::loadjpeg' => array ( 0 => 'object', 'filename' => 'string', ), - 'HaruDoc::loadPNG' => + 'harudoc::loadpng' => array ( 0 => 'object', 'filename' => 'string', 'deferred=' => 'bool', ), - 'HaruDoc::loadRaw' => + 'harudoc::loadraw' => array ( 0 => 'object', 'filename' => 'string', @@ -9948,74 +9948,74 @@ 'height' => 'int', 'color_space' => 'int', ), - 'HaruDoc::loadTTC' => + 'harudoc::loadttc' => array ( 0 => 'string', 'fontfile' => 'string', 'index' => 'int', 'embed=' => 'bool', ), - 'HaruDoc::loadTTF' => + 'harudoc::loadttf' => array ( 0 => 'string', 'fontfile' => 'string', 'embed=' => 'bool', ), - 'HaruDoc::loadType1' => + 'harudoc::loadtype1' => array ( 0 => 'string', 'afmfile' => 'string', 'pfmfile=' => 'string', ), - 'HaruDoc::output' => + 'harudoc::output' => array ( 0 => 'bool', ), - 'HaruDoc::readFromStream' => + 'harudoc::readfromstream' => array ( 0 => 'string', 'bytes' => 'int', ), - 'HaruDoc::resetError' => + 'harudoc::reseterror' => array ( 0 => 'bool', ), - 'HaruDoc::resetStream' => + 'harudoc::resetstream' => array ( 0 => 'bool', ), - 'HaruDoc::save' => + 'harudoc::save' => array ( 0 => 'bool', 'file' => 'string', ), - 'HaruDoc::saveToStream' => + 'harudoc::savetostream' => array ( 0 => 'bool', ), - 'HaruDoc::setCompressionMode' => + 'harudoc::setcompressionmode' => array ( 0 => 'bool', 'mode' => 'int', ), - 'HaruDoc::setCurrentEncoder' => + 'harudoc::setcurrentencoder' => array ( 0 => 'bool', 'encoding' => 'string', ), - 'HaruDoc::setEncryptionMode' => + 'harudoc::setencryptionmode' => array ( 0 => 'bool', 'mode' => 'int', 'key_len=' => 'int', ), - 'HaruDoc::setInfoAttr' => + 'harudoc::setinfoattr' => array ( 0 => 'bool', 'type' => 'int', 'info' => 'string', ), - 'HaruDoc::setInfoDateAttr' => + 'harudoc::setinfodateattr' => array ( 0 => 'bool', 'type' => 'int', @@ -10029,123 +10029,123 @@ 'off_hour' => 'int', 'off_min' => 'int', ), - 'HaruDoc::setOpenAction' => + 'harudoc::setopenaction' => array ( 0 => 'bool', 'destination' => 'object', ), - 'HaruDoc::setPageLayout' => + 'harudoc::setpagelayout' => array ( 0 => 'bool', 'layout' => 'int', ), - 'HaruDoc::setPageMode' => + 'harudoc::setpagemode' => array ( 0 => 'bool', 'mode' => 'int', ), - 'HaruDoc::setPagesConfiguration' => + 'harudoc::setpagesconfiguration' => array ( 0 => 'bool', 'page_per_pages' => 'int', ), - 'HaruDoc::setPassword' => + 'harudoc::setpassword' => array ( 0 => 'bool', 'owner_password' => 'string', 'user_password' => 'string', ), - 'HaruDoc::setPermission' => + 'harudoc::setpermission' => array ( 0 => 'bool', 'permission' => 'int', ), - 'HaruDoc::useCNSEncodings' => + 'harudoc::usecnsencodings' => array ( 0 => 'bool', ), - 'HaruDoc::useCNSFonts' => + 'harudoc::usecnsfonts' => array ( 0 => 'bool', ), - 'HaruDoc::useCNTEncodings' => + 'harudoc::usecntencodings' => array ( 0 => 'bool', ), - 'HaruDoc::useCNTFonts' => + 'harudoc::usecntfonts' => array ( 0 => 'bool', ), - 'HaruDoc::useJPEncodings' => + 'harudoc::usejpencodings' => array ( 0 => 'bool', ), - 'HaruDoc::useJPFonts' => + 'harudoc::usejpfonts' => array ( 0 => 'bool', ), - 'HaruDoc::useKREncodings' => + 'harudoc::usekrencodings' => array ( 0 => 'bool', ), - 'HaruDoc::useKRFonts' => + 'harudoc::usekrfonts' => array ( 0 => 'bool', ), - 'HaruEncoder::getByteType' => + 'haruencoder::getbytetype' => array ( 0 => 'int', 'text' => 'string', 'index' => 'int', ), - 'HaruEncoder::getType' => + 'haruencoder::gettype' => array ( 0 => 'int', ), - 'HaruEncoder::getUnicode' => + 'haruencoder::getunicode' => array ( 0 => 'int', 'character' => 'int', ), - 'HaruEncoder::getWritingMode' => + 'haruencoder::getwritingmode' => array ( 0 => 'int', ), - 'HaruFont::getAscent' => + 'harufont::getascent' => array ( 0 => 'int', ), - 'HaruFont::getCapHeight' => + 'harufont::getcapheight' => array ( 0 => 'int', ), - 'HaruFont::getDescent' => + 'harufont::getdescent' => array ( 0 => 'int', ), - 'HaruFont::getEncodingName' => + 'harufont::getencodingname' => array ( 0 => 'string', ), - 'HaruFont::getFontName' => + 'harufont::getfontname' => array ( 0 => 'string', ), - 'HaruFont::getTextWidth' => + 'harufont::gettextwidth' => array ( 0 => 'array', 'text' => 'string', ), - 'HaruFont::getUnicodeWidth' => + 'harufont::getunicodewidth' => array ( 0 => 'int', 'character' => 'int', ), - 'HaruFont::getXHeight' => + 'harufont::getxheight' => array ( 0 => 'int', ), - 'HaruFont::measureText' => + 'harufont::measuretext' => array ( 0 => 'int', 'text' => 'string', @@ -10155,27 +10155,27 @@ 'word_space' => 'float', 'word_wrap=' => 'bool', ), - 'HaruImage::getBitsPerComponent' => + 'haruimage::getbitspercomponent' => array ( 0 => 'int', ), - 'HaruImage::getColorSpace' => + 'haruimage::getcolorspace' => array ( 0 => 'string', ), - 'HaruImage::getHeight' => + 'haruimage::getheight' => array ( 0 => 'int', ), - 'HaruImage::getSize' => + 'haruimage::getsize' => array ( 0 => 'array', ), - 'HaruImage::getWidth' => + 'haruimage::getwidth' => array ( 0 => 'int', ), - 'HaruImage::setColorMask' => + 'haruimage::setcolormask' => array ( 0 => 'bool', 'rmin' => 'int', @@ -10185,22 +10185,22 @@ 'bmin' => 'int', 'bmax' => 'int', ), - 'HaruImage::setMaskImage' => + 'haruimage::setmaskimage' => array ( 0 => 'bool', 'mask_image' => 'object', ), - 'HaruOutline::setDestination' => + 'haruoutline::setdestination' => array ( 0 => 'bool', 'destination' => 'object', ), - 'HaruOutline::setOpened' => + 'haruoutline::setopened' => array ( 0 => 'bool', 'opened' => 'bool', ), - 'HaruPage::arc' => + 'harupage::arc' => array ( 0 => 'bool', 'x' => 'float', @@ -10209,22 +10209,22 @@ 'ang1' => 'float', 'ang2' => 'float', ), - 'HaruPage::beginText' => + 'harupage::begintext' => array ( 0 => 'bool', ), - 'HaruPage::circle' => + 'harupage::circle' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', 'ray' => 'float', ), - 'HaruPage::closePath' => + 'harupage::closepath' => array ( 0 => 'bool', ), - 'HaruPage::concat' => + 'harupage::concat' => array ( 0 => 'bool', 'a' => 'float', @@ -10234,30 +10234,30 @@ 'x' => 'float', 'y' => 'float', ), - 'HaruPage::createDestination' => + 'harupage::createdestination' => array ( 0 => 'object', ), - 'HaruPage::createLinkAnnotation' => + 'harupage::createlinkannotation' => array ( 0 => 'object', 'rectangle' => 'array', 'destination' => 'object', ), - 'HaruPage::createTextAnnotation' => + 'harupage::createtextannotation' => array ( 0 => 'object', 'rectangle' => 'array', 'text' => 'string', 'encoder=' => 'object', ), - 'HaruPage::createURLAnnotation' => + 'harupage::createurlannotation' => array ( 0 => 'object', 'rectangle' => 'array', 'url' => 'string', ), - 'HaruPage::curveTo' => + 'harupage::curveto' => array ( 0 => 'bool', 'x1' => 'float', @@ -10267,7 +10267,7 @@ 'x3' => 'float', 'y3' => 'float', ), - 'HaruPage::curveTo2' => + 'harupage::curveto2' => array ( 0 => 'bool', 'x2' => 'float', @@ -10275,7 +10275,7 @@ 'x3' => 'float', 'y3' => 'float', ), - 'HaruPage::curveTo3' => + 'harupage::curveto3' => array ( 0 => 'bool', 'x1' => 'float', @@ -10283,7 +10283,7 @@ 'x3' => 'float', 'y3' => 'float', ), - 'HaruPage::drawImage' => + 'harupage::drawimage' => array ( 0 => 'bool', 'image' => 'object', @@ -10292,7 +10292,7 @@ 'width' => 'float', 'height' => 'float', ), - 'HaruPage::ellipse' => + 'harupage::ellipse' => array ( 0 => 'bool', 'x' => 'float', @@ -10300,184 +10300,184 @@ 'xray' => 'float', 'yray' => 'float', ), - 'HaruPage::endPath' => + 'harupage::endpath' => array ( 0 => 'bool', ), - 'HaruPage::endText' => + 'harupage::endtext' => array ( 0 => 'bool', ), - 'HaruPage::eoFillStroke' => + 'harupage::eofillstroke' => array ( 0 => 'bool', 'close_path=' => 'bool', ), - 'HaruPage::eofill' => + 'harupage::eofill' => array ( 0 => 'bool', ), - 'HaruPage::fill' => + 'harupage::fill' => array ( 0 => 'bool', ), - 'HaruPage::fillStroke' => + 'harupage::fillstroke' => array ( 0 => 'bool', 'close_path=' => 'bool', ), - 'HaruPage::getCMYKFill' => + 'harupage::getcmykfill' => array ( 0 => 'array', ), - 'HaruPage::getCMYKStroke' => + 'harupage::getcmykstroke' => array ( 0 => 'array', ), - 'HaruPage::getCharSpace' => + 'harupage::getcharspace' => array ( 0 => 'float', ), - 'HaruPage::getCurrentFont' => + 'harupage::getcurrentfont' => array ( 0 => 'object', ), - 'HaruPage::getCurrentFontSize' => + 'harupage::getcurrentfontsize' => array ( 0 => 'float', ), - 'HaruPage::getCurrentPos' => + 'harupage::getcurrentpos' => array ( 0 => 'array', ), - 'HaruPage::getCurrentTextPos' => + 'harupage::getcurrenttextpos' => array ( 0 => 'array', ), - 'HaruPage::getDash' => + 'harupage::getdash' => array ( 0 => 'array', ), - 'HaruPage::getFillingColorSpace' => + 'harupage::getfillingcolorspace' => array ( 0 => 'int', ), - 'HaruPage::getFlatness' => + 'harupage::getflatness' => array ( 0 => 'float', ), - 'HaruPage::getGMode' => + 'harupage::getgmode' => array ( 0 => 'int', ), - 'HaruPage::getGrayFill' => + 'harupage::getgrayfill' => array ( 0 => 'float', ), - 'HaruPage::getGrayStroke' => + 'harupage::getgraystroke' => array ( 0 => 'float', ), - 'HaruPage::getHeight' => + 'harupage::getheight' => array ( 0 => 'float', ), - 'HaruPage::getHorizontalScaling' => + 'harupage::gethorizontalscaling' => array ( 0 => 'float', ), - 'HaruPage::getLineCap' => + 'harupage::getlinecap' => array ( 0 => 'int', ), - 'HaruPage::getLineJoin' => + 'harupage::getlinejoin' => array ( 0 => 'int', ), - 'HaruPage::getLineWidth' => + 'harupage::getlinewidth' => array ( 0 => 'float', ), - 'HaruPage::getMiterLimit' => + 'harupage::getmiterlimit' => array ( 0 => 'float', ), - 'HaruPage::getRGBFill' => + 'harupage::getrgbfill' => array ( 0 => 'array', ), - 'HaruPage::getRGBStroke' => + 'harupage::getrgbstroke' => array ( 0 => 'array', ), - 'HaruPage::getStrokingColorSpace' => + 'harupage::getstrokingcolorspace' => array ( 0 => 'int', ), - 'HaruPage::getTextLeading' => + 'harupage::gettextleading' => array ( 0 => 'float', ), - 'HaruPage::getTextMatrix' => + 'harupage::gettextmatrix' => array ( 0 => 'array', ), - 'HaruPage::getTextRenderingMode' => + 'harupage::gettextrenderingmode' => array ( 0 => 'int', ), - 'HaruPage::getTextRise' => + 'harupage::gettextrise' => array ( 0 => 'float', ), - 'HaruPage::getTextWidth' => + 'harupage::gettextwidth' => array ( 0 => 'float', 'text' => 'string', ), - 'HaruPage::getTransMatrix' => + 'harupage::gettransmatrix' => array ( 0 => 'array', ), - 'HaruPage::getWidth' => + 'harupage::getwidth' => array ( 0 => 'float', ), - 'HaruPage::getWordSpace' => + 'harupage::getwordspace' => array ( 0 => 'float', ), - 'HaruPage::lineTo' => + 'harupage::lineto' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'HaruPage::measureText' => + 'harupage::measuretext' => array ( 0 => 'int', 'text' => 'string', 'width' => 'float', 'wordwrap=' => 'bool', ), - 'HaruPage::moveTextPos' => + 'harupage::movetextpos' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', 'set_leading=' => 'bool', ), - 'HaruPage::moveTo' => + 'harupage::moveto' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'HaruPage::moveToNextLine' => + 'harupage::movetonextline' => array ( 0 => 'bool', ), - 'HaruPage::rectangle' => + 'harupage::rectangle' => array ( 0 => 'bool', 'x' => 'float', @@ -10485,7 +10485,7 @@ 'width' => 'float', 'height' => 'float', ), - 'HaruPage::setCMYKFill' => + 'harupage::setcmykfill' => array ( 0 => 'bool', 'c' => 'float', @@ -10493,7 +10493,7 @@ 'y' => 'float', 'k' => 'float', ), - 'HaruPage::setCMYKStroke' => + 'harupage::setcmykstroke' => array ( 0 => 'bool', 'c' => 'float', @@ -10501,106 +10501,106 @@ 'y' => 'float', 'k' => 'float', ), - 'HaruPage::setCharSpace' => + 'harupage::setcharspace' => array ( 0 => 'bool', 'char_space' => 'float', ), - 'HaruPage::setDash' => + 'harupage::setdash' => array ( 0 => 'bool', 'pattern' => 'array', 'phase' => 'int', ), - 'HaruPage::setFlatness' => + 'harupage::setflatness' => array ( 0 => 'bool', 'flatness' => 'float', ), - 'HaruPage::setFontAndSize' => + 'harupage::setfontandsize' => array ( 0 => 'bool', 'font' => 'object', 'size' => 'float', ), - 'HaruPage::setGrayFill' => + 'harupage::setgrayfill' => array ( 0 => 'bool', 'value' => 'float', ), - 'HaruPage::setGrayStroke' => + 'harupage::setgraystroke' => array ( 0 => 'bool', 'value' => 'float', ), - 'HaruPage::setHeight' => + 'harupage::setheight' => array ( 0 => 'bool', 'height' => 'float', ), - 'HaruPage::setHorizontalScaling' => + 'harupage::sethorizontalscaling' => array ( 0 => 'bool', 'scaling' => 'float', ), - 'HaruPage::setLineCap' => + 'harupage::setlinecap' => array ( 0 => 'bool', 'cap' => 'int', ), - 'HaruPage::setLineJoin' => + 'harupage::setlinejoin' => array ( 0 => 'bool', 'join' => 'int', ), - 'HaruPage::setLineWidth' => + 'harupage::setlinewidth' => array ( 0 => 'bool', 'width' => 'float', ), - 'HaruPage::setMiterLimit' => + 'harupage::setmiterlimit' => array ( 0 => 'bool', 'limit' => 'float', ), - 'HaruPage::setRGBFill' => + 'harupage::setrgbfill' => array ( 0 => 'bool', 'r' => 'float', 'g' => 'float', 'b' => 'float', ), - 'HaruPage::setRGBStroke' => + 'harupage::setrgbstroke' => array ( 0 => 'bool', 'r' => 'float', 'g' => 'float', 'b' => 'float', ), - 'HaruPage::setRotate' => + 'harupage::setrotate' => array ( 0 => 'bool', 'angle' => 'int', ), - 'HaruPage::setSize' => + 'harupage::setsize' => array ( 0 => 'bool', 'size' => 'int', 'direction' => 'int', ), - 'HaruPage::setSlideShow' => + 'harupage::setslideshow' => array ( 0 => 'bool', 'type' => 'int', 'disp_time' => 'float', 'trans_time' => 'float', ), - 'HaruPage::setTextLeading' => + 'harupage::settextleading' => array ( 0 => 'bool', 'text_leading' => 'float', ), - 'HaruPage::setTextMatrix' => + 'harupage::settextmatrix' => array ( 0 => 'bool', 'a' => 'float', @@ -10610,51 +10610,51 @@ 'x' => 'float', 'y' => 'float', ), - 'HaruPage::setTextRenderingMode' => + 'harupage::settextrenderingmode' => array ( 0 => 'bool', 'mode' => 'int', ), - 'HaruPage::setTextRise' => + 'harupage::settextrise' => array ( 0 => 'bool', 'rise' => 'float', ), - 'HaruPage::setWidth' => + 'harupage::setwidth' => array ( 0 => 'bool', 'width' => 'float', ), - 'HaruPage::setWordSpace' => + 'harupage::setwordspace' => array ( 0 => 'bool', 'word_space' => 'float', ), - 'HaruPage::showText' => + 'harupage::showtext' => array ( 0 => 'bool', 'text' => 'string', ), - 'HaruPage::showTextNextLine' => + 'harupage::showtextnextline' => array ( 0 => 'bool', 'text' => 'string', 'word_space=' => 'float', 'char_space=' => 'float', ), - 'HaruPage::stroke' => + 'harupage::stroke' => array ( 0 => 'bool', 'close_path=' => 'bool', ), - 'HaruPage::textOut' => + 'harupage::textout' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', 'text' => 'string', ), - 'HaruPage::textRect' => + 'harupage::textrect' => array ( 0 => 'bool', 'left' => 'float', @@ -10664,265 +10664,265 @@ 'text' => 'string', 'align=' => 'int', ), - 'HttpDeflateStream::__construct' => + 'httpdeflatestream::__construct' => array ( 0 => 'void', 'flags=' => 'int', ), - 'HttpDeflateStream::factory' => + 'httpdeflatestream::factory' => array ( 0 => 'HttpDeflateStream', 'flags=' => 'int', 'class_name=' => 'string', ), - 'HttpDeflateStream::finish' => + 'httpdeflatestream::finish' => array ( 0 => 'string', 'data=' => 'string', ), - 'HttpDeflateStream::flush' => + 'httpdeflatestream::flush' => array ( 0 => 'false|string', 'data=' => 'string', ), - 'HttpDeflateStream::update' => + 'httpdeflatestream::update' => array ( 0 => 'false|string', 'data' => 'string', ), - 'HttpInflateStream::__construct' => + 'httpinflatestream::__construct' => array ( 0 => 'void', 'flags=' => 'int', ), - 'HttpInflateStream::factory' => + 'httpinflatestream::factory' => array ( 0 => 'HttpInflateStream', 'flags=' => 'int', 'class_name=' => 'string', ), - 'HttpInflateStream::finish' => + 'httpinflatestream::finish' => array ( 0 => 'string', 'data=' => 'string', ), - 'HttpInflateStream::flush' => + 'httpinflatestream::flush' => array ( 0 => 'false|string', 'data=' => 'string', ), - 'HttpInflateStream::update' => + 'httpinflatestream::update' => array ( 0 => 'false|string', 'data' => 'string', ), - 'HttpMessage::__construct' => + 'httpmessage::__construct' => array ( 0 => 'void', 'message=' => 'string', ), - 'HttpMessage::__toString' => + 'httpmessage::__tostring' => array ( 0 => 'string', ), - 'HttpMessage::addHeaders' => + 'httpmessage::addheaders' => array ( 0 => 'void', 'headers' => 'array', 'append=' => 'bool', ), - 'HttpMessage::count' => + 'httpmessage::count' => array ( 0 => 'int', ), - 'HttpMessage::current' => + 'httpmessage::current' => array ( 0 => 'mixed', ), - 'HttpMessage::detach' => + 'httpmessage::detach' => array ( 0 => 'HttpMessage', ), - 'HttpMessage::factory' => + 'httpmessage::factory' => array ( 0 => 'HttpMessage|null', 'raw_message=' => 'string', 'class_name=' => 'string', ), - 'HttpMessage::fromEnv' => + 'httpmessage::fromenv' => array ( 0 => 'HttpMessage|null', 'message_type' => 'int', 'class_name=' => 'string', ), - 'HttpMessage::fromString' => + 'httpmessage::fromstring' => array ( 0 => 'HttpMessage|null', 'raw_message=' => 'string', 'class_name=' => 'string', ), - 'HttpMessage::getBody' => + 'httpmessage::getbody' => array ( 0 => 'string', ), - 'HttpMessage::getHeader' => + 'httpmessage::getheader' => array ( 0 => 'null|string', 'header' => 'string', ), - 'HttpMessage::getHeaders' => + 'httpmessage::getheaders' => array ( 0 => 'array', ), - 'HttpMessage::getHttpVersion' => + 'httpmessage::gethttpversion' => array ( 0 => 'string', ), - 'HttpMessage::getInfo' => + 'httpmessage::getinfo' => array ( 0 => 'mixed', ), - 'HttpMessage::getParentMessage' => + 'httpmessage::getparentmessage' => array ( 0 => 'HttpMessage', ), - 'HttpMessage::getRequestMethod' => + 'httpmessage::getrequestmethod' => array ( 0 => 'false|string', ), - 'HttpMessage::getRequestUrl' => + 'httpmessage::getrequesturl' => array ( 0 => 'false|string', ), - 'HttpMessage::getResponseCode' => + 'httpmessage::getresponsecode' => array ( 0 => 'int', ), - 'HttpMessage::getResponseStatus' => + 'httpmessage::getresponsestatus' => array ( 0 => 'string', ), - 'HttpMessage::getType' => + 'httpmessage::gettype' => array ( 0 => 'int', ), - 'HttpMessage::guessContentType' => + 'httpmessage::guesscontenttype' => array ( 0 => 'false|string', 'magic_file' => 'string', 'magic_mode=' => 'int', ), - 'HttpMessage::key' => + 'httpmessage::key' => array ( 0 => 'int|string', ), - 'HttpMessage::next' => + 'httpmessage::next' => array ( 0 => 'void', ), - 'HttpMessage::prepend' => + 'httpmessage::prepend' => array ( 0 => 'void', 'message' => 'HttpMessage', 'top=' => 'bool', ), - 'HttpMessage::reverse' => + 'httpmessage::reverse' => array ( 0 => 'HttpMessage', ), - 'HttpMessage::rewind' => + 'httpmessage::rewind' => array ( 0 => 'void', ), - 'HttpMessage::send' => + 'httpmessage::send' => array ( 0 => 'bool', ), - 'HttpMessage::serialize' => + 'httpmessage::serialize' => array ( 0 => 'string', ), - 'HttpMessage::setBody' => + 'httpmessage::setbody' => array ( 0 => 'void', 'body' => 'string', ), - 'HttpMessage::setHeaders' => + 'httpmessage::setheaders' => array ( 0 => 'void', 'headers' => 'array', ), - 'HttpMessage::setHttpVersion' => + 'httpmessage::sethttpversion' => array ( 0 => 'bool', 'version' => 'string', ), - 'HttpMessage::setInfo' => + 'httpmessage::setinfo' => array ( 0 => 'mixed', 'http_info' => 'mixed', ), - 'HttpMessage::setRequestMethod' => + 'httpmessage::setrequestmethod' => array ( 0 => 'bool', 'method' => 'string', ), - 'HttpMessage::setRequestUrl' => + 'httpmessage::setrequesturl' => array ( 0 => 'bool', 'url' => 'string', ), - 'HttpMessage::setResponseCode' => + 'httpmessage::setresponsecode' => array ( 0 => 'bool', 'code' => 'int', ), - 'HttpMessage::setResponseStatus' => + 'httpmessage::setresponsestatus' => array ( 0 => 'bool', 'status' => 'string', ), - 'HttpMessage::setType' => + 'httpmessage::settype' => array ( 0 => 'void', 'type' => 'int', ), - 'HttpMessage::toMessageTypeObject' => + 'httpmessage::tomessagetypeobject' => array ( 0 => 'HttpRequest|HttpResponse|null', ), - 'HttpMessage::toString' => + 'httpmessage::tostring' => array ( 0 => 'string', 'include_parent=' => 'bool', ), - 'HttpMessage::unserialize' => + 'httpmessage::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'HttpMessage::valid' => + 'httpmessage::valid' => array ( 0 => 'bool', ), - 'HttpQueryString::__construct' => + 'httpquerystring::__construct' => array ( 0 => 'void', 'global=' => 'bool', 'add=' => 'mixed', ), - 'HttpQueryString::__toString' => + 'httpquerystring::__tostring' => array ( 0 => 'string', ), - 'HttpQueryString::factory' => + 'httpquerystring::factory' => array ( 0 => 'mixed', 'global' => 'mixed', 'params' => 'mixed', 'class_name' => 'mixed', ), - 'HttpQueryString::get' => + 'httpquerystring::get' => array ( 0 => 'mixed', 'key=' => 'string', @@ -10930,176 +10930,176 @@ 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'HttpQueryString::getArray' => + 'httpquerystring::getarray' => array ( 0 => 'mixed', 'name' => 'mixed', 'defval' => 'mixed', 'delete' => 'mixed', ), - 'HttpQueryString::getBool' => + 'httpquerystring::getbool' => array ( 0 => 'mixed', 'name' => 'mixed', 'defval' => 'mixed', 'delete' => 'mixed', ), - 'HttpQueryString::getFloat' => + 'httpquerystring::getfloat' => array ( 0 => 'mixed', 'name' => 'mixed', 'defval' => 'mixed', 'delete' => 'mixed', ), - 'HttpQueryString::getInt' => + 'httpquerystring::getint' => array ( 0 => 'mixed', 'name' => 'mixed', 'defval' => 'mixed', 'delete' => 'mixed', ), - 'HttpQueryString::getObject' => + 'httpquerystring::getobject' => array ( 0 => 'mixed', 'name' => 'mixed', 'defval' => 'mixed', 'delete' => 'mixed', ), - 'HttpQueryString::getString' => + 'httpquerystring::getstring' => array ( 0 => 'mixed', 'name' => 'mixed', 'defval' => 'mixed', 'delete' => 'mixed', ), - 'HttpQueryString::mod' => + 'httpquerystring::mod' => array ( 0 => 'HttpQueryString', 'params' => 'mixed', ), - 'HttpQueryString::offsetExists' => + 'httpquerystring::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'HttpQueryString::offsetGet' => + 'httpquerystring::offsetget' => array ( 0 => 'mixed', 'offset' => 'int|string', ), - 'HttpQueryString::offsetSet' => + 'httpquerystring::offsetset' => array ( 0 => 'void', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'HttpQueryString::offsetUnset' => + 'httpquerystring::offsetunset' => array ( 0 => 'void', 'offset' => 'int|string', ), - 'HttpQueryString::serialize' => + 'httpquerystring::serialize' => array ( 0 => 'string', ), - 'HttpQueryString::set' => + 'httpquerystring::set' => array ( 0 => 'string', 'params' => 'mixed', ), - 'HttpQueryString::singleton' => + 'httpquerystring::singleton' => array ( 0 => 'HttpQueryString', 'global=' => 'bool', ), - 'HttpQueryString::toArray' => + 'httpquerystring::toarray' => array ( 0 => 'array', ), - 'HttpQueryString::toString' => + 'httpquerystring::tostring' => array ( 0 => 'string', ), - 'HttpQueryString::unserialize' => + 'httpquerystring::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'HttpQueryString::xlate' => + 'httpquerystring::xlate' => array ( 0 => 'bool', 'ie' => 'string', 'oe' => 'string', ), - 'HttpRequest::__construct' => + 'httprequest::__construct' => array ( 0 => 'void', 'url=' => 'string', 'request_method=' => 'int', 'options=' => 'array', ), - 'HttpRequest::addBody' => + 'httprequest::addbody' => array ( 0 => 'mixed', 'request_body_data' => 'mixed', ), - 'HttpRequest::addCookies' => + 'httprequest::addcookies' => array ( 0 => 'bool', 'cookies' => 'array', ), - 'HttpRequest::addHeaders' => + 'httprequest::addheaders' => array ( 0 => 'bool', 'headers' => 'array', ), - 'HttpRequest::addPostFields' => + 'httprequest::addpostfields' => array ( 0 => 'bool', 'post_data' => 'array', ), - 'HttpRequest::addPostFile' => + 'httprequest::addpostfile' => array ( 0 => 'bool', 'name' => 'string', 'file' => 'string', 'content_type=' => 'string', ), - 'HttpRequest::addPutData' => + 'httprequest::addputdata' => array ( 0 => 'bool', 'put_data' => 'string', ), - 'HttpRequest::addQueryData' => + 'httprequest::addquerydata' => array ( 0 => 'bool', 'query_params' => 'array', ), - 'HttpRequest::addRawPostData' => + 'httprequest::addrawpostdata' => array ( 0 => 'bool', 'raw_post_data' => 'string', ), - 'HttpRequest::addSslOptions' => + 'httprequest::addssloptions' => array ( 0 => 'bool', 'options' => 'array', ), - 'HttpRequest::clearHistory' => + 'httprequest::clearhistory' => array ( 0 => 'void', ), - 'HttpRequest::enableCookies' => + 'httprequest::enablecookies' => array ( 0 => 'bool', ), - 'HttpRequest::encodeBody' => + 'httprequest::encodebody' => array ( 0 => 'mixed', 'fields' => 'mixed', 'files' => 'mixed', ), - 'HttpRequest::factory' => + 'httprequest::factory' => array ( 0 => 'mixed', 'url' => 'mixed', @@ -11107,153 +11107,153 @@ 'options' => 'mixed', 'class_name' => 'mixed', ), - 'HttpRequest::flushCookies' => + 'httprequest::flushcookies' => array ( 0 => 'mixed', ), - 'HttpRequest::get' => + 'httprequest::get' => array ( 0 => 'mixed', 'url' => 'mixed', 'options' => 'mixed', '&info' => 'mixed', ), - 'HttpRequest::getBody' => + 'httprequest::getbody' => array ( 0 => 'mixed', ), - 'HttpRequest::getContentType' => + 'httprequest::getcontenttype' => array ( 0 => 'string', ), - 'HttpRequest::getCookies' => + 'httprequest::getcookies' => array ( 0 => 'array', ), - 'HttpRequest::getHeaders' => + 'httprequest::getheaders' => array ( 0 => 'array', ), - 'HttpRequest::getHistory' => + 'httprequest::gethistory' => array ( 0 => 'HttpMessage', ), - 'HttpRequest::getMethod' => + 'httprequest::getmethod' => array ( 0 => 'int', ), - 'HttpRequest::getOptions' => + 'httprequest::getoptions' => array ( 0 => 'array', ), - 'HttpRequest::getPostFields' => + 'httprequest::getpostfields' => array ( 0 => 'array', ), - 'HttpRequest::getPostFiles' => + 'httprequest::getpostfiles' => array ( 0 => 'array', ), - 'HttpRequest::getPutData' => + 'httprequest::getputdata' => array ( 0 => 'string', ), - 'HttpRequest::getPutFile' => + 'httprequest::getputfile' => array ( 0 => 'string', ), - 'HttpRequest::getQueryData' => + 'httprequest::getquerydata' => array ( 0 => 'string', ), - 'HttpRequest::getRawPostData' => + 'httprequest::getrawpostdata' => array ( 0 => 'string', ), - 'HttpRequest::getRawRequestMessage' => + 'httprequest::getrawrequestmessage' => array ( 0 => 'string', ), - 'HttpRequest::getRawResponseMessage' => + 'httprequest::getrawresponsemessage' => array ( 0 => 'string', ), - 'HttpRequest::getRequestMessage' => + 'httprequest::getrequestmessage' => array ( 0 => 'HttpMessage', ), - 'HttpRequest::getResponseBody' => + 'httprequest::getresponsebody' => array ( 0 => 'string', ), - 'HttpRequest::getResponseCode' => + 'httprequest::getresponsecode' => array ( 0 => 'int', ), - 'HttpRequest::getResponseCookies' => + 'httprequest::getresponsecookies' => array ( 0 => 'array', 'flags=' => 'int', 'allowed_extras=' => 'array', ), - 'HttpRequest::getResponseData' => + 'httprequest::getresponsedata' => array ( 0 => 'array', ), - 'HttpRequest::getResponseHeader' => + 'httprequest::getresponseheader' => array ( 0 => 'mixed', 'name=' => 'string', ), - 'HttpRequest::getResponseInfo' => + 'httprequest::getresponseinfo' => array ( 0 => 'mixed', 'name=' => 'string', ), - 'HttpRequest::getResponseMessage' => + 'httprequest::getresponsemessage' => array ( 0 => 'HttpMessage', ), - 'HttpRequest::getResponseStatus' => + 'httprequest::getresponsestatus' => array ( 0 => 'string', ), - 'HttpRequest::getSslOptions' => + 'httprequest::getssloptions' => array ( 0 => 'array', ), - 'HttpRequest::getUrl' => + 'httprequest::geturl' => array ( 0 => 'string', ), - 'HttpRequest::head' => + 'httprequest::head' => array ( 0 => 'mixed', 'url' => 'mixed', 'options' => 'mixed', '&info' => 'mixed', ), - 'HttpRequest::methodExists' => + 'httprequest::methodexists' => array ( 0 => 'mixed', 'method' => 'mixed', ), - 'HttpRequest::methodName' => + 'httprequest::methodname' => array ( 0 => 'mixed', 'method_id' => 'mixed', ), - 'HttpRequest::methodRegister' => + 'httprequest::methodregister' => array ( 0 => 'mixed', 'method_name' => 'mixed', ), - 'HttpRequest::methodUnregister' => + 'httprequest::methodunregister' => array ( 0 => 'mixed', 'method' => 'mixed', ), - 'HttpRequest::postData' => + 'httprequest::postdata' => array ( 0 => 'mixed', 'url' => 'mixed', @@ -11261,7 +11261,7 @@ 'options' => 'mixed', '&info' => 'mixed', ), - 'HttpRequest::postFields' => + 'httprequest::postfields' => array ( 0 => 'mixed', 'url' => 'mixed', @@ -11269,7 +11269,7 @@ 'options' => 'mixed', '&info' => 'mixed', ), - 'HttpRequest::putData' => + 'httprequest::putdata' => array ( 0 => 'mixed', 'url' => 'mixed', @@ -11277,7 +11277,7 @@ 'options' => 'mixed', '&info' => 'mixed', ), - 'HttpRequest::putFile' => + 'httprequest::putfile' => array ( 0 => 'mixed', 'url' => 'mixed', @@ -11285,7 +11285,7 @@ 'options' => 'mixed', '&info' => 'mixed', ), - 'HttpRequest::putStream' => + 'httprequest::putstream' => array ( 0 => 'mixed', 'url' => 'mixed', @@ -11293,276 +11293,276 @@ 'options' => 'mixed', '&info' => 'mixed', ), - 'HttpRequest::resetCookies' => + 'httprequest::resetcookies' => array ( 0 => 'bool', 'session_only=' => 'bool', ), - 'HttpRequest::send' => + 'httprequest::send' => array ( 0 => 'HttpMessage', ), - 'HttpRequest::setBody' => + 'httprequest::setbody' => array ( 0 => 'bool', 'request_body_data=' => 'string', ), - 'HttpRequest::setContentType' => + 'httprequest::setcontenttype' => array ( 0 => 'bool', 'content_type' => 'string', ), - 'HttpRequest::setCookies' => + 'httprequest::setcookies' => array ( 0 => 'bool', 'cookies=' => 'array', ), - 'HttpRequest::setHeaders' => + 'httprequest::setheaders' => array ( 0 => 'bool', 'headers=' => 'array', ), - 'HttpRequest::setMethod' => + 'httprequest::setmethod' => array ( 0 => 'bool', 'request_method' => 'int', ), - 'HttpRequest::setOptions' => + 'httprequest::setoptions' => array ( 0 => 'bool', 'options=' => 'array', ), - 'HttpRequest::setPostFields' => + 'httprequest::setpostfields' => array ( 0 => 'bool', 'post_data' => 'array', ), - 'HttpRequest::setPostFiles' => + 'httprequest::setpostfiles' => array ( 0 => 'bool', 'post_files' => 'array', ), - 'HttpRequest::setPutData' => + 'httprequest::setputdata' => array ( 0 => 'bool', 'put_data=' => 'string', ), - 'HttpRequest::setPutFile' => + 'httprequest::setputfile' => array ( 0 => 'bool', 'file=' => 'string', ), - 'HttpRequest::setQueryData' => + 'httprequest::setquerydata' => array ( 0 => 'bool', 'query_data' => 'mixed', ), - 'HttpRequest::setRawPostData' => + 'httprequest::setrawpostdata' => array ( 0 => 'bool', 'raw_post_data=' => 'string', ), - 'HttpRequest::setSslOptions' => + 'httprequest::setssloptions' => array ( 0 => 'bool', 'options=' => 'array', ), - 'HttpRequest::setUrl' => + 'httprequest::seturl' => array ( 0 => 'bool', 'url' => 'string', ), - 'HttpRequestDataShare::__construct' => + 'httprequestdatashare::__construct' => array ( 0 => 'void', ), - 'HttpRequestDataShare::__destruct' => + 'httprequestdatashare::__destruct' => array ( 0 => 'void', ), - 'HttpRequestDataShare::attach' => + 'httprequestdatashare::attach' => array ( 0 => 'mixed', 'request' => 'HttpRequest', ), - 'HttpRequestDataShare::count' => + 'httprequestdatashare::count' => array ( 0 => 'int', ), - 'HttpRequestDataShare::detach' => + 'httprequestdatashare::detach' => array ( 0 => 'mixed', 'request' => 'HttpRequest', ), - 'HttpRequestDataShare::factory' => + 'httprequestdatashare::factory' => array ( 0 => 'mixed', 'global' => 'mixed', 'class_name' => 'mixed', ), - 'HttpRequestDataShare::reset' => + 'httprequestdatashare::reset' => array ( 0 => 'mixed', ), - 'HttpRequestDataShare::singleton' => + 'httprequestdatashare::singleton' => array ( 0 => 'mixed', 'global' => 'mixed', ), - 'HttpRequestPool::__construct' => + 'httprequestpool::__construct' => array ( 0 => 'void', 'request=' => 'HttpRequest', ), - 'HttpRequestPool::__destruct' => + 'httprequestpool::__destruct' => array ( 0 => 'void', ), - 'HttpRequestPool::attach' => + 'httprequestpool::attach' => array ( 0 => 'bool', 'request' => 'HttpRequest', ), - 'HttpRequestPool::count' => + 'httprequestpool::count' => array ( 0 => 'int', ), - 'HttpRequestPool::current' => + 'httprequestpool::current' => array ( 0 => 'mixed', ), - 'HttpRequestPool::detach' => + 'httprequestpool::detach' => array ( 0 => 'bool', 'request' => 'HttpRequest', ), - 'HttpRequestPool::enableEvents' => + 'httprequestpool::enableevents' => array ( 0 => 'mixed', 'enable' => 'mixed', ), - 'HttpRequestPool::enablePipelining' => + 'httprequestpool::enablepipelining' => array ( 0 => 'mixed', 'enable' => 'mixed', ), - 'HttpRequestPool::getAttachedRequests' => + 'httprequestpool::getattachedrequests' => array ( 0 => 'array', ), - 'HttpRequestPool::getFinishedRequests' => + 'httprequestpool::getfinishedrequests' => array ( 0 => 'array', ), - 'HttpRequestPool::key' => + 'httprequestpool::key' => array ( 0 => 'int|string', ), - 'HttpRequestPool::next' => + 'httprequestpool::next' => array ( 0 => 'void', ), - 'HttpRequestPool::reset' => + 'httprequestpool::reset' => array ( 0 => 'void', ), - 'HttpRequestPool::rewind' => + 'httprequestpool::rewind' => array ( 0 => 'void', ), - 'HttpRequestPool::send' => + 'httprequestpool::send' => array ( 0 => 'bool', ), - 'HttpRequestPool::socketPerform' => + 'httprequestpool::socketperform' => array ( 0 => 'bool', ), - 'HttpRequestPool::socketSelect' => + 'httprequestpool::socketselect' => array ( 0 => 'bool', 'timeout=' => 'float', ), - 'HttpRequestPool::valid' => + 'httprequestpool::valid' => array ( 0 => 'bool', ), - 'HttpResponse::capture' => + 'httpresponse::capture' => array ( 0 => 'void', ), - 'HttpResponse::getBufferSize' => + 'httpresponse::getbuffersize' => array ( 0 => 'int', ), - 'HttpResponse::getCache' => + 'httpresponse::getcache' => array ( 0 => 'bool', ), - 'HttpResponse::getCacheControl' => + 'httpresponse::getcachecontrol' => array ( 0 => 'string', ), - 'HttpResponse::getContentDisposition' => + 'httpresponse::getcontentdisposition' => array ( 0 => 'string', ), - 'HttpResponse::getContentType' => + 'httpresponse::getcontenttype' => array ( 0 => 'string', ), - 'HttpResponse::getData' => + 'httpresponse::getdata' => array ( 0 => 'string', ), - 'HttpResponse::getETag' => + 'httpresponse::getetag' => array ( 0 => 'string', ), - 'HttpResponse::getFile' => + 'httpresponse::getfile' => array ( 0 => 'string', ), - 'HttpResponse::getGzip' => + 'httpresponse::getgzip' => array ( 0 => 'bool', ), - 'HttpResponse::getHeader' => + 'httpresponse::getheader' => array ( 0 => 'mixed', 'name=' => 'string', ), - 'HttpResponse::getLastModified' => + 'httpresponse::getlastmodified' => array ( 0 => 'int', ), - 'HttpResponse::getRequestBody' => + 'httpresponse::getrequestbody' => array ( 0 => 'string', ), - 'HttpResponse::getRequestBodyStream' => + 'httpresponse::getrequestbodystream' => array ( 0 => 'resource', ), - 'HttpResponse::getRequestHeaders' => + 'httpresponse::getrequestheaders' => array ( 0 => 'array', ), - 'HttpResponse::getStream' => + 'httpresponse::getstream' => array ( 0 => 'resource', ), - 'HttpResponse::getThrottleDelay' => + 'httpresponse::getthrottledelay' => array ( 0 => 'float', ), - 'HttpResponse::guessContentType' => + 'httpresponse::guesscontenttype' => array ( 0 => 'false|string', 'magic_file' => 'string', 'magic_mode=' => 'int', ), - 'HttpResponse::redirect' => + 'httpresponse::redirect' => array ( 0 => 'void', 'url=' => 'string', @@ -11570,99 +11570,99 @@ 'session=' => 'bool', 'status=' => 'int', ), - 'HttpResponse::send' => + 'httpresponse::send' => array ( 0 => 'bool', 'clean_ob=' => 'bool', ), - 'HttpResponse::setBufferSize' => + 'httpresponse::setbuffersize' => array ( 0 => 'bool', 'bytes' => 'int', ), - 'HttpResponse::setCache' => + 'httpresponse::setcache' => array ( 0 => 'bool', 'cache' => 'bool', ), - 'HttpResponse::setCacheControl' => + 'httpresponse::setcachecontrol' => array ( 0 => 'bool', 'control' => 'string', 'max_age=' => 'int', 'must_revalidate=' => 'bool', ), - 'HttpResponse::setContentDisposition' => + 'httpresponse::setcontentdisposition' => array ( 0 => 'bool', 'filename' => 'string', 'inline=' => 'bool', ), - 'HttpResponse::setContentType' => + 'httpresponse::setcontenttype' => array ( 0 => 'bool', 'content_type' => 'string', ), - 'HttpResponse::setData' => + 'httpresponse::setdata' => array ( 0 => 'bool', 'data' => 'mixed', ), - 'HttpResponse::setETag' => + 'httpresponse::setetag' => array ( 0 => 'bool', 'etag' => 'string', ), - 'HttpResponse::setFile' => + 'httpresponse::setfile' => array ( 0 => 'bool', 'file' => 'string', ), - 'HttpResponse::setGzip' => + 'httpresponse::setgzip' => array ( 0 => 'bool', 'gzip' => 'bool', ), - 'HttpResponse::setHeader' => + 'httpresponse::setheader' => array ( 0 => 'bool', 'name' => 'string', 'value=' => 'mixed', 'replace=' => 'bool', ), - 'HttpResponse::setLastModified' => + 'httpresponse::setlastmodified' => array ( 0 => 'bool', 'timestamp' => 'int', ), - 'HttpResponse::setStream' => + 'httpresponse::setstream' => array ( 0 => 'bool', 'stream' => 'resource', ), - 'HttpResponse::setThrottleDelay' => + 'httpresponse::setthrottledelay' => array ( 0 => 'bool', 'seconds' => 'float', ), - 'HttpResponse::status' => + 'httpresponse::status' => array ( 0 => 'bool', 'status' => 'int', ), - 'HttpUtil::buildCookie' => + 'httputil::buildcookie' => array ( 0 => 'mixed', 'cookie_array' => 'mixed', ), - 'HttpUtil::buildStr' => + 'httputil::buildstr' => array ( 0 => 'mixed', 'query' => 'mixed', 'prefix' => 'mixed', 'arg_sep' => 'mixed', ), - 'HttpUtil::buildUrl' => + 'httputil::buildurl' => array ( 0 => 'mixed', 'url' => 'mixed', @@ -11670,149 +11670,149 @@ 'flags' => 'mixed', '&composed' => 'mixed', ), - 'HttpUtil::chunkedDecode' => + 'httputil::chunkeddecode' => array ( 0 => 'mixed', 'encoded_string' => 'mixed', ), - 'HttpUtil::date' => + 'httputil::date' => array ( 0 => 'mixed', 'timestamp' => 'mixed', ), - 'HttpUtil::deflate' => + 'httputil::deflate' => array ( 0 => 'mixed', 'plain' => 'mixed', 'flags' => 'mixed', ), - 'HttpUtil::inflate' => + 'httputil::inflate' => array ( 0 => 'mixed', 'encoded' => 'mixed', ), - 'HttpUtil::matchEtag' => + 'httputil::matchetag' => array ( 0 => 'mixed', 'plain_etag' => 'mixed', 'for_range' => 'mixed', ), - 'HttpUtil::matchModified' => + 'httputil::matchmodified' => array ( 0 => 'mixed', 'last_modified' => 'mixed', 'for_range' => 'mixed', ), - 'HttpUtil::matchRequestHeader' => + 'httputil::matchrequestheader' => array ( 0 => 'mixed', 'header_name' => 'mixed', 'header_value' => 'mixed', 'case_sensitive' => 'mixed', ), - 'HttpUtil::negotiateCharset' => + 'httputil::negotiatecharset' => array ( 0 => 'mixed', 'supported' => 'mixed', '&result' => 'mixed', ), - 'HttpUtil::negotiateContentType' => + 'httputil::negotiatecontenttype' => array ( 0 => 'mixed', 'supported' => 'mixed', '&result' => 'mixed', ), - 'HttpUtil::negotiateLanguage' => + 'httputil::negotiatelanguage' => array ( 0 => 'mixed', 'supported' => 'mixed', '&result' => 'mixed', ), - 'HttpUtil::parseCookie' => + 'httputil::parsecookie' => array ( 0 => 'mixed', 'cookie_string' => 'mixed', ), - 'HttpUtil::parseHeaders' => + 'httputil::parseheaders' => array ( 0 => 'mixed', 'headers_string' => 'mixed', ), - 'HttpUtil::parseMessage' => + 'httputil::parsemessage' => array ( 0 => 'mixed', 'message_string' => 'mixed', ), - 'HttpUtil::parseParams' => + 'httputil::parseparams' => array ( 0 => 'mixed', 'param_string' => 'mixed', 'flags' => 'mixed', ), - 'HttpUtil::support' => + 'httputil::support' => array ( 0 => 'mixed', 'feature' => 'mixed', ), - 'Imagick::__construct' => + 'imagick::__construct' => array ( 0 => 'void', 'files=' => 'array|string', ), - 'Imagick::__toString' => + 'imagick::__tostring' => array ( 0 => 'string', ), - 'Imagick::adaptiveBlurImage' => + 'imagick::adaptiveblurimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', 'channel=' => 'int', ), - 'Imagick::adaptiveResizeImage' => + 'imagick::adaptiveresizeimage' => array ( 0 => 'bool', 'columns' => 'int', 'rows' => 'int', 'bestfit=' => 'bool', ), - 'Imagick::adaptiveSharpenImage' => + 'imagick::adaptivesharpenimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', 'channel=' => 'int', ), - 'Imagick::adaptiveThresholdImage' => + 'imagick::adaptivethresholdimage' => array ( 0 => 'bool', 'width' => 'int', 'height' => 'int', 'offset' => 'int', ), - 'Imagick::addImage' => + 'imagick::addimage' => array ( 0 => 'bool', 'source' => 'Imagick', ), - 'Imagick::addNoiseImage' => + 'imagick::addnoiseimage' => array ( 0 => 'bool', 'noise_type' => 'int', 'channel=' => 'int', ), - 'Imagick::affineTransformImage' => + 'imagick::affinetransformimage' => array ( 0 => 'bool', 'matrix' => 'ImagickDraw', ), - 'Imagick::animateImages' => + 'imagick::animateimages' => array ( 0 => 'bool', 'x_server' => 'string', ), - 'Imagick::annotateImage' => + 'imagick::annotateimage' => array ( 0 => 'bool', 'draw_settings' => 'ImagickDraw', @@ -11821,67 +11821,67 @@ 'angle' => 'float', 'text' => 'string', ), - 'Imagick::appendImages' => + 'imagick::appendimages' => array ( 0 => 'Imagick', 'stack' => 'bool', ), - 'Imagick::autoGammaImage' => + 'imagick::autogammaimage' => array ( 0 => 'bool', 'channel=' => 'int', ), - 'Imagick::autoLevelImage' => + 'imagick::autolevelimage' => array ( 0 => 'void', 'CHANNEL=' => 'string', ), - 'Imagick::autoOrient' => + 'imagick::autoorient' => array ( 0 => 'bool', ), - 'Imagick::averageImages' => + 'imagick::averageimages' => array ( 0 => 'Imagick', ), - 'Imagick::blackThresholdImage' => + 'imagick::blackthresholdimage' => array ( 0 => 'bool', 'threshold' => 'mixed', ), - 'Imagick::blueShiftImage' => + 'imagick::blueshiftimage' => array ( 0 => 'void', 'factor=' => 'float', ), - 'Imagick::blurImage' => + 'imagick::blurimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', 'channel=' => 'int', ), - 'Imagick::borderImage' => + 'imagick::borderimage' => array ( 0 => 'bool', 'bordercolor' => 'mixed', 'width' => 'int', 'height' => 'int', ), - 'Imagick::brightnessContrastImage' => + 'imagick::brightnesscontrastimage' => array ( 0 => 'void', 'brightness' => 'string', 'contrast' => 'string', 'CHANNEL=' => 'string', ), - 'Imagick::charcoalImage' => + 'imagick::charcoalimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', ), - 'Imagick::chopImage' => + 'imagick::chopimage' => array ( 0 => 'bool', 'width' => 'int', @@ -11889,46 +11889,46 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::clampImage' => + 'imagick::clampimage' => array ( 0 => 'void', 'CHANNEL=' => 'string', ), - 'Imagick::clear' => + 'imagick::clear' => array ( 0 => 'bool', ), - 'Imagick::clipImage' => + 'imagick::clipimage' => array ( 0 => 'bool', ), - 'Imagick::clipImagePath' => + 'imagick::clipimagepath' => array ( 0 => 'void', 'pathname' => 'string', 'inside' => 'string', ), - 'Imagick::clipPathImage' => + 'imagick::clippathimage' => array ( 0 => 'bool', 'pathname' => 'string', 'inside' => 'bool', ), - 'Imagick::clone' => + 'imagick::clone' => array ( 0 => 'Imagick', ), - 'Imagick::clutImage' => + 'imagick::clutimage' => array ( 0 => 'bool', 'lookup_table' => 'Imagick', 'channel=' => 'float', ), - 'Imagick::coalesceImages' => + 'imagick::coalesceimages' => array ( 0 => 'Imagick', ), - 'Imagick::colorFloodfillImage' => + 'imagick::colorfloodfillimage' => array ( 0 => 'bool', 'fill' => 'mixed', @@ -11937,46 +11937,46 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::colorMatrixImage' => + 'imagick::colormatriximage' => array ( 0 => 'void', 'color_matrix' => 'string', ), - 'Imagick::colorizeImage' => + 'imagick::colorizeimage' => array ( 0 => 'bool', 'colorize' => 'mixed', 'opacity' => 'mixed', ), - 'Imagick::combineImages' => + 'imagick::combineimages' => array ( 0 => 'Imagick', 'channeltype' => 'int', ), - 'Imagick::commentImage' => + 'imagick::commentimage' => array ( 0 => 'bool', 'comment' => 'string', ), - 'Imagick::compareImageChannels' => + 'imagick::compareimagechannels' => array ( 0 => 'list{Imagick, float}', 'image' => 'Imagick', 'channeltype' => 'int', 'metrictype' => 'int', ), - 'Imagick::compareImageLayers' => + 'imagick::compareimagelayers' => array ( 0 => 'Imagick', 'method' => 'int', ), - 'Imagick::compareImages' => + 'imagick::compareimages' => array ( 0 => 'list{Imagick, float}', 'compare' => 'Imagick', 'metric' => 'int', ), - 'Imagick::compositeImage' => + 'imagick::compositeimage' => array ( 0 => 'bool', 'composite_object' => 'Imagick', @@ -11985,37 +11985,37 @@ 'y' => 'int', 'channel=' => 'int', ), - 'Imagick::compositeImageGravity' => + 'imagick::compositeimagegravity' => array ( 0 => 'bool', 'Imagick' => 'Imagick', 'COMPOSITE_CONSTANT' => 'int', 'GRAVITY_CONSTANT' => 'int', ), - 'Imagick::contrastImage' => + 'imagick::contrastimage' => array ( 0 => 'bool', 'sharpen' => 'bool', ), - 'Imagick::contrastStretchImage' => + 'imagick::contraststretchimage' => array ( 0 => 'bool', 'black_point' => 'float', 'white_point' => 'float', 'channel=' => 'int', ), - 'Imagick::convolveImage' => + 'imagick::convolveimage' => array ( 0 => 'bool', 'kernel' => 'array', 'channel=' => 'int', ), - 'Imagick::count' => + 'imagick::count' => array ( 0 => 'void', 'mode=' => 'string', ), - 'Imagick::cropImage' => + 'imagick::cropimage' => array ( 0 => 'bool', 'width' => 'int', @@ -12023,113 +12023,113 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::cropThumbnailImage' => + 'imagick::cropthumbnailimage' => array ( 0 => 'bool', 'width' => 'int', 'height' => 'int', 'legacy=' => 'bool', ), - 'Imagick::current' => + 'imagick::current' => array ( 0 => 'Imagick', ), - 'Imagick::cycleColormapImage' => + 'imagick::cyclecolormapimage' => array ( 0 => 'bool', 'displace' => 'int', ), - 'Imagick::decipherImage' => + 'imagick::decipherimage' => array ( 0 => 'bool', 'passphrase' => 'string', ), - 'Imagick::deconstructImages' => + 'imagick::deconstructimages' => array ( 0 => 'Imagick', ), - 'Imagick::deleteImageArtifact' => + 'imagick::deleteimageartifact' => array ( 0 => 'bool', 'artifact' => 'string', ), - 'Imagick::deleteImageProperty' => + 'imagick::deleteimageproperty' => array ( 0 => 'void', 'name' => 'string', ), - 'Imagick::deskewImage' => + 'imagick::deskewimage' => array ( 0 => 'bool', 'threshold' => 'float', ), - 'Imagick::despeckleImage' => + 'imagick::despeckleimage' => array ( 0 => 'bool', ), - 'Imagick::destroy' => + 'imagick::destroy' => array ( 0 => 'bool', ), - 'Imagick::displayImage' => + 'imagick::displayimage' => array ( 0 => 'bool', 'servername' => 'string', ), - 'Imagick::displayImages' => + 'imagick::displayimages' => array ( 0 => 'bool', 'servername' => 'string', ), - 'Imagick::distortImage' => + 'imagick::distortimage' => array ( 0 => 'bool', 'method' => 'int', 'arguments' => 'array', 'bestfit' => 'bool', ), - 'Imagick::drawImage' => + 'imagick::drawimage' => array ( 0 => 'bool', 'draw' => 'ImagickDraw', ), - 'Imagick::edgeImage' => + 'imagick::edgeimage' => array ( 0 => 'bool', 'radius' => 'float', ), - 'Imagick::embossImage' => + 'imagick::embossimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', ), - 'Imagick::encipherImage' => + 'imagick::encipherimage' => array ( 0 => 'bool', 'passphrase' => 'string', ), - 'Imagick::enhanceImage' => + 'imagick::enhanceimage' => array ( 0 => 'bool', ), - 'Imagick::equalizeImage' => + 'imagick::equalizeimage' => array ( 0 => 'bool', ), - 'Imagick::evaluateImage' => + 'imagick::evaluateimage' => array ( 0 => 'bool', 'op' => 'int', 'constant' => 'float', 'channel=' => 'int', ), - 'Imagick::evaluateImages' => + 'imagick::evaluateimages' => array ( 0 => 'bool', 'EVALUATE_CONSTANT' => 'int', ), - 'Imagick::exportImagePixels' => + 'imagick::exportimagepixels' => array ( 0 => 'list', 'x' => 'int', @@ -12139,7 +12139,7 @@ 'map' => 'string', 'storage' => 'int', ), - 'Imagick::extentImage' => + 'imagick::extentimage' => array ( 0 => 'bool', 'width' => 'int', @@ -12147,21 +12147,21 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::filter' => + 'imagick::filter' => array ( 0 => 'void', 'ImagickKernel' => 'ImagickKernel', 'CHANNEL=' => 'int', ), - 'Imagick::flattenImages' => + 'imagick::flattenimages' => array ( 0 => 'Imagick', ), - 'Imagick::flipImage' => + 'imagick::flipimage' => array ( 0 => 'bool', ), - 'Imagick::floodFillPaintImage' => + 'imagick::floodfillpaintimage' => array ( 0 => 'bool', 'fill' => 'mixed', @@ -12172,16 +12172,16 @@ 'invert' => 'bool', 'channel=' => 'int', ), - 'Imagick::flopImage' => + 'imagick::flopimage' => array ( 0 => 'bool', ), - 'Imagick::forwardFourierTransformimage' => + 'imagick::forwardfouriertransformimage' => array ( 0 => 'void', 'magnitude' => 'bool', ), - 'Imagick::frameImage' => + 'imagick::frameimage' => array ( 0 => 'bool', 'matte_color' => 'mixed', @@ -12190,317 +12190,317 @@ 'inner_bevel' => 'int', 'outer_bevel' => 'int', ), - 'Imagick::functionImage' => + 'imagick::functionimage' => array ( 0 => 'bool', 'function' => 'int', 'arguments' => 'array', 'channel=' => 'int', ), - 'Imagick::fxImage' => + 'imagick::fximage' => array ( 0 => 'Imagick', 'expression' => 'string', 'channel=' => 'int', ), - 'Imagick::gammaImage' => + 'imagick::gammaimage' => array ( 0 => 'bool', 'gamma' => 'float', 'channel=' => 'int', ), - 'Imagick::gaussianBlurImage' => + 'imagick::gaussianblurimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', 'channel=' => 'int', ), - 'Imagick::getColorspace' => + 'imagick::getcolorspace' => array ( 0 => 'int', ), - 'Imagick::getCompression' => + 'imagick::getcompression' => array ( 0 => 'int', ), - 'Imagick::getCompressionQuality' => + 'imagick::getcompressionquality' => array ( 0 => 'int', ), - 'Imagick::getConfigureOptions' => + 'imagick::getconfigureoptions' => array ( 0 => 'string', ), - 'Imagick::getCopyright' => + 'imagick::getcopyright' => array ( 0 => 'string', ), - 'Imagick::getFeatures' => + 'imagick::getfeatures' => array ( 0 => 'string', ), - 'Imagick::getFilename' => + 'imagick::getfilename' => array ( 0 => 'string', ), - 'Imagick::getFont' => + 'imagick::getfont' => array ( 0 => 'false|string', ), - 'Imagick::getFormat' => + 'imagick::getformat' => array ( 0 => 'string', ), - 'Imagick::getGravity' => + 'imagick::getgravity' => array ( 0 => 'int', ), - 'Imagick::getHDRIEnabled' => + 'imagick::gethdrienabled' => array ( 0 => 'int', ), - 'Imagick::getHomeURL' => + 'imagick::gethomeurl' => array ( 0 => 'string', ), - 'Imagick::getImage' => + 'imagick::getimage' => array ( 0 => 'Imagick', ), - 'Imagick::getImageAlphaChannel' => + 'imagick::getimagealphachannel' => array ( 0 => 'int', ), - 'Imagick::getImageArtifact' => + 'imagick::getimageartifact' => array ( 0 => 'string', 'artifact' => 'string', ), - 'Imagick::getImageAttribute' => + 'imagick::getimageattribute' => array ( 0 => 'string', 'key' => 'string', ), - 'Imagick::getImageBackgroundColor' => + 'imagick::getimagebackgroundcolor' => array ( 0 => 'ImagickPixel', ), - 'Imagick::getImageBlob' => + 'imagick::getimageblob' => array ( 0 => 'string', ), - 'Imagick::getImageBluePrimary' => + 'imagick::getimageblueprimary' => array ( 0 => 'array{x: float, y: float}', ), - 'Imagick::getImageBorderColor' => + 'imagick::getimagebordercolor' => array ( 0 => 'ImagickPixel', ), - 'Imagick::getImageChannelDepth' => + 'imagick::getimagechanneldepth' => array ( 0 => 'int', 'channel' => 'int', ), - 'Imagick::getImageChannelDistortion' => + 'imagick::getimagechanneldistortion' => array ( 0 => 'float', 'reference' => 'Imagick', 'channel' => 'int', 'metric' => 'int', ), - 'Imagick::getImageChannelDistortions' => + 'imagick::getimagechanneldistortions' => array ( 0 => 'float', 'reference' => 'Imagick', 'metric' => 'int', 'channel=' => 'int', ), - 'Imagick::getImageChannelExtrema' => + 'imagick::getimagechannelextrema' => array ( 0 => 'array{maxima: int, minima: int}', 'channel' => 'int', ), - 'Imagick::getImageChannelKurtosis' => + 'imagick::getimagechannelkurtosis' => array ( 0 => 'array{kurtosis: float, skewness: float}', 'channel=' => 'int', ), - 'Imagick::getImageChannelMean' => + 'imagick::getimagechannelmean' => array ( 0 => 'array{mean: float, standardDeviation: float}', 'channel' => 'int', ), - 'Imagick::getImageChannelRange' => + 'imagick::getimagechannelrange' => array ( 0 => 'array{maxima: float, minima: float}', 'channel' => 'int', ), - 'Imagick::getImageChannelStatistics' => + 'imagick::getimagechannelstatistics' => array ( 0 => 'array', ), - 'Imagick::getImageClipMask' => + 'imagick::getimageclipmask' => array ( 0 => 'Imagick', ), - 'Imagick::getImageColormapColor' => + 'imagick::getimagecolormapcolor' => array ( 0 => 'ImagickPixel', 'index' => 'int', ), - 'Imagick::getImageColors' => + 'imagick::getimagecolors' => array ( 0 => 'int', ), - 'Imagick::getImageColorspace' => + 'imagick::getimagecolorspace' => array ( 0 => 'int', ), - 'Imagick::getImageCompose' => + 'imagick::getimagecompose' => array ( 0 => 'int', ), - 'Imagick::getImageCompression' => + 'imagick::getimagecompression' => array ( 0 => 'int', ), - 'Imagick::getImageCompressionQuality' => + 'imagick::getimagecompressionquality' => array ( 0 => 'int', ), - 'Imagick::getImageDelay' => + 'imagick::getimagedelay' => array ( 0 => 'int', ), - 'Imagick::getImageDepth' => + 'imagick::getimagedepth' => array ( 0 => 'int', ), - 'Imagick::getImageDispose' => + 'imagick::getimagedispose' => array ( 0 => 'int', ), - 'Imagick::getImageDistortion' => + 'imagick::getimagedistortion' => array ( 0 => 'float', 'reference' => 'magickwand', 'metric' => 'int', ), - 'Imagick::getImageExtrema' => + 'imagick::getimageextrema' => array ( 0 => 'array{max: int, min: int}', ), - 'Imagick::getImageFilename' => + 'imagick::getimagefilename' => array ( 0 => 'string', ), - 'Imagick::getImageFormat' => + 'imagick::getimageformat' => array ( 0 => 'string', ), - 'Imagick::getImageGamma' => + 'imagick::getimagegamma' => array ( 0 => 'float', ), - 'Imagick::getImageGeometry' => + 'imagick::getimagegeometry' => array ( 0 => 'array{height: int, width: int}', ), - 'Imagick::getImageGravity' => + 'imagick::getimagegravity' => array ( 0 => 'int', ), - 'Imagick::getImageGreenPrimary' => + 'imagick::getimagegreenprimary' => array ( 0 => 'array{x: float, y: float}', ), - 'Imagick::getImageHeight' => + 'imagick::getimageheight' => array ( 0 => 'int', ), - 'Imagick::getImageHistogram' => + 'imagick::getimagehistogram' => array ( 0 => 'list', ), - 'Imagick::getImageIndex' => + 'imagick::getimageindex' => array ( 0 => 'int', ), - 'Imagick::getImageInterlaceScheme' => + 'imagick::getimageinterlacescheme' => array ( 0 => 'int', ), - 'Imagick::getImageInterpolateMethod' => + 'imagick::getimageinterpolatemethod' => array ( 0 => 'int', ), - 'Imagick::getImageIterations' => + 'imagick::getimageiterations' => array ( 0 => 'int', ), - 'Imagick::getImageLength' => + 'imagick::getimagelength' => array ( 0 => 'int', ), - 'Imagick::getImageMagickLicense' => + 'imagick::getimagemagicklicense' => array ( 0 => 'string', ), - 'Imagick::getImageMatte' => + 'imagick::getimagematte' => array ( 0 => 'bool', ), - 'Imagick::getImageMatteColor' => + 'imagick::getimagemattecolor' => array ( 0 => 'ImagickPixel', ), - 'Imagick::getImageMimeType' => + 'imagick::getimagemimetype' => array ( 0 => 'string', ), - 'Imagick::getImageOrientation' => + 'imagick::getimageorientation' => array ( 0 => 'int', ), - 'Imagick::getImagePage' => + 'imagick::getimagepage' => array ( 0 => 'array{height: int, width: int, x: int, y: int}', ), - 'Imagick::getImagePixelColor' => + 'imagick::getimagepixelcolor' => array ( 0 => 'ImagickPixel', 'x' => 'int', 'y' => 'int', ), - 'Imagick::getImageProfile' => + 'imagick::getimageprofile' => array ( 0 => 'string', 'name' => 'string', ), - 'Imagick::getImageProfiles' => + 'imagick::getimageprofiles' => array ( 0 => 'array', 'pattern=' => 'string', 'only_names=' => 'bool', ), - 'Imagick::getImageProperties' => + 'imagick::getimageproperties' => array ( 0 => 'array', 'pattern=' => 'string', 'only_names=' => 'bool', ), - 'Imagick::getImageProperty' => + 'imagick::getimageproperty' => array ( 0 => 'false|string', 'name' => 'string', ), - 'Imagick::getImageRedPrimary' => + 'imagick::getimageredprimary' => array ( 0 => 'array{x: float, y: float}', ), - 'Imagick::getImageRegion' => + 'imagick::getimageregion' => array ( 0 => 'Imagick', 'width' => 'int', @@ -12508,88 +12508,88 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::getImageRenderingIntent' => + 'imagick::getimagerenderingintent' => array ( 0 => 'int', ), - 'Imagick::getImageResolution' => + 'imagick::getimageresolution' => array ( 0 => 'array{x: float, y: float}', ), - 'Imagick::getImageScene' => + 'imagick::getimagescene' => array ( 0 => 'int', ), - 'Imagick::getImageSignature' => + 'imagick::getimagesignature' => array ( 0 => 'string', ), - 'Imagick::getImageSize' => + 'imagick::getimagesize' => array ( 0 => 'int', ), - 'Imagick::getImageTicksPerSecond' => + 'imagick::getimagetickspersecond' => array ( 0 => 'int', ), - 'Imagick::getImageTotalInkDensity' => + 'imagick::getimagetotalinkdensity' => array ( 0 => 'float', ), - 'Imagick::getImageType' => + 'imagick::getimagetype' => array ( 0 => 'int', ), - 'Imagick::getImageUnits' => + 'imagick::getimageunits' => array ( 0 => 'int', ), - 'Imagick::getImageVirtualPixelMethod' => + 'imagick::getimagevirtualpixelmethod' => array ( 0 => 'int', ), - 'Imagick::getImageWhitePoint' => + 'imagick::getimagewhitepoint' => array ( 0 => 'array{x: float, y: float}', ), - 'Imagick::getImageWidth' => + 'imagick::getimagewidth' => array ( 0 => 'int', ), - 'Imagick::getImagesBlob' => + 'imagick::getimagesblob' => array ( 0 => 'string', ), - 'Imagick::getInterlaceScheme' => + 'imagick::getinterlacescheme' => array ( 0 => 'int', ), - 'Imagick::getIteratorIndex' => + 'imagick::getiteratorindex' => array ( 0 => 'int', ), - 'Imagick::getNumberImages' => + 'imagick::getnumberimages' => array ( 0 => 'int', ), - 'Imagick::getOption' => + 'imagick::getoption' => array ( 0 => 'string', 'key' => 'string', ), - 'Imagick::getPackageName' => + 'imagick::getpackagename' => array ( 0 => 'string', ), - 'Imagick::getPage' => + 'imagick::getpage' => array ( 0 => 'array{height: int, width: int, x: int, y: int}', ), - 'Imagick::getPixelIterator' => + 'imagick::getpixeliterator' => array ( 0 => 'ImagickPixelIterator', ), - 'Imagick::getPixelRegionIterator' => + 'imagick::getpixelregioniterator' => array ( 0 => 'ImagickPixelIterator', 'x' => 'int', @@ -12597,91 +12597,91 @@ 'columns' => 'int', 'rows' => 'int', ), - 'Imagick::getPointSize' => + 'imagick::getpointsize' => array ( 0 => 'float', ), - 'Imagick::getQuantum' => + 'imagick::getquantum' => array ( 0 => 'int', ), - 'Imagick::getQuantumDepth' => + 'imagick::getquantumdepth' => array ( 0 => 'array{quantumDepthLong: int, quantumDepthString: string}', ), - 'Imagick::getQuantumRange' => + 'imagick::getquantumrange' => array ( 0 => 'array{quantumRangeLong: int, quantumRangeString: string}', ), - 'Imagick::getRegistry' => + 'imagick::getregistry' => array ( 0 => 'false|string', 'key' => 'string', ), - 'Imagick::getReleaseDate' => + 'imagick::getreleasedate' => array ( 0 => 'string', ), - 'Imagick::getResource' => + 'imagick::getresource' => array ( 0 => 'int', 'type' => 'int', ), - 'Imagick::getResourceLimit' => + 'imagick::getresourcelimit' => array ( 0 => 'int', 'type' => 'int', ), - 'Imagick::getSamplingFactors' => + 'imagick::getsamplingfactors' => array ( 0 => 'array', ), - 'Imagick::getSize' => + 'imagick::getsize' => array ( 0 => 'array{columns: int, rows: int}', ), - 'Imagick::getSizeOffset' => + 'imagick::getsizeoffset' => array ( 0 => 'int', ), - 'Imagick::getVersion' => + 'imagick::getversion' => array ( 0 => 'array{versionNumber: int, versionString: string}', ), - 'Imagick::haldClutImage' => + 'imagick::haldclutimage' => array ( 0 => 'bool', 'clut' => 'Imagick', 'channel=' => 'int', ), - 'Imagick::hasNextImage' => + 'imagick::hasnextimage' => array ( 0 => 'bool', ), - 'Imagick::hasPreviousImage' => + 'imagick::haspreviousimage' => array ( 0 => 'bool', ), - 'Imagick::identifyFormat' => + 'imagick::identifyformat' => array ( 0 => 'false|string', 'embedText' => 'string', ), - 'Imagick::identifyImage' => + 'imagick::identifyimage' => array ( 0 => 'array', 'appendrawoutput=' => 'bool', ), - 'Imagick::identifyImageType' => + 'imagick::identifyimagetype' => array ( 0 => 'int', ), - 'Imagick::implodeImage' => + 'imagick::implodeimage' => array ( 0 => 'bool', 'radius' => 'float', ), - 'Imagick::importImagePixels' => + 'imagick::importimagepixels' => array ( 0 => 'bool', 'x' => 'int', @@ -12692,22 +12692,22 @@ 'storage' => 'int', 'pixels' => 'list', ), - 'Imagick::inverseFourierTransformImage' => + 'imagick::inversefouriertransformimage' => array ( 0 => 'void', 'complement' => 'string', 'magnitude' => 'string', ), - 'Imagick::key' => + 'imagick::key' => array ( 0 => 'int|string', ), - 'Imagick::labelImage' => + 'imagick::labelimage' => array ( 0 => 'bool', 'label' => 'string', ), - 'Imagick::levelImage' => + 'imagick::levelimage' => array ( 0 => 'bool', 'blackpoint' => 'float', @@ -12715,13 +12715,13 @@ 'whitepoint' => 'float', 'channel=' => 'int', ), - 'Imagick::linearStretchImage' => + 'imagick::linearstretchimage' => array ( 0 => 'bool', 'blackpoint' => 'float', 'whitepoint' => 'float', ), - 'Imagick::liquidRescaleImage' => + 'imagick::liquidrescaleimage' => array ( 0 => 'bool', 'width' => 'int', @@ -12729,27 +12729,27 @@ 'delta_x' => 'float', 'rigidity' => 'float', ), - 'Imagick::listRegistry' => + 'imagick::listregistry' => array ( 0 => 'array', ), - 'Imagick::localContrastImage' => + 'imagick::localcontrastimage' => array ( 0 => 'bool', 'radius' => 'float', 'strength' => 'float', ), - 'Imagick::magnifyImage' => + 'imagick::magnifyimage' => array ( 0 => 'bool', ), - 'Imagick::mapImage' => + 'imagick::mapimage' => array ( 0 => 'bool', 'map' => 'Imagick', 'dither' => 'bool', ), - 'Imagick::matteFloodfillImage' => + 'imagick::mattefloodfillimage' => array ( 0 => 'bool', 'alpha' => 'float', @@ -12758,28 +12758,28 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::medianFilterImage' => + 'imagick::medianfilterimage' => array ( 0 => 'bool', 'radius' => 'float', ), - 'Imagick::mergeImageLayers' => + 'imagick::mergeimagelayers' => array ( 0 => 'Imagick', 'layer_method' => 'int', ), - 'Imagick::minifyImage' => + 'imagick::minifyimage' => array ( 0 => 'bool', ), - 'Imagick::modulateImage' => + 'imagick::modulateimage' => array ( 0 => 'bool', 'brightness' => 'float', 'saturation' => 'float', 'hue' => 'float', ), - 'Imagick::montageImage' => + 'imagick::montageimage' => array ( 0 => 'Imagick', 'draw' => 'ImagickDraw', @@ -12788,12 +12788,12 @@ 'mode' => 'int', 'frame' => 'string', ), - 'Imagick::morphImages' => + 'imagick::morphimages' => array ( 0 => 'Imagick', 'number_frames' => 'int', ), - 'Imagick::morphology' => + 'imagick::morphology' => array ( 0 => 'void', 'morphologyMethod' => 'int', @@ -12801,11 +12801,11 @@ 'ImagickKernel' => 'ImagickKernel', 'CHANNEL=' => 'string', ), - 'Imagick::mosaicImages' => + 'imagick::mosaicimages' => array ( 0 => 'Imagick', ), - 'Imagick::motionBlurImage' => + 'imagick::motionblurimage' => array ( 0 => 'bool', 'radius' => 'float', @@ -12813,13 +12813,13 @@ 'angle' => 'float', 'channel=' => 'int', ), - 'Imagick::negateImage' => + 'imagick::negateimage' => array ( 0 => 'bool', 'gray' => 'bool', 'channel=' => 'int', ), - 'Imagick::newImage' => + 'imagick::newimage' => array ( 0 => 'bool', 'cols' => 'int', @@ -12827,32 +12827,32 @@ 'background' => 'mixed', 'format=' => 'string', ), - 'Imagick::newPseudoImage' => + 'imagick::newpseudoimage' => array ( 0 => 'bool', 'columns' => 'int', 'rows' => 'int', 'pseudostring' => 'string', ), - 'Imagick::next' => + 'imagick::next' => array ( 0 => 'void', ), - 'Imagick::nextImage' => + 'imagick::nextimage' => array ( 0 => 'bool', ), - 'Imagick::normalizeImage' => + 'imagick::normalizeimage' => array ( 0 => 'bool', 'channel=' => 'int', ), - 'Imagick::oilPaintImage' => + 'imagick::oilpaintimage' => array ( 0 => 'bool', 'radius' => 'float', ), - 'Imagick::opaquePaintImage' => + 'imagick::opaquepaintimage' => array ( 0 => 'bool', 'target' => 'mixed', @@ -12861,17 +12861,17 @@ 'invert' => 'bool', 'channel=' => 'int', ), - 'Imagick::optimizeImageLayers' => + 'imagick::optimizeimagelayers' => array ( 0 => 'bool', ), - 'Imagick::orderedPosterizeImage' => + 'imagick::orderedposterizeimage' => array ( 0 => 'bool', 'threshold_map' => 'string', 'channel=' => 'int', ), - 'Imagick::paintFloodfillImage' => + 'imagick::paintfloodfillimage' => array ( 0 => 'bool', 'fill' => 'mixed', @@ -12881,7 +12881,7 @@ 'y' => 'int', 'channel=' => 'int', ), - 'Imagick::paintOpaqueImage' => + 'imagick::paintopaqueimage' => array ( 0 => 'bool', 'target' => 'mixed', @@ -12889,57 +12889,57 @@ 'fuzz' => 'float', 'channel=' => 'int', ), - 'Imagick::paintTransparentImage' => + 'imagick::painttransparentimage' => array ( 0 => 'bool', 'target' => 'mixed', 'alpha' => 'float', 'fuzz' => 'float', ), - 'Imagick::pingImage' => + 'imagick::pingimage' => array ( 0 => 'bool', 'filename' => 'string', ), - 'Imagick::pingImageBlob' => + 'imagick::pingimageblob' => array ( 0 => 'bool', 'image' => 'string', ), - 'Imagick::pingImageFile' => + 'imagick::pingimagefile' => array ( 0 => 'bool', 'filehandle' => 'resource', 'filename=' => 'string', ), - 'Imagick::polaroidImage' => + 'imagick::polaroidimage' => array ( 0 => 'bool', 'properties' => 'ImagickDraw', 'angle' => 'float', ), - 'Imagick::posterizeImage' => + 'imagick::posterizeimage' => array ( 0 => 'bool', 'levels' => 'int', 'dither' => 'bool', ), - 'Imagick::previewImages' => + 'imagick::previewimages' => array ( 0 => 'bool', 'preview' => 'int', ), - 'Imagick::previousImage' => + 'imagick::previousimage' => array ( 0 => 'bool', ), - 'Imagick::profileImage' => + 'imagick::profileimage' => array ( 0 => 'bool', 'name' => 'string', 'profile' => 'string', ), - 'Imagick::quantizeImage' => + 'imagick::quantizeimage' => array ( 0 => 'bool', 'numbercolors' => 'int', @@ -12948,7 +12948,7 @@ 'dither' => 'bool', 'measureerror' => 'bool', ), - 'Imagick::quantizeImages' => + 'imagick::quantizeimages' => array ( 0 => 'bool', 'numbercolors' => 'int', @@ -12957,30 +12957,30 @@ 'dither' => 'bool', 'measureerror' => 'bool', ), - 'Imagick::queryFontMetrics' => + 'imagick::queryfontmetrics' => array ( 0 => 'array', 'properties' => 'ImagickDraw', 'text' => 'string', 'multiline=' => 'bool', ), - 'Imagick::queryFonts' => + 'imagick::queryfonts' => array ( 0 => 'array', 'pattern=' => 'string', ), - 'Imagick::queryFormats' => + 'imagick::queryformats' => array ( 0 => 'list', 'pattern=' => 'string', ), - 'Imagick::radialBlurImage' => + 'imagick::radialblurimage' => array ( 0 => 'bool', 'angle' => 'float', 'channel=' => 'int', ), - 'Imagick::raiseImage' => + 'imagick::raiseimage' => array ( 0 => 'bool', 'width' => 'int', @@ -12989,65 +12989,65 @@ 'y' => 'int', 'raise' => 'bool', ), - 'Imagick::randomThresholdImage' => + 'imagick::randomthresholdimage' => array ( 0 => 'bool', 'low' => 'float', 'high' => 'float', 'channel=' => 'int', ), - 'Imagick::readImage' => + 'imagick::readimage' => array ( 0 => 'bool', 'filename' => 'string', ), - 'Imagick::readImageBlob' => + 'imagick::readimageblob' => array ( 0 => 'bool', 'image' => 'string', 'filename=' => 'string', ), - 'Imagick::readImageFile' => + 'imagick::readimagefile' => array ( 0 => 'bool', 'filehandle' => 'resource', 'filename=' => 'string', ), - 'Imagick::readImages' => + 'imagick::readimages' => array ( 0 => 'Imagick', 'filenames' => 'string', ), - 'Imagick::recolorImage' => + 'imagick::recolorimage' => array ( 0 => 'bool', 'matrix' => 'list', ), - 'Imagick::reduceNoiseImage' => + 'imagick::reducenoiseimage' => array ( 0 => 'bool', 'radius' => 'float', ), - 'Imagick::remapImage' => + 'imagick::remapimage' => array ( 0 => 'bool', 'replacement' => 'Imagick', 'dither' => 'int', ), - 'Imagick::removeImage' => + 'imagick::removeimage' => array ( 0 => 'bool', ), - 'Imagick::removeImageProfile' => + 'imagick::removeimageprofile' => array ( 0 => 'string', 'name' => 'string', ), - 'Imagick::render' => + 'imagick::render' => array ( 0 => 'bool', ), - 'Imagick::resampleImage' => + 'imagick::resampleimage' => array ( 0 => 'bool', 'x_resolution' => 'float', @@ -13055,16 +13055,16 @@ 'filter' => 'int', 'blur' => 'float', ), - 'Imagick::resetImagePage' => + 'imagick::resetimagepage' => array ( 0 => 'bool', 'page' => 'string', ), - 'Imagick::resetIterator' => + 'imagick::resetiterator' => array ( 0 => 'mixed', ), - 'Imagick::resizeImage' => + 'imagick::resizeimage' => array ( 0 => 'bool', 'columns' => 'int', @@ -13073,29 +13073,29 @@ 'blur' => 'float', 'bestfit=' => 'bool', ), - 'Imagick::rewind' => + 'imagick::rewind' => array ( 0 => 'void', ), - 'Imagick::rollImage' => + 'imagick::rollimage' => array ( 0 => 'bool', 'x' => 'int', 'y' => 'int', ), - 'Imagick::rotateImage' => + 'imagick::rotateimage' => array ( 0 => 'bool', 'background' => 'mixed', 'degrees' => 'float', ), - 'Imagick::rotationalBlurImage' => + 'imagick::rotationalblurimage' => array ( 0 => 'void', 'angle' => 'string', 'CHANNEL=' => 'string', ), - 'Imagick::roundCorners' => + 'imagick::roundcorners' => array ( 0 => 'bool', 'x_rounding' => 'float', @@ -13104,7 +13104,7 @@ 'displace=' => 'float', 'size_correction=' => 'float', ), - 'Imagick::roundCornersImage' => + 'imagick::roundcornersimage' => array ( 0 => 'mixed', 'xRounding' => 'mixed', @@ -13113,20 +13113,20 @@ 'displace' => 'mixed', 'sizeCorrection' => 'mixed', ), - 'Imagick::sampleImage' => + 'imagick::sampleimage' => array ( 0 => 'bool', 'columns' => 'int', 'rows' => 'int', ), - 'Imagick::scaleImage' => + 'imagick::scaleimage' => array ( 0 => 'bool', 'cols' => 'int', 'rows' => 'int', 'bestfit=' => 'bool', ), - 'Imagick::segmentImage' => + 'imagick::segmentimage' => array ( 0 => 'bool', 'colorspace' => 'int', @@ -13134,7 +13134,7 @@ 'smooth_threshold' => 'float', 'verbose=' => 'bool', ), - 'Imagick::selectiveBlurImage' => + 'imagick::selectiveblurimage' => array ( 0 => 'void', 'radius' => 'float', @@ -13142,248 +13142,248 @@ 'threshold' => 'float', 'CHANNEL' => 'int', ), - 'Imagick::separateImageChannel' => + 'imagick::separateimagechannel' => array ( 0 => 'bool', 'channel' => 'int', ), - 'Imagick::sepiaToneImage' => + 'imagick::sepiatoneimage' => array ( 0 => 'bool', 'threshold' => 'float', ), - 'Imagick::setAntiAlias' => + 'imagick::setantialias' => array ( 0 => 'int', 'antialias' => 'bool', ), - 'Imagick::setBackgroundColor' => + 'imagick::setbackgroundcolor' => array ( 0 => 'bool', 'background' => 'mixed', ), - 'Imagick::setColorspace' => + 'imagick::setcolorspace' => array ( 0 => 'bool', 'colorspace' => 'int', ), - 'Imagick::setCompression' => + 'imagick::setcompression' => array ( 0 => 'bool', 'compression' => 'int', ), - 'Imagick::setCompressionQuality' => + 'imagick::setcompressionquality' => array ( 0 => 'bool', 'quality' => 'int', ), - 'Imagick::setFilename' => + 'imagick::setfilename' => array ( 0 => 'bool', 'filename' => 'string', ), - 'Imagick::setFirstIterator' => + 'imagick::setfirstiterator' => array ( 0 => 'bool', ), - 'Imagick::setFont' => + 'imagick::setfont' => array ( 0 => 'bool', 'font' => 'string', ), - 'Imagick::setFormat' => + 'imagick::setformat' => array ( 0 => 'bool', 'format' => 'string', ), - 'Imagick::setGravity' => + 'imagick::setgravity' => array ( 0 => 'bool', 'gravity' => 'int', ), - 'Imagick::setImage' => + 'imagick::setimage' => array ( 0 => 'bool', 'replace' => 'Imagick', ), - 'Imagick::setImageAlpha' => + 'imagick::setimagealpha' => array ( 0 => 'bool', 'alpha' => 'float', ), - 'Imagick::setImageAlphaChannel' => + 'imagick::setimagealphachannel' => array ( 0 => 'bool', 'mode' => 'int', ), - 'Imagick::setImageArtifact' => + 'imagick::setimageartifact' => array ( 0 => 'bool', 'artifact' => 'string', 'value' => 'string', ), - 'Imagick::setImageAttribute' => + 'imagick::setimageattribute' => array ( 0 => 'void', 'key' => 'string', 'value' => 'string', ), - 'Imagick::setImageBackgroundColor' => + 'imagick::setimagebackgroundcolor' => array ( 0 => 'bool', 'background' => 'mixed', ), - 'Imagick::setImageBias' => + 'imagick::setimagebias' => array ( 0 => 'bool', 'bias' => 'float', ), - 'Imagick::setImageBiasQuantum' => + 'imagick::setimagebiasquantum' => array ( 0 => 'void', 'bias' => 'string', ), - 'Imagick::setImageBluePrimary' => + 'imagick::setimageblueprimary' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'Imagick::setImageBorderColor' => + 'imagick::setimagebordercolor' => array ( 0 => 'bool', 'border' => 'mixed', ), - 'Imagick::setImageChannelDepth' => + 'imagick::setimagechanneldepth' => array ( 0 => 'bool', 'channel' => 'int', 'depth' => 'int', ), - 'Imagick::setImageChannelMask' => + 'imagick::setimagechannelmask' => array ( 0 => 'mixed', 'channel' => 'int', ), - 'Imagick::setImageClipMask' => + 'imagick::setimageclipmask' => array ( 0 => 'bool', 'clip_mask' => 'Imagick', ), - 'Imagick::setImageColormapColor' => + 'imagick::setimagecolormapcolor' => array ( 0 => 'bool', 'index' => 'int', 'color' => 'ImagickPixel', ), - 'Imagick::setImageColorspace' => + 'imagick::setimagecolorspace' => array ( 0 => 'bool', 'colorspace' => 'int', ), - 'Imagick::setImageCompose' => + 'imagick::setimagecompose' => array ( 0 => 'bool', 'compose' => 'int', ), - 'Imagick::setImageCompression' => + 'imagick::setimagecompression' => array ( 0 => 'bool', 'compression' => 'int', ), - 'Imagick::setImageCompressionQuality' => + 'imagick::setimagecompressionquality' => array ( 0 => 'bool', 'quality' => 'int', ), - 'Imagick::setImageDelay' => + 'imagick::setimagedelay' => array ( 0 => 'bool', 'delay' => 'int', ), - 'Imagick::setImageDepth' => + 'imagick::setimagedepth' => array ( 0 => 'bool', 'depth' => 'int', ), - 'Imagick::setImageDispose' => + 'imagick::setimagedispose' => array ( 0 => 'bool', 'dispose' => 'int', ), - 'Imagick::setImageExtent' => + 'imagick::setimageextent' => array ( 0 => 'bool', 'columns' => 'int', 'rows' => 'int', ), - 'Imagick::setImageFilename' => + 'imagick::setimagefilename' => array ( 0 => 'bool', 'filename' => 'string', ), - 'Imagick::setImageFormat' => + 'imagick::setimageformat' => array ( 0 => 'bool', 'format' => 'string', ), - 'Imagick::setImageGamma' => + 'imagick::setimagegamma' => array ( 0 => 'bool', 'gamma' => 'float', ), - 'Imagick::setImageGravity' => + 'imagick::setimagegravity' => array ( 0 => 'bool', 'gravity' => 'int', ), - 'Imagick::setImageGreenPrimary' => + 'imagick::setimagegreenprimary' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'Imagick::setImageIndex' => + 'imagick::setimageindex' => array ( 0 => 'bool', 'index' => 'int', ), - 'Imagick::setImageInterlaceScheme' => + 'imagick::setimageinterlacescheme' => array ( 0 => 'bool', 'interlace_scheme' => 'int', ), - 'Imagick::setImageInterpolateMethod' => + 'imagick::setimageinterpolatemethod' => array ( 0 => 'bool', 'method' => 'int', ), - 'Imagick::setImageIterations' => + 'imagick::setimageiterations' => array ( 0 => 'bool', 'iterations' => 'int', ), - 'Imagick::setImageMatte' => + 'imagick::setimagematte' => array ( 0 => 'bool', 'matte' => 'bool', ), - 'Imagick::setImageMatteColor' => + 'imagick::setimagemattecolor' => array ( 0 => 'bool', 'matte' => 'mixed', ), - 'Imagick::setImageOpacity' => + 'imagick::setimageopacity' => array ( 0 => 'bool', 'opacity' => 'float', ), - 'Imagick::setImageOrientation' => + 'imagick::setimageorientation' => array ( 0 => 'bool', 'orientation' => 'int', ), - 'Imagick::setImagePage' => + 'imagick::setimagepage' => array ( 0 => 'bool', 'width' => 'int', @@ -13391,92 +13391,92 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::setImageProfile' => + 'imagick::setimageprofile' => array ( 0 => 'bool', 'name' => 'string', 'profile' => 'string', ), - 'Imagick::setImageProgressMonitor' => + 'imagick::setimageprogressmonitor' => array ( 0 => 'mixed', 'filename' => 'mixed', ), - 'Imagick::setImageProperty' => + 'imagick::setimageproperty' => array ( 0 => 'bool', 'name' => 'string', 'value' => 'string', ), - 'Imagick::setImageRedPrimary' => + 'imagick::setimageredprimary' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'Imagick::setImageRenderingIntent' => + 'imagick::setimagerenderingintent' => array ( 0 => 'bool', 'rendering_intent' => 'int', ), - 'Imagick::setImageResolution' => + 'imagick::setimageresolution' => array ( 0 => 'bool', 'x_resolution' => 'float', 'y_resolution' => 'float', ), - 'Imagick::setImageScene' => + 'imagick::setimagescene' => array ( 0 => 'bool', 'scene' => 'int', ), - 'Imagick::setImageTicksPerSecond' => + 'imagick::setimagetickspersecond' => array ( 0 => 'bool', 'ticks_per_second' => 'int', ), - 'Imagick::setImageType' => + 'imagick::setimagetype' => array ( 0 => 'bool', 'image_type' => 'int', ), - 'Imagick::setImageUnits' => + 'imagick::setimageunits' => array ( 0 => 'bool', 'units' => 'int', ), - 'Imagick::setImageVirtualPixelMethod' => + 'imagick::setimagevirtualpixelmethod' => array ( 0 => 'bool', 'method' => 'int', ), - 'Imagick::setImageWhitePoint' => + 'imagick::setimagewhitepoint' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'Imagick::setInterlaceScheme' => + 'imagick::setinterlacescheme' => array ( 0 => 'bool', 'interlace_scheme' => 'int', ), - 'Imagick::setIteratorIndex' => + 'imagick::setiteratorindex' => array ( 0 => 'bool', 'index' => 'int', ), - 'Imagick::setLastIterator' => + 'imagick::setlastiterator' => array ( 0 => 'bool', ), - 'Imagick::setOption' => + 'imagick::setoption' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'Imagick::setPage' => + 'imagick::setpage' => array ( 0 => 'bool', 'width' => 'int', @@ -13484,65 +13484,65 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::setPointSize' => + 'imagick::setpointsize' => array ( 0 => 'bool', 'point_size' => 'float', ), - 'Imagick::setProgressMonitor' => + 'imagick::setprogressmonitor' => array ( 0 => 'void', 'callback' => 'callable', ), - 'Imagick::setRegistry' => + 'imagick::setregistry' => array ( 0 => 'void', 'key' => 'string', 'value' => 'string', ), - 'Imagick::setResolution' => + 'imagick::setresolution' => array ( 0 => 'bool', 'x_resolution' => 'float', 'y_resolution' => 'float', ), - 'Imagick::setResourceLimit' => + 'imagick::setresourcelimit' => array ( 0 => 'bool', 'type' => 'int', 'limit' => 'int', ), - 'Imagick::setSamplingFactors' => + 'imagick::setsamplingfactors' => array ( 0 => 'bool', 'factors' => 'list', ), - 'Imagick::setSize' => + 'imagick::setsize' => array ( 0 => 'bool', 'columns' => 'int', 'rows' => 'int', ), - 'Imagick::setSizeOffset' => + 'imagick::setsizeoffset' => array ( 0 => 'bool', 'columns' => 'int', 'rows' => 'int', 'offset' => 'int', ), - 'Imagick::setType' => + 'imagick::settype' => array ( 0 => 'bool', 'image_type' => 'int', ), - 'Imagick::shadeImage' => + 'imagick::shadeimage' => array ( 0 => 'bool', 'gray' => 'bool', 'azimuth' => 'float', 'elevation' => 'float', ), - 'Imagick::shadowImage' => + 'imagick::shadowimage' => array ( 0 => 'bool', 'opacity' => 'float', @@ -13550,27 +13550,27 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::sharpenImage' => + 'imagick::sharpenimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', 'channel=' => 'int', ), - 'Imagick::shaveImage' => + 'imagick::shaveimage' => array ( 0 => 'bool', 'columns' => 'int', 'rows' => 'int', ), - 'Imagick::shearImage' => + 'imagick::shearimage' => array ( 0 => 'bool', 'background' => 'mixed', 'x_shear' => 'float', 'y_shear' => 'float', ), - 'Imagick::sigmoidalContrastImage' => + 'imagick::sigmoidalcontrastimage' => array ( 0 => 'bool', 'sharpen' => 'bool', @@ -13578,7 +13578,7 @@ 'beta' => 'float', 'channel=' => 'int', ), - 'Imagick::similarityImage' => + 'imagick::similarityimage' => array ( 0 => 'Imagick', 'Imagick' => 'Imagick', @@ -13587,32 +13587,32 @@ 'similarity_threshold' => 'float', 'metric' => 'int', ), - 'Imagick::sketchImage' => + 'imagick::sketchimage' => array ( 0 => 'bool', 'radius' => 'float', 'sigma' => 'float', 'angle' => 'float', ), - 'Imagick::smushImages' => + 'imagick::smushimages' => array ( 0 => 'Imagick', 'stack' => 'string', 'offset' => 'string', ), - 'Imagick::solarizeImage' => + 'imagick::solarizeimage' => array ( 0 => 'bool', 'threshold' => 'int', ), - 'Imagick::sparseColorImage' => + 'imagick::sparsecolorimage' => array ( 0 => 'bool', 'sparse_method' => 'int', 'arguments' => 'array', 'channel=' => 'int', ), - 'Imagick::spliceImage' => + 'imagick::spliceimage' => array ( 0 => 'bool', 'width' => 'int', @@ -13620,12 +13620,12 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::spreadImage' => + 'imagick::spreadimage' => array ( 0 => 'bool', 'radius' => 'float', ), - 'Imagick::statisticImage' => + 'imagick::statisticimage' => array ( 0 => 'void', 'type' => 'int', @@ -13633,45 +13633,45 @@ 'height' => 'int', 'CHANNEL=' => 'string', ), - 'Imagick::steganoImage' => + 'imagick::steganoimage' => array ( 0 => 'Imagick', 'watermark_wand' => 'Imagick', 'offset' => 'int', ), - 'Imagick::stereoImage' => + 'imagick::stereoimage' => array ( 0 => 'bool', 'offset_wand' => 'Imagick', ), - 'Imagick::stripImage' => + 'imagick::stripimage' => array ( 0 => 'bool', ), - 'Imagick::subImageMatch' => + 'imagick::subimagematch' => array ( 0 => 'Imagick', 'Imagick' => 'Imagick', '&w_offset=' => 'array', '&w_similarity=' => 'float', ), - 'Imagick::swirlImage' => + 'imagick::swirlimage' => array ( 0 => 'bool', 'degrees' => 'float', ), - 'Imagick::textureImage' => + 'imagick::textureimage' => array ( 0 => 'bool', 'texture_wand' => 'Imagick', ), - 'Imagick::thresholdImage' => + 'imagick::thresholdimage' => array ( 0 => 'bool', 'threshold' => 'float', 'channel=' => 'int', ), - 'Imagick::thumbnailImage' => + 'imagick::thumbnailimage' => array ( 0 => 'bool', 'columns' => 'int', @@ -13680,24 +13680,24 @@ 'fill=' => 'bool', 'legacy=' => 'bool', ), - 'Imagick::tintImage' => + 'imagick::tintimage' => array ( 0 => 'bool', 'tint' => 'mixed', 'opacity' => 'mixed', ), - 'Imagick::transformImage' => + 'imagick::transformimage' => array ( 0 => 'Imagick', 'crop' => 'string', 'geometry' => 'string', ), - 'Imagick::transformImageColorspace' => + 'imagick::transformimagecolorspace' => array ( 0 => 'bool', 'colorspace' => 'int', ), - 'Imagick::transparentPaintImage' => + 'imagick::transparentpaintimage' => array ( 0 => 'bool', 'target' => 'mixed', @@ -13705,24 +13705,24 @@ 'fuzz' => 'float', 'invert' => 'bool', ), - 'Imagick::transposeImage' => + 'imagick::transposeimage' => array ( 0 => 'bool', ), - 'Imagick::transverseImage' => + 'imagick::transverseimage' => array ( 0 => 'bool', ), - 'Imagick::trimImage' => + 'imagick::trimimage' => array ( 0 => 'bool', 'fuzz' => 'float', ), - 'Imagick::uniqueImageColors' => + 'imagick::uniqueimagecolors' => array ( 0 => 'bool', ), - 'Imagick::unsharpMaskImage' => + 'imagick::unsharpmaskimage' => array ( 0 => 'bool', 'radius' => 'float', @@ -13731,11 +13731,11 @@ 'threshold' => 'float', 'channel=' => 'int', ), - 'Imagick::valid' => + 'imagick::valid' => array ( 0 => 'bool', ), - 'Imagick::vignetteImage' => + 'imagick::vignetteimage' => array ( 0 => 'bool', 'blackpoint' => 'float', @@ -13743,55 +13743,55 @@ 'x' => 'int', 'y' => 'int', ), - 'Imagick::waveImage' => + 'imagick::waveimage' => array ( 0 => 'bool', 'amplitude' => 'float', 'length' => 'float', ), - 'Imagick::whiteThresholdImage' => + 'imagick::whitethresholdimage' => array ( 0 => 'bool', 'threshold' => 'mixed', ), - 'Imagick::writeImage' => + 'imagick::writeimage' => array ( 0 => 'bool', 'filename=' => 'string', ), - 'Imagick::writeImageFile' => + 'imagick::writeimagefile' => array ( 0 => 'bool', 'filehandle' => 'resource', ), - 'Imagick::writeImages' => + 'imagick::writeimages' => array ( 0 => 'bool', 'filename' => 'string', 'adjoin' => 'bool', ), - 'Imagick::writeImagesFile' => + 'imagick::writeimagesfile' => array ( 0 => 'bool', 'filehandle' => 'resource', ), - 'ImagickDraw::__construct' => + 'imagickdraw::__construct' => array ( 0 => 'void', ), - 'ImagickDraw::affine' => + 'imagickdraw::affine' => array ( 0 => 'bool', 'affine' => 'array', ), - 'ImagickDraw::annotation' => + 'imagickdraw::annotation' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', 'text' => 'string', ), - 'ImagickDraw::arc' => + 'imagickdraw::arc' => array ( 0 => 'bool', 'sx' => 'float', @@ -13801,12 +13801,12 @@ 'sd' => 'float', 'ed' => 'float', ), - 'ImagickDraw::bezier' => + 'imagickdraw::bezier' => array ( 0 => 'bool', 'coordinates' => 'list', ), - 'ImagickDraw::circle' => + 'imagickdraw::circle' => array ( 0 => 'bool', 'ox' => 'float', @@ -13814,27 +13814,27 @@ 'px' => 'float', 'py' => 'float', ), - 'ImagickDraw::clear' => + 'imagickdraw::clear' => array ( 0 => 'bool', ), - 'ImagickDraw::clone' => + 'imagickdraw::clone' => array ( 0 => 'ImagickDraw', ), - 'ImagickDraw::color' => + 'imagickdraw::color' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', 'paintmethod' => 'int', ), - 'ImagickDraw::comment' => + 'imagickdraw::comment' => array ( 0 => 'bool', 'comment' => 'string', ), - 'ImagickDraw::composite' => + 'imagickdraw::composite' => array ( 0 => 'bool', 'compose' => 'int', @@ -13844,11 +13844,11 @@ 'height' => 'float', 'compositewand' => 'Imagick', ), - 'ImagickDraw::destroy' => + 'imagickdraw::destroy' => array ( 0 => 'bool', ), - 'ImagickDraw::ellipse' => + 'imagickdraw::ellipse' => array ( 0 => 'bool', 'ox' => 'float', @@ -13858,151 +13858,151 @@ 'start' => 'float', 'end' => 'float', ), - 'ImagickDraw::getBorderColor' => + 'imagickdraw::getbordercolor' => array ( 0 => 'ImagickPixel', ), - 'ImagickDraw::getClipPath' => + 'imagickdraw::getclippath' => array ( 0 => 'false|string', ), - 'ImagickDraw::getClipRule' => + 'imagickdraw::getcliprule' => array ( 0 => 'int', ), - 'ImagickDraw::getClipUnits' => + 'imagickdraw::getclipunits' => array ( 0 => 'int', ), - 'ImagickDraw::getDensity' => + 'imagickdraw::getdensity' => array ( 0 => 'null|string', ), - 'ImagickDraw::getFillColor' => + 'imagickdraw::getfillcolor' => array ( 0 => 'ImagickPixel', ), - 'ImagickDraw::getFillOpacity' => + 'imagickdraw::getfillopacity' => array ( 0 => 'float', ), - 'ImagickDraw::getFillRule' => + 'imagickdraw::getfillrule' => array ( 0 => 'int', ), - 'ImagickDraw::getFont' => + 'imagickdraw::getfont' => array ( 0 => 'false|string', ), - 'ImagickDraw::getFontFamily' => + 'imagickdraw::getfontfamily' => array ( 0 => 'false|string', ), - 'ImagickDraw::getFontResolution' => + 'imagickdraw::getfontresolution' => array ( 0 => 'array', ), - 'ImagickDraw::getFontSize' => + 'imagickdraw::getfontsize' => array ( 0 => 'float', ), - 'ImagickDraw::getFontStretch' => + 'imagickdraw::getfontstretch' => array ( 0 => 'int', ), - 'ImagickDraw::getFontStyle' => + 'imagickdraw::getfontstyle' => array ( 0 => 'int', ), - 'ImagickDraw::getFontWeight' => + 'imagickdraw::getfontweight' => array ( 0 => 'int', ), - 'ImagickDraw::getGravity' => + 'imagickdraw::getgravity' => array ( 0 => 'int', ), - 'ImagickDraw::getOpacity' => + 'imagickdraw::getopacity' => array ( 0 => 'float', ), - 'ImagickDraw::getStrokeAntialias' => + 'imagickdraw::getstrokeantialias' => array ( 0 => 'bool', ), - 'ImagickDraw::getStrokeColor' => + 'imagickdraw::getstrokecolor' => array ( 0 => 'ImagickPixel', ), - 'ImagickDraw::getStrokeDashArray' => + 'imagickdraw::getstrokedasharray' => array ( 0 => 'array', ), - 'ImagickDraw::getStrokeDashOffset' => + 'imagickdraw::getstrokedashoffset' => array ( 0 => 'float', ), - 'ImagickDraw::getStrokeLineCap' => + 'imagickdraw::getstrokelinecap' => array ( 0 => 'int', ), - 'ImagickDraw::getStrokeLineJoin' => + 'imagickdraw::getstrokelinejoin' => array ( 0 => 'int', ), - 'ImagickDraw::getStrokeMiterLimit' => + 'imagickdraw::getstrokemiterlimit' => array ( 0 => 'int', ), - 'ImagickDraw::getStrokeOpacity' => + 'imagickdraw::getstrokeopacity' => array ( 0 => 'float', ), - 'ImagickDraw::getStrokeWidth' => + 'imagickdraw::getstrokewidth' => array ( 0 => 'float', ), - 'ImagickDraw::getTextAlignment' => + 'imagickdraw::gettextalignment' => array ( 0 => 'int', ), - 'ImagickDraw::getTextAntialias' => + 'imagickdraw::gettextantialias' => array ( 0 => 'bool', ), - 'ImagickDraw::getTextDecoration' => + 'imagickdraw::gettextdecoration' => array ( 0 => 'int', ), - 'ImagickDraw::getTextDirection' => + 'imagickdraw::gettextdirection' => array ( 0 => 'bool', ), - 'ImagickDraw::getTextEncoding' => + 'imagickdraw::gettextencoding' => array ( 0 => 'string', ), - 'ImagickDraw::getTextInterlineSpacing' => + 'imagickdraw::gettextinterlinespacing' => array ( 0 => 'float', ), - 'ImagickDraw::getTextInterwordSpacing' => + 'imagickdraw::gettextinterwordspacing' => array ( 0 => 'float', ), - 'ImagickDraw::getTextKerning' => + 'imagickdraw::gettextkerning' => array ( 0 => 'float', ), - 'ImagickDraw::getTextUnderColor' => + 'imagickdraw::gettextundercolor' => array ( 0 => 'ImagickPixel', ), - 'ImagickDraw::getVectorGraphics' => + 'imagickdraw::getvectorgraphics' => array ( 0 => 'string', ), - 'ImagickDraw::line' => + 'imagickdraw::line' => array ( 0 => 'bool', 'sx' => 'float', @@ -14010,18 +14010,18 @@ 'ex' => 'float', 'ey' => 'float', ), - 'ImagickDraw::matte' => + 'imagickdraw::matte' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', 'paintmethod' => 'int', ), - 'ImagickDraw::pathClose' => + 'imagickdraw::pathclose' => array ( 0 => 'bool', ), - 'ImagickDraw::pathCurveToAbsolute' => + 'imagickdraw::pathcurvetoabsolute' => array ( 0 => 'bool', 'x1' => 'float', @@ -14031,7 +14031,7 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathCurveToQuadraticBezierAbsolute' => + 'imagickdraw::pathcurvetoquadraticbezierabsolute' => array ( 0 => 'bool', 'x1' => 'float', @@ -14039,7 +14039,7 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathCurveToQuadraticBezierRelative' => + 'imagickdraw::pathcurvetoquadraticbezierrelative' => array ( 0 => 'bool', 'x1' => 'float', @@ -14047,19 +14047,19 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathCurveToQuadraticBezierSmoothAbsolute' => + 'imagickdraw::pathcurvetoquadraticbeziersmoothabsolute' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathCurveToQuadraticBezierSmoothRelative' => + 'imagickdraw::pathcurvetoquadraticbeziersmoothrelative' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathCurveToRelative' => + 'imagickdraw::pathcurvetorelative' => array ( 0 => 'bool', 'x1' => 'float', @@ -14069,7 +14069,7 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathCurveToSmoothAbsolute' => + 'imagickdraw::pathcurvetosmoothabsolute' => array ( 0 => 'bool', 'x2' => 'float', @@ -14077,7 +14077,7 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathCurveToSmoothRelative' => + 'imagickdraw::pathcurvetosmoothrelative' => array ( 0 => 'bool', 'x2' => 'float', @@ -14085,7 +14085,7 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathEllipticArcAbsolute' => + 'imagickdraw::pathellipticarcabsolute' => array ( 0 => 'bool', 'rx' => 'float', @@ -14096,7 +14096,7 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathEllipticArcRelative' => + 'imagickdraw::pathellipticarcrelative' => array ( 0 => 'bool', 'rx' => 'float', @@ -14107,104 +14107,104 @@ 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathFinish' => + 'imagickdraw::pathfinish' => array ( 0 => 'bool', ), - 'ImagickDraw::pathLineToAbsolute' => + 'imagickdraw::pathlinetoabsolute' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathLineToHorizontalAbsolute' => + 'imagickdraw::pathlinetohorizontalabsolute' => array ( 0 => 'bool', 'x' => 'float', ), - 'ImagickDraw::pathLineToHorizontalRelative' => + 'imagickdraw::pathlinetohorizontalrelative' => array ( 0 => 'bool', 'x' => 'float', ), - 'ImagickDraw::pathLineToRelative' => + 'imagickdraw::pathlinetorelative' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathLineToVerticalAbsolute' => + 'imagickdraw::pathlinetoverticalabsolute' => array ( 0 => 'bool', 'y' => 'float', ), - 'ImagickDraw::pathLineToVerticalRelative' => + 'imagickdraw::pathlinetoverticalrelative' => array ( 0 => 'bool', 'y' => 'float', ), - 'ImagickDraw::pathMoveToAbsolute' => + 'imagickdraw::pathmovetoabsolute' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathMoveToRelative' => + 'imagickdraw::pathmovetorelative' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::pathStart' => + 'imagickdraw::pathstart' => array ( 0 => 'bool', ), - 'ImagickDraw::point' => + 'imagickdraw::point' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::polygon' => + 'imagickdraw::polygon' => array ( 0 => 'bool', 'coordinates' => 'list', ), - 'ImagickDraw::polyline' => + 'imagickdraw::polyline' => array ( 0 => 'bool', 'coordinates' => 'list', ), - 'ImagickDraw::pop' => + 'imagickdraw::pop' => array ( 0 => 'bool', ), - 'ImagickDraw::popClipPath' => + 'imagickdraw::popclippath' => array ( 0 => 'bool', ), - 'ImagickDraw::popDefs' => + 'imagickdraw::popdefs' => array ( 0 => 'bool', ), - 'ImagickDraw::popPattern' => + 'imagickdraw::poppattern' => array ( 0 => 'bool', ), - 'ImagickDraw::push' => + 'imagickdraw::push' => array ( 0 => 'bool', ), - 'ImagickDraw::pushClipPath' => + 'imagickdraw::pushclippath' => array ( 0 => 'bool', 'clip_mask_id' => 'string', ), - 'ImagickDraw::pushDefs' => + 'imagickdraw::pushdefs' => array ( 0 => 'bool', ), - 'ImagickDraw::pushPattern' => + 'imagickdraw::pushpattern' => array ( 0 => 'bool', 'pattern_id' => 'string', @@ -14213,7 +14213,7 @@ 'width' => 'float', 'height' => 'float', ), - 'ImagickDraw::rectangle' => + 'imagickdraw::rectangle' => array ( 0 => 'bool', 'x1' => 'float', @@ -14221,20 +14221,20 @@ 'x2' => 'float', 'y2' => 'float', ), - 'ImagickDraw::render' => + 'imagickdraw::render' => array ( 0 => 'bool', ), - 'ImagickDraw::resetVectorGraphics' => + 'imagickdraw::resetvectorgraphics' => array ( 0 => 'void', ), - 'ImagickDraw::rotate' => + 'imagickdraw::rotate' => array ( 0 => 'bool', 'degrees' => 'float', ), - 'ImagickDraw::roundRectangle' => + 'imagickdraw::roundrectangle' => array ( 0 => 'bool', 'x1' => 'float', @@ -14244,220 +14244,220 @@ 'rx' => 'float', 'ry' => 'float', ), - 'ImagickDraw::scale' => + 'imagickdraw::scale' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::setBorderColor' => + 'imagickdraw::setbordercolor' => array ( 0 => 'bool', 'color' => 'ImagickPixel|string', ), - 'ImagickDraw::setClipPath' => + 'imagickdraw::setclippath' => array ( 0 => 'bool', 'clip_mask' => 'string', ), - 'ImagickDraw::setClipRule' => + 'imagickdraw::setcliprule' => array ( 0 => 'bool', 'fill_rule' => 'int', ), - 'ImagickDraw::setClipUnits' => + 'imagickdraw::setclipunits' => array ( 0 => 'bool', 'clip_units' => 'int', ), - 'ImagickDraw::setDensity' => + 'imagickdraw::setdensity' => array ( 0 => 'bool', 'density_string' => 'string', ), - 'ImagickDraw::setFillAlpha' => + 'imagickdraw::setfillalpha' => array ( 0 => 'bool', 'opacity' => 'float', ), - 'ImagickDraw::setFillColor' => + 'imagickdraw::setfillcolor' => array ( 0 => 'bool', 'fill_pixel' => 'ImagickPixel|string', ), - 'ImagickDraw::setFillOpacity' => + 'imagickdraw::setfillopacity' => array ( 0 => 'bool', 'fillopacity' => 'float', ), - 'ImagickDraw::setFillPatternURL' => + 'imagickdraw::setfillpatternurl' => array ( 0 => 'bool', 'fill_url' => 'string', ), - 'ImagickDraw::setFillRule' => + 'imagickdraw::setfillrule' => array ( 0 => 'bool', 'fill_rule' => 'int', ), - 'ImagickDraw::setFont' => + 'imagickdraw::setfont' => array ( 0 => 'bool', 'font_name' => 'string', ), - 'ImagickDraw::setFontFamily' => + 'imagickdraw::setfontfamily' => array ( 0 => 'bool', 'font_family' => 'string', ), - 'ImagickDraw::setFontResolution' => + 'imagickdraw::setfontresolution' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickDraw::setFontSize' => + 'imagickdraw::setfontsize' => array ( 0 => 'bool', 'pointsize' => 'float', ), - 'ImagickDraw::setFontStretch' => + 'imagickdraw::setfontstretch' => array ( 0 => 'bool', 'fontstretch' => 'int', ), - 'ImagickDraw::setFontStyle' => + 'imagickdraw::setfontstyle' => array ( 0 => 'bool', 'style' => 'int', ), - 'ImagickDraw::setFontWeight' => + 'imagickdraw::setfontweight' => array ( 0 => 'bool', 'font_weight' => 'int', ), - 'ImagickDraw::setGravity' => + 'imagickdraw::setgravity' => array ( 0 => 'bool', 'gravity' => 'int', ), - 'ImagickDraw::setOpacity' => + 'imagickdraw::setopacity' => array ( 0 => 'void', 'opacity' => 'float', ), - 'ImagickDraw::setResolution' => + 'imagickdraw::setresolution' => array ( 0 => 'void', 'x_resolution' => 'float', 'y_resolution' => 'float', ), - 'ImagickDraw::setStrokeAlpha' => + 'imagickdraw::setstrokealpha' => array ( 0 => 'bool', 'opacity' => 'float', ), - 'ImagickDraw::setStrokeAntialias' => + 'imagickdraw::setstrokeantialias' => array ( 0 => 'bool', 'stroke_antialias' => 'bool', ), - 'ImagickDraw::setStrokeColor' => + 'imagickdraw::setstrokecolor' => array ( 0 => 'bool', 'stroke_pixel' => 'ImagickPixel|string', ), - 'ImagickDraw::setStrokeDashArray' => + 'imagickdraw::setstrokedasharray' => array ( 0 => 'bool', 'dasharray' => 'list', ), - 'ImagickDraw::setStrokeDashOffset' => + 'imagickdraw::setstrokedashoffset' => array ( 0 => 'bool', 'dash_offset' => 'float', ), - 'ImagickDraw::setStrokeLineCap' => + 'imagickdraw::setstrokelinecap' => array ( 0 => 'bool', 'linecap' => 'int', ), - 'ImagickDraw::setStrokeLineJoin' => + 'imagickdraw::setstrokelinejoin' => array ( 0 => 'bool', 'linejoin' => 'int', ), - 'ImagickDraw::setStrokeMiterLimit' => + 'imagickdraw::setstrokemiterlimit' => array ( 0 => 'bool', 'miterlimit' => 'int', ), - 'ImagickDraw::setStrokeOpacity' => + 'imagickdraw::setstrokeopacity' => array ( 0 => 'bool', 'stroke_opacity' => 'float', ), - 'ImagickDraw::setStrokePatternURL' => + 'imagickdraw::setstrokepatternurl' => array ( 0 => 'bool', 'stroke_url' => 'string', ), - 'ImagickDraw::setStrokeWidth' => + 'imagickdraw::setstrokewidth' => array ( 0 => 'bool', 'stroke_width' => 'float', ), - 'ImagickDraw::setTextAlignment' => + 'imagickdraw::settextalignment' => array ( 0 => 'bool', 'alignment' => 'int', ), - 'ImagickDraw::setTextAntialias' => + 'imagickdraw::settextantialias' => array ( 0 => 'bool', 'antialias' => 'bool', ), - 'ImagickDraw::setTextDecoration' => + 'imagickdraw::settextdecoration' => array ( 0 => 'bool', 'decoration' => 'int', ), - 'ImagickDraw::setTextDirection' => + 'imagickdraw::settextdirection' => array ( 0 => 'bool', 'direction' => 'int', ), - 'ImagickDraw::setTextEncoding' => + 'imagickdraw::settextencoding' => array ( 0 => 'bool', 'encoding' => 'string', ), - 'ImagickDraw::setTextInterlineSpacing' => + 'imagickdraw::settextinterlinespacing' => array ( 0 => 'void', 'spacing' => 'float', ), - 'ImagickDraw::setTextInterwordSpacing' => + 'imagickdraw::settextinterwordspacing' => array ( 0 => 'void', 'spacing' => 'float', ), - 'ImagickDraw::setTextKerning' => + 'imagickdraw::settextkerning' => array ( 0 => 'void', 'kerning' => 'float', ), - 'ImagickDraw::setTextUnderColor' => + 'imagickdraw::settextundercolor' => array ( 0 => 'bool', 'under_color' => 'ImagickPixel|string', ), - 'ImagickDraw::setVectorGraphics' => + 'imagickdraw::setvectorgraphics' => array ( 0 => 'bool', 'xml' => 'string', ), - 'ImagickDraw::setViewbox' => + 'imagickdraw::setviewbox' => array ( 0 => 'bool', 'x1' => 'int', @@ -14465,206 +14465,206 @@ 'x2' => 'int', 'y2' => 'int', ), - 'ImagickDraw::skewX' => + 'imagickdraw::skewx' => array ( 0 => 'bool', 'degrees' => 'float', ), - 'ImagickDraw::skewY' => + 'imagickdraw::skewy' => array ( 0 => 'bool', 'degrees' => 'float', ), - 'ImagickDraw::translate' => + 'imagickdraw::translate' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'ImagickKernel::addKernel' => + 'imagickkernel::addkernel' => array ( 0 => 'void', 'ImagickKernel' => 'ImagickKernel', ), - 'ImagickKernel::addUnityKernel' => + 'imagickkernel::addunitykernel' => array ( 0 => 'void', ), - 'ImagickKernel::fromBuiltin' => + 'imagickkernel::frombuiltin' => array ( 0 => 'ImagickKernel', 'kernelType' => 'string', 'kernelString' => 'string', ), - 'ImagickKernel::fromMatrix' => + 'imagickkernel::frommatrix' => array ( 0 => 'ImagickKernel', 'matrix' => 'list>', 'origin=' => 'array', ), - 'ImagickKernel::getMatrix' => + 'imagickkernel::getmatrix' => array ( 0 => 'list>', ), - 'ImagickKernel::scale' => + 'imagickkernel::scale' => array ( 0 => 'void', ), - 'ImagickKernel::separate' => + 'imagickkernel::separate' => array ( 0 => 'array', ), - 'ImagickKernel::seperate' => + 'imagickkernel::seperate' => array ( 0 => 'void', ), - 'ImagickPixel::__construct' => + 'imagickpixel::__construct' => array ( 0 => 'void', 'color=' => 'string', ), - 'ImagickPixel::clear' => + 'imagickpixel::clear' => array ( 0 => 'bool', ), - 'ImagickPixel::clone' => + 'imagickpixel::clone' => array ( 0 => 'void', ), - 'ImagickPixel::destroy' => + 'imagickpixel::destroy' => array ( 0 => 'bool', ), - 'ImagickPixel::getColor' => + 'imagickpixel::getcolor' => array ( 0 => 'array{a: float|int, b: float|int, g: float|int, r: float|int}', 'normalized=' => '0|1|2', ), - 'ImagickPixel::getColorAsString' => + 'imagickpixel::getcolorasstring' => array ( 0 => 'string', ), - 'ImagickPixel::getColorCount' => + 'imagickpixel::getcolorcount' => array ( 0 => 'int', ), - 'ImagickPixel::getColorQuantum' => + 'imagickpixel::getcolorquantum' => array ( 0 => 'mixed', ), - 'ImagickPixel::getColorValue' => + 'imagickpixel::getcolorvalue' => array ( 0 => 'float', 'color' => 'int', ), - 'ImagickPixel::getColorValueQuantum' => + 'imagickpixel::getcolorvaluequantum' => array ( 0 => 'mixed', ), - 'ImagickPixel::getHSL' => + 'imagickpixel::gethsl' => array ( 0 => 'array{hue: float, luminosity: float, saturation: float}', ), - 'ImagickPixel::getIndex' => + 'imagickpixel::getindex' => array ( 0 => 'int', ), - 'ImagickPixel::isPixelSimilar' => + 'imagickpixel::ispixelsimilar' => array ( 0 => 'bool', 'color' => 'ImagickPixel', 'fuzz' => 'float', ), - 'ImagickPixel::isPixelSimilarQuantum' => + 'imagickpixel::ispixelsimilarquantum' => array ( 0 => 'bool', 'color' => 'string', 'fuzz=' => 'string', ), - 'ImagickPixel::isSimilar' => + 'imagickpixel::issimilar' => array ( 0 => 'bool', 'color' => 'ImagickPixel', 'fuzz' => 'float', ), - 'ImagickPixel::setColor' => + 'imagickpixel::setcolor' => array ( 0 => 'bool', 'color' => 'string', ), - 'ImagickPixel::setColorFromPixel' => + 'imagickpixel::setcolorfrompixel' => array ( 0 => 'bool', 'srcPixel' => 'ImagickPixel', ), - 'ImagickPixel::setColorValue' => + 'imagickpixel::setcolorvalue' => array ( 0 => 'bool', 'color' => 'int', 'value' => 'float', ), - 'ImagickPixel::setColorValueQuantum' => + 'imagickpixel::setcolorvaluequantum' => array ( 0 => 'void', 'color' => 'int', 'value' => 'mixed', ), - 'ImagickPixel::setHSL' => + 'imagickpixel::sethsl' => array ( 0 => 'bool', 'hue' => 'float', 'saturation' => 'float', 'luminosity' => 'float', ), - 'ImagickPixel::setIndex' => + 'imagickpixel::setindex' => array ( 0 => 'void', 'index' => 'int', ), - 'ImagickPixel::setcolorcount' => + 'imagickpixel::setcolorcount' => array ( 0 => 'void', 'colorCount' => 'string', ), - 'ImagickPixelIterator::__construct' => + 'imagickpixeliterator::__construct' => array ( 0 => 'void', 'wand' => 'Imagick', ), - 'ImagickPixelIterator::clear' => + 'imagickpixeliterator::clear' => array ( 0 => 'bool', ), - 'ImagickPixelIterator::current' => + 'imagickpixeliterator::current' => array ( 0 => 'mixed', ), - 'ImagickPixelIterator::destroy' => + 'imagickpixeliterator::destroy' => array ( 0 => 'bool', ), - 'ImagickPixelIterator::getCurrentIteratorRow' => + 'imagickpixeliterator::getcurrentiteratorrow' => array ( 0 => 'array', ), - 'ImagickPixelIterator::getIteratorRow' => + 'imagickpixeliterator::getiteratorrow' => array ( 0 => 'int', ), - 'ImagickPixelIterator::getNextIteratorRow' => + 'imagickpixeliterator::getnextiteratorrow' => array ( 0 => 'array', ), - 'ImagickPixelIterator::getPreviousIteratorRow' => + 'imagickpixeliterator::getpreviousiteratorrow' => array ( 0 => 'array', ), - 'ImagickPixelIterator::getpixeliterator' => + 'imagickpixeliterator::getpixeliterator' => array ( 0 => 'mixed', 'Imagick' => 'Imagick', ), - 'ImagickPixelIterator::getpixelregioniterator' => + 'imagickpixeliterator::getpixelregioniterator' => array ( 0 => 'mixed', 'Imagick' => 'Imagick', @@ -14673,16 +14673,16 @@ 'columns' => 'mixed', 'rows' => 'mixed', ), - 'ImagickPixelIterator::key' => + 'imagickpixeliterator::key' => array ( 0 => 'int|string', ), - 'ImagickPixelIterator::newPixelIterator' => + 'imagickpixeliterator::newpixeliterator' => array ( 0 => 'bool', 'wand' => 'Imagick', ), - 'ImagickPixelIterator::newPixelRegionIterator' => + 'imagickpixeliterator::newpixelregioniterator' => array ( 0 => 'bool', 'wand' => 'Imagick', @@ -14691,349 +14691,349 @@ 'columns' => 'int', 'rows' => 'int', ), - 'ImagickPixelIterator::next' => + 'imagickpixeliterator::next' => array ( 0 => 'void', ), - 'ImagickPixelIterator::resetIterator' => + 'imagickpixeliterator::resetiterator' => array ( 0 => 'bool', ), - 'ImagickPixelIterator::rewind' => + 'imagickpixeliterator::rewind' => array ( 0 => 'void', ), - 'ImagickPixelIterator::setIteratorFirstRow' => + 'imagickpixeliterator::setiteratorfirstrow' => array ( 0 => 'bool', ), - 'ImagickPixelIterator::setIteratorLastRow' => + 'imagickpixeliterator::setiteratorlastrow' => array ( 0 => 'bool', ), - 'ImagickPixelIterator::setIteratorRow' => + 'imagickpixeliterator::setiteratorrow' => array ( 0 => 'bool', 'row' => 'int', ), - 'ImagickPixelIterator::syncIterator' => + 'imagickpixeliterator::synciterator' => array ( 0 => 'bool', ), - 'ImagickPixelIterator::valid' => + 'imagickpixeliterator::valid' => array ( 0 => 'bool', ), - 'InfiniteIterator::__construct' => + 'infiniteiterator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', ), - 'InfiniteIterator::current' => + 'infiniteiterator::current' => array ( 0 => 'mixed', ), - 'InfiniteIterator::getInnerIterator' => + 'infiniteiterator::getinneriterator' => array ( 0 => 'Iterator', ), - 'InfiniteIterator::key' => + 'infiniteiterator::key' => array ( 0 => 'scalar', ), - 'InfiniteIterator::next' => + 'infiniteiterator::next' => array ( 0 => 'void', ), - 'InfiniteIterator::rewind' => + 'infiniteiterator::rewind' => array ( 0 => 'void', ), - 'InfiniteIterator::valid' => + 'infiniteiterator::valid' => array ( 0 => 'bool', ), - 'IntlBreakIterator::__construct' => + 'intlbreakiterator::__construct' => array ( 0 => 'void', ), - 'IntlBreakIterator::createCharacterInstance' => + 'intlbreakiterator::createcharacterinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlBreakIterator::createCodePointInstance' => + 'intlbreakiterator::createcodepointinstance' => array ( 0 => 'IntlCodePointBreakIterator', ), - 'IntlBreakIterator::createLineInstance' => + 'intlbreakiterator::createlineinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlBreakIterator::createSentenceInstance' => + 'intlbreakiterator::createsentenceinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlBreakIterator::createTitleInstance' => + 'intlbreakiterator::createtitleinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlBreakIterator::createWordInstance' => + 'intlbreakiterator::createwordinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlBreakIterator::current' => + 'intlbreakiterator::current' => array ( 0 => 'int', ), - 'IntlBreakIterator::first' => + 'intlbreakiterator::first' => array ( 0 => 'int', ), - 'IntlBreakIterator::following' => + 'intlbreakiterator::following' => array ( 0 => 'int', 'offset' => 'int', ), - 'IntlBreakIterator::getErrorCode' => + 'intlbreakiterator::geterrorcode' => array ( 0 => 'int', ), - 'IntlBreakIterator::getErrorMessage' => + 'intlbreakiterator::geterrormessage' => array ( 0 => 'string', ), - 'IntlBreakIterator::getLocale' => + 'intlbreakiterator::getlocale' => array ( 0 => 'false|string', 'type' => 'int', ), - 'IntlBreakIterator::getPartsIterator' => + 'intlbreakiterator::getpartsiterator' => array ( 0 => 'IntlPartsIterator', 'type=' => 'string', ), - 'IntlBreakIterator::getText' => + 'intlbreakiterator::gettext' => array ( 0 => 'null|string', ), - 'IntlBreakIterator::isBoundary' => + 'intlbreakiterator::isboundary' => array ( 0 => 'bool', 'offset' => 'int', ), - 'IntlBreakIterator::last' => + 'intlbreakiterator::last' => array ( 0 => 'int', ), - 'IntlBreakIterator::next' => + 'intlbreakiterator::next' => array ( 0 => 'int', 'offset=' => 'int|null', ), - 'IntlBreakIterator::preceding' => + 'intlbreakiterator::preceding' => array ( 0 => 'int', 'offset' => 'int', ), - 'IntlBreakIterator::previous' => + 'intlbreakiterator::previous' => array ( 0 => 'int', ), - 'IntlBreakIterator::setText' => + 'intlbreakiterator::settext' => array ( 0 => 'bool|null', 'text' => 'string', ), - 'IntlCalendar::__construct' => + 'intlcalendar::__construct' => array ( 0 => 'void', ), - 'IntlCalendar::add' => + 'intlcalendar::add' => array ( 0 => 'bool', 'field' => 'int', 'value' => 'int', ), - 'IntlCalendar::after' => + 'intlcalendar::after' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlCalendar::before' => + 'intlcalendar::before' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlCalendar::clear' => + 'intlcalendar::clear' => array ( 0 => 'bool', 'field=' => 'int|null', ), - 'IntlCalendar::createInstance' => + 'intlcalendar::createinstance' => array ( 0 => 'IntlCalendar|null', 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', 'locale=' => 'null|string', ), - 'IntlCalendar::equals' => + 'intlcalendar::equals' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlCalendar::fieldDifference' => + 'intlcalendar::fielddifference' => array ( 0 => 'false|int', 'timestamp' => 'float', 'field' => 'int', ), - 'IntlCalendar::fromDateTime' => + 'intlcalendar::fromdatetime' => array ( 0 => 'IntlCalendar|null', 'datetime' => 'DateTime|string', 'locale=' => 'null|string', ), - 'IntlCalendar::get' => + 'intlcalendar::get' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlCalendar::getActualMaximum' => + 'intlcalendar::getactualmaximum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlCalendar::getActualMinimum' => + 'intlcalendar::getactualminimum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlCalendar::getAvailableLocales' => + 'intlcalendar::getavailablelocales' => array ( 0 => 'array', ), - 'IntlCalendar::getDayOfWeekType' => + 'intlcalendar::getdayofweektype' => array ( 0 => 'int', 'dayOfWeek' => 'int', ), - 'IntlCalendar::getErrorCode' => + 'intlcalendar::geterrorcode' => array ( 0 => 'int', ), - 'IntlCalendar::getErrorMessage' => + 'intlcalendar::geterrormessage' => array ( 0 => 'string', ), - 'IntlCalendar::getFirstDayOfWeek' => + 'intlcalendar::getfirstdayofweek' => array ( 0 => 'int', ), - 'IntlCalendar::getGreatestMinimum' => + 'intlcalendar::getgreatestminimum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlCalendar::getKeywordValuesForLocale' => + 'intlcalendar::getkeywordvaluesforlocale' => array ( 0 => 'IntlIterator|false', 'keyword' => 'string', 'locale' => 'string', 'onlyCommon' => 'bool', ), - 'IntlCalendar::getLeastMaximum' => + 'intlcalendar::getleastmaximum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlCalendar::getLocale' => + 'intlcalendar::getlocale' => array ( 0 => 'false|string', 'type' => 'int', ), - 'IntlCalendar::getMaximum' => + 'intlcalendar::getmaximum' => array ( 0 => 'false|int', 'field' => 'int', ), - 'IntlCalendar::getMinimalDaysInFirstWeek' => + 'intlcalendar::getminimaldaysinfirstweek' => array ( 0 => 'int', ), - 'IntlCalendar::getMinimum' => + 'intlcalendar::getminimum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlCalendar::getNow' => + 'intlcalendar::getnow' => array ( 0 => 'float', ), - 'IntlCalendar::getRepeatedWallTimeOption' => + 'intlcalendar::getrepeatedwalltimeoption' => array ( 0 => 'int', ), - 'IntlCalendar::getSkippedWallTimeOption' => + 'intlcalendar::getskippedwalltimeoption' => array ( 0 => 'int', ), - 'IntlCalendar::getTime' => + 'intlcalendar::gettime' => array ( 0 => 'float', ), - 'IntlCalendar::getTimeZone' => + 'intlcalendar::gettimezone' => array ( 0 => 'IntlTimeZone', ), - 'IntlCalendar::getType' => + 'intlcalendar::gettype' => array ( 0 => 'string', ), - 'IntlCalendar::getWeekendTransition' => + 'intlcalendar::getweekendtransition' => array ( 0 => 'false|int', 'dayOfWeek' => 'int', ), - 'IntlCalendar::inDaylightTime' => + 'intlcalendar::indaylighttime' => array ( 0 => 'bool', ), - 'IntlCalendar::isEquivalentTo' => + 'intlcalendar::isequivalentto' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlCalendar::isLenient' => + 'intlcalendar::islenient' => array ( 0 => 'bool', ), - 'IntlCalendar::isSet' => + 'intlcalendar::isset' => array ( 0 => 'bool', 'field' => 'int', ), - 'IntlCalendar::isWeekend' => + 'intlcalendar::isweekend' => array ( 0 => 'bool', 'timestamp=' => 'float|null', ), - 'IntlCalendar::roll' => + 'intlcalendar::roll' => array ( 0 => 'bool', 'field' => 'int', 'value' => 'bool|int', ), - 'IntlCalendar::set' => + 'intlcalendar::set' => array ( 0 => 'bool', 'field' => 'int', 'value' => 'int', ), - 'IntlCalendar::set\'1' => + 'intlcalendar::set\'1' => array ( 0 => 'bool', 'year' => 'int', @@ -15043,94 +15043,94 @@ 'minute=' => 'int', 'second=' => 'int', ), - 'IntlCalendar::setFirstDayOfWeek' => + 'intlcalendar::setfirstdayofweek' => array ( 0 => 'bool', 'dayOfWeek' => 'int', ), - 'IntlCalendar::setLenient' => + 'intlcalendar::setlenient' => array ( 0 => 'true', 'lenient' => 'bool', ), - 'IntlCalendar::setMinimalDaysInFirstWeek' => + 'intlcalendar::setminimaldaysinfirstweek' => array ( 0 => 'bool', 'days' => 'int', ), - 'IntlCalendar::setRepeatedWallTimeOption' => + 'intlcalendar::setrepeatedwalltimeoption' => array ( 0 => 'true', 'option' => 'int', ), - 'IntlCalendar::setSkippedWallTimeOption' => + 'intlcalendar::setskippedwalltimeoption' => array ( 0 => 'true', 'option' => 'int', ), - 'IntlCalendar::setTime' => + 'intlcalendar::settime' => array ( 0 => 'bool', 'timestamp' => 'float', ), - 'IntlCalendar::setTimeZone' => + 'intlcalendar::settimezone' => array ( 0 => 'bool', 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', ), - 'IntlCalendar::toDateTime' => + 'intlcalendar::todatetime' => array ( 0 => 'DateTime|false', ), - 'IntlChar::charAge' => + 'intlchar::charage' => array ( 0 => 'array|null', 'codepoint' => 'int|string', ), - 'IntlChar::charDigitValue' => + 'intlchar::chardigitvalue' => array ( 0 => 'int|null', 'codepoint' => 'int|string', ), - 'IntlChar::charDirection' => + 'intlchar::chardirection' => array ( 0 => 'int|null', 'codepoint' => 'int|string', ), - 'IntlChar::charFromName' => + 'intlchar::charfromname' => array ( 0 => 'int|null', 'name' => 'string', 'type=' => 'int', ), - 'IntlChar::charMirror' => + 'intlchar::charmirror' => array ( 0 => 'int|null|string', 'codepoint' => 'int|string', ), - 'IntlChar::charName' => + 'intlchar::charname' => array ( 0 => 'null|string', 'codepoint' => 'int|string', 'type=' => 'int', ), - 'IntlChar::charType' => + 'intlchar::chartype' => array ( 0 => 'int|null', 'codepoint' => 'int|string', ), - 'IntlChar::chr' => + 'intlchar::chr' => array ( 0 => 'null|string', 'codepoint' => 'int|string', ), - 'IntlChar::digit' => + 'intlchar::digit' => array ( 0 => 'false|int|null', 'codepoint' => 'int|string', 'base=' => 'int', ), - 'IntlChar::enumCharNames' => + 'intlchar::enumcharnames' => array ( 0 => 'bool|null', 'start' => 'int|string', @@ -15138,359 +15138,359 @@ 'callback' => 'callable(int, int, int):void', 'type=' => 'int', ), - 'IntlChar::enumCharTypes' => + 'intlchar::enumchartypes' => array ( 0 => 'void', 'callback' => 'callable(int, int, int):void', ), - 'IntlChar::foldCase' => + 'intlchar::foldcase' => array ( 0 => 'int|null|string', 'codepoint' => 'int|string', 'options=' => 'int', ), - 'IntlChar::forDigit' => + 'intlchar::fordigit' => array ( 0 => 'int', 'digit' => 'int', 'base=' => 'int', ), - 'IntlChar::getBidiPairedBracket' => + 'intlchar::getbidipairedbracket' => array ( 0 => 'int|null|string', 'codepoint' => 'int|string', ), - 'IntlChar::getBlockCode' => + 'intlchar::getblockcode' => array ( 0 => 'int|null', 'codepoint' => 'int|string', ), - 'IntlChar::getCombiningClass' => + 'intlchar::getcombiningclass' => array ( 0 => 'int|null', 'codepoint' => 'int|string', ), - 'IntlChar::getFC_NFKC_Closure' => + 'intlchar::getfc_nfkc_closure' => array ( 0 => 'null|string', 'codepoint' => 'int|string', ), - 'IntlChar::getIntPropertyMaxValue' => + 'intlchar::getintpropertymaxvalue' => array ( 0 => 'int', 'property' => 'int', ), - 'IntlChar::getIntPropertyMinValue' => + 'intlchar::getintpropertyminvalue' => array ( 0 => 'int', 'property' => 'int', ), - 'IntlChar::getIntPropertyValue' => + 'intlchar::getintpropertyvalue' => array ( 0 => 'int|null', 'codepoint' => 'int|string', 'property' => 'int', ), - 'IntlChar::getNumericValue' => + 'intlchar::getnumericvalue' => array ( 0 => 'float|null', 'codepoint' => 'int|string', ), - 'IntlChar::getPropertyEnum' => + 'intlchar::getpropertyenum' => array ( 0 => 'int', 'alias' => 'string', ), - 'IntlChar::getPropertyName' => + 'intlchar::getpropertyname' => array ( 0 => 'false|string', 'property' => 'int', 'type=' => 'int', ), - 'IntlChar::getPropertyValueEnum' => + 'intlchar::getpropertyvalueenum' => array ( 0 => 'int', 'property' => 'int', 'name' => 'string', ), - 'IntlChar::getPropertyValueName' => + 'intlchar::getpropertyvaluename' => array ( 0 => 'false|string', 'property' => 'int', 'value' => 'int', 'type=' => 'int', ), - 'IntlChar::getUnicodeVersion' => + 'intlchar::getunicodeversion' => array ( 0 => 'array', ), - 'IntlChar::hasBinaryProperty' => + 'intlchar::hasbinaryproperty' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', 'property' => 'int', ), - 'IntlChar::isIDIgnorable' => + 'intlchar::isidignorable' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isIDPart' => + 'intlchar::isidpart' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isIDStart' => + 'intlchar::isidstart' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isISOControl' => + 'intlchar::isisocontrol' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isJavaIDPart' => + 'intlchar::isjavaidpart' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isJavaIDStart' => + 'intlchar::isjavaidstart' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isJavaSpaceChar' => + 'intlchar::isjavaspacechar' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isMirrored' => + 'intlchar::ismirrored' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isUAlphabetic' => + 'intlchar::isualphabetic' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isULowercase' => + 'intlchar::isulowercase' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isUUppercase' => + 'intlchar::isuuppercase' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isUWhiteSpace' => + 'intlchar::isuwhitespace' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isWhitespace' => + 'intlchar::iswhitespace' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isalnum' => + 'intlchar::isalnum' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isalpha' => + 'intlchar::isalpha' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isbase' => + 'intlchar::isbase' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isblank' => + 'intlchar::isblank' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::iscntrl' => + 'intlchar::iscntrl' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isdefined' => + 'intlchar::isdefined' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isdigit' => + 'intlchar::isdigit' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isgraph' => + 'intlchar::isgraph' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::islower' => + 'intlchar::islower' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isprint' => + 'intlchar::isprint' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::ispunct' => + 'intlchar::ispunct' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isspace' => + 'intlchar::isspace' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::istitle' => + 'intlchar::istitle' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isupper' => + 'intlchar::isupper' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::isxdigit' => + 'intlchar::isxdigit' => array ( 0 => 'bool|null', 'codepoint' => 'int|string', ), - 'IntlChar::ord' => + 'intlchar::ord' => array ( 0 => 'int|null', 'character' => 'int|string', ), - 'IntlChar::tolower' => + 'intlchar::tolower' => array ( 0 => 'int|null|string', 'codepoint' => 'int|string', ), - 'IntlChar::totitle' => + 'intlchar::totitle' => array ( 0 => 'int|null|string', 'codepoint' => 'int|string', ), - 'IntlChar::toupper' => + 'intlchar::toupper' => array ( 0 => 'int|null|string', 'codepoint' => 'int|string', ), - 'IntlCodePointBreakIterator::__construct' => + 'intlcodepointbreakiterator::__construct' => array ( 0 => 'void', ), - 'IntlCodePointBreakIterator::createCharacterInstance' => + 'intlcodepointbreakiterator::createcharacterinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlCodePointBreakIterator::createCodePointInstance' => + 'intlcodepointbreakiterator::createcodepointinstance' => array ( 0 => 'IntlCodePointBreakIterator', ), - 'IntlCodePointBreakIterator::createLineInstance' => + 'intlcodepointbreakiterator::createlineinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlCodePointBreakIterator::createSentenceInstance' => + 'intlcodepointbreakiterator::createsentenceinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlCodePointBreakIterator::createTitleInstance' => + 'intlcodepointbreakiterator::createtitleinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlCodePointBreakIterator::createWordInstance' => + 'intlcodepointbreakiterator::createwordinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlCodePointBreakIterator::current' => + 'intlcodepointbreakiterator::current' => array ( 0 => 'int', ), - 'IntlCodePointBreakIterator::first' => + 'intlcodepointbreakiterator::first' => array ( 0 => 'int', ), - 'IntlCodePointBreakIterator::following' => + 'intlcodepointbreakiterator::following' => array ( 0 => 'int', 'offset' => 'int', ), - 'IntlCodePointBreakIterator::getErrorCode' => + 'intlcodepointbreakiterator::geterrorcode' => array ( 0 => 'int', ), - 'IntlCodePointBreakIterator::getErrorMessage' => + 'intlcodepointbreakiterator::geterrormessage' => array ( 0 => 'string', ), - 'IntlCodePointBreakIterator::getLastCodePoint' => + 'intlcodepointbreakiterator::getlastcodepoint' => array ( 0 => 'int', ), - 'IntlCodePointBreakIterator::getLocale' => + 'intlcodepointbreakiterator::getlocale' => array ( 0 => 'false|string', 'type' => 'int', ), - 'IntlCodePointBreakIterator::getPartsIterator' => + 'intlcodepointbreakiterator::getpartsiterator' => array ( 0 => 'IntlPartsIterator', 'type=' => 'string', ), - 'IntlCodePointBreakIterator::getText' => + 'intlcodepointbreakiterator::gettext' => array ( 0 => 'null|string', ), - 'IntlCodePointBreakIterator::isBoundary' => + 'intlcodepointbreakiterator::isboundary' => array ( 0 => 'bool', 'offset' => 'int', ), - 'IntlCodePointBreakIterator::last' => + 'intlcodepointbreakiterator::last' => array ( 0 => 'int', ), - 'IntlCodePointBreakIterator::next' => + 'intlcodepointbreakiterator::next' => array ( 0 => 'int', 'offset=' => 'int|null', ), - 'IntlCodePointBreakIterator::preceding' => + 'intlcodepointbreakiterator::preceding' => array ( 0 => 'int', 'offset' => 'int', ), - 'IntlCodePointBreakIterator::previous' => + 'intlcodepointbreakiterator::previous' => array ( 0 => 'int', ), - 'IntlCodePointBreakIterator::setText' => + 'intlcodepointbreakiterator::settext' => array ( 0 => 'bool|null', 'text' => 'string', ), - 'IntlDateFormatter::__construct' => + 'intldateformatter::__construct' => array ( 0 => 'void', 'locale' => 'null|string', @@ -15500,7 +15500,7 @@ 'calendar=' => 'IntlCalendar|int|null', 'pattern=' => 'null|string', ), - 'IntlDateFormatter::create' => + 'intldateformatter::create' => array ( 0 => 'IntlDateFormatter|null', 'locale' => 'null|string', @@ -15510,336 +15510,336 @@ 'calendar=' => 'IntlCalendar|int|null', 'pattern=' => 'null|string', ), - 'IntlDateFormatter::format' => + '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' => + 'intldateformatter::formatobject' => array ( 0 => 'false|string', 'object' => 'DateTime|IntlCalendar', 'format=' => 'array{0: int, 1: int}|int|null|string', 'locale=' => 'null|string', ), - 'IntlDateFormatter::getCalendar' => + 'intldateformatter::getcalendar' => array ( 0 => 'int', ), - 'IntlDateFormatter::getCalendarObject' => + 'intldateformatter::getcalendarobject' => array ( 0 => 'IntlCalendar', ), - 'IntlDateFormatter::getDateType' => + 'intldateformatter::getdatetype' => array ( 0 => 'int', ), - 'IntlDateFormatter::getErrorCode' => + 'intldateformatter::geterrorcode' => array ( 0 => 'int', ), - 'IntlDateFormatter::getErrorMessage' => + 'intldateformatter::geterrormessage' => array ( 0 => 'string', ), - 'IntlDateFormatter::getLocale' => + 'intldateformatter::getlocale' => array ( 0 => 'string', 'which=' => 'int', ), - 'IntlDateFormatter::getPattern' => + 'intldateformatter::getpattern' => array ( 0 => 'string', ), - 'IntlDateFormatter::getTimeType' => + 'intldateformatter::gettimetype' => array ( 0 => 'int', ), - 'IntlDateFormatter::getTimeZone' => + 'intldateformatter::gettimezone' => array ( 0 => 'IntlTimeZone|false', ), - 'IntlDateFormatter::getTimeZoneId' => + 'intldateformatter::gettimezoneid' => array ( 0 => 'string', ), - 'IntlDateFormatter::isLenient' => + 'intldateformatter::islenient' => array ( 0 => 'bool', ), - 'IntlDateFormatter::localtime' => + 'intldateformatter::localtime' => array ( 0 => 'array', 'value' => 'string', '&rw_position=' => 'int', ), - 'IntlDateFormatter::parse' => + 'intldateformatter::parse' => array ( 0 => 'float|int', 'value' => 'string', '&rw_position=' => 'int', ), - 'IntlDateFormatter::setCalendar' => + 'intldateformatter::setcalendar' => array ( 0 => 'bool', 'which' => 'IntlCalendar|int|null', ), - 'IntlDateFormatter::setLenient' => + 'intldateformatter::setlenient' => array ( 0 => 'bool', 'lenient' => 'bool', ), - 'IntlDateFormatter::setPattern' => + 'intldateformatter::setpattern' => array ( 0 => 'bool', 'pattern' => 'string', ), - 'IntlDateFormatter::setTimeZone' => + 'intldateformatter::settimezone' => array ( 0 => 'false|null', 'zone' => 'DateTimeZone|IntlTimeZone|null|string', ), - 'IntlException::__clone' => + 'intlexception::__clone' => array ( 0 => 'void', ), - 'IntlException::__construct' => + 'intlexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'IntlException::__toString' => + 'intlexception::__tostring' => array ( 0 => 'string', ), - 'IntlException::__wakeup' => + 'intlexception::__wakeup' => array ( 0 => 'void', ), - 'IntlException::getCode' => + 'intlexception::getcode' => array ( 0 => 'int', ), - 'IntlException::getFile' => + 'intlexception::getfile' => array ( 0 => 'string', ), - 'IntlException::getLine' => + 'intlexception::getline' => array ( 0 => 'int', ), - 'IntlException::getMessage' => + 'intlexception::getmessage' => array ( 0 => 'string', ), - 'IntlException::getPrevious' => + 'intlexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'IntlException::getTrace' => + 'intlexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'IntlException::getTraceAsString' => + 'intlexception::gettraceasstring' => array ( 0 => 'string', ), - 'IntlGregorianCalendar::__construct' => + 'intlgregoriancalendar::__construct' => array ( 0 => 'void', ), - 'IntlGregorianCalendar::add' => + 'intlgregoriancalendar::add' => array ( 0 => 'bool', 'field' => 'int', 'value' => 'int', ), - 'IntlGregorianCalendar::after' => + 'intlgregoriancalendar::after' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlGregorianCalendar::before' => + 'intlgregoriancalendar::before' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlGregorianCalendar::clear' => + 'intlgregoriancalendar::clear' => array ( 0 => 'bool', 'field=' => 'int|null', ), - 'IntlGregorianCalendar::createInstance' => + 'intlgregoriancalendar::createinstance' => array ( 0 => 'IntlGregorianCalendar|null', 'timezone=' => 'DateTimeZone|IntlTimeZone|null|string', 'locale=' => 'null|string', ), - 'IntlGregorianCalendar::equals' => + 'intlgregoriancalendar::equals' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlGregorianCalendar::fieldDifference' => + 'intlgregoriancalendar::fielddifference' => array ( 0 => 'false|int', 'timestamp' => 'float', 'field' => 'int', ), - 'IntlGregorianCalendar::fromDateTime' => + 'intlgregoriancalendar::fromdatetime' => array ( 0 => 'IntlCalendar|null', 'datetime' => 'DateTime|string', 'locale=' => 'null|string', ), - 'IntlGregorianCalendar::get' => + 'intlgregoriancalendar::get' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlGregorianCalendar::getActualMaximum' => + 'intlgregoriancalendar::getactualmaximum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlGregorianCalendar::getActualMinimum' => + 'intlgregoriancalendar::getactualminimum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlGregorianCalendar::getAvailableLocales' => + 'intlgregoriancalendar::getavailablelocales' => array ( 0 => 'array', ), - 'IntlGregorianCalendar::getDayOfWeekType' => + 'intlgregoriancalendar::getdayofweektype' => array ( 0 => 'int', 'dayOfWeek' => 'int', ), - 'IntlGregorianCalendar::getErrorCode' => + 'intlgregoriancalendar::geterrorcode' => array ( 0 => 'int', ), - 'IntlGregorianCalendar::getErrorMessage' => + 'intlgregoriancalendar::geterrormessage' => array ( 0 => 'string', ), - 'IntlGregorianCalendar::getFirstDayOfWeek' => + 'intlgregoriancalendar::getfirstdayofweek' => array ( 0 => 'int', ), - 'IntlGregorianCalendar::getGreatestMinimum' => + 'intlgregoriancalendar::getgreatestminimum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlGregorianCalendar::getGregorianChange' => + 'intlgregoriancalendar::getgregorianchange' => array ( 0 => 'float', ), - 'IntlGregorianCalendar::getKeywordValuesForLocale' => + 'intlgregoriancalendar::getkeywordvaluesforlocale' => array ( 0 => 'IntlIterator|false', 'keyword' => 'string', 'locale' => 'string', 'onlyCommon' => 'bool', ), - 'IntlGregorianCalendar::getLeastMaximum' => + 'intlgregoriancalendar::getleastmaximum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlGregorianCalendar::getLocale' => + 'intlgregoriancalendar::getlocale' => array ( 0 => 'false|string', 'type' => 'int', ), - 'IntlGregorianCalendar::getMaximum' => + 'intlgregoriancalendar::getmaximum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlGregorianCalendar::getMinimalDaysInFirstWeek' => + 'intlgregoriancalendar::getminimaldaysinfirstweek' => array ( 0 => 'int', ), - 'IntlGregorianCalendar::getMinimum' => + 'intlgregoriancalendar::getminimum' => array ( 0 => 'int', 'field' => 'int', ), - 'IntlGregorianCalendar::getNow' => + 'intlgregoriancalendar::getnow' => array ( 0 => 'float', ), - 'IntlGregorianCalendar::getRepeatedWallTimeOption' => + 'intlgregoriancalendar::getrepeatedwalltimeoption' => array ( 0 => 'int', ), - 'IntlGregorianCalendar::getSkippedWallTimeOption' => + 'intlgregoriancalendar::getskippedwalltimeoption' => array ( 0 => 'int', ), - 'IntlGregorianCalendar::getTime' => + 'intlgregoriancalendar::gettime' => array ( 0 => 'float', ), - 'IntlGregorianCalendar::getTimeZone' => + 'intlgregoriancalendar::gettimezone' => array ( 0 => 'IntlTimeZone', ), - 'IntlGregorianCalendar::getType' => + 'intlgregoriancalendar::gettype' => array ( 0 => 'string', ), - 'IntlGregorianCalendar::getWeekendTransition' => + 'intlgregoriancalendar::getweekendtransition' => array ( 0 => 'false|int', 'dayOfWeek' => 'int', ), - 'IntlGregorianCalendar::inDaylightTime' => + 'intlgregoriancalendar::indaylighttime' => array ( 0 => 'bool', ), - 'IntlGregorianCalendar::isEquivalentTo' => + 'intlgregoriancalendar::isequivalentto' => array ( 0 => 'bool', 'other' => 'IntlCalendar', ), - 'IntlGregorianCalendar::isLeapYear' => + 'intlgregoriancalendar::isleapyear' => array ( 0 => 'bool', 'year' => 'int', ), - 'IntlGregorianCalendar::isLenient' => + 'intlgregoriancalendar::islenient' => array ( 0 => 'bool', ), - 'IntlGregorianCalendar::isSet' => + 'intlgregoriancalendar::isset' => array ( 0 => 'bool', 'field' => 'int', ), - 'IntlGregorianCalendar::isWeekend' => + 'intlgregoriancalendar::isweekend' => array ( 0 => 'bool', 'timestamp=' => 'float|null', ), - 'IntlGregorianCalendar::roll' => + 'intlgregoriancalendar::roll' => array ( 0 => 'bool', 'field' => 'int', 'value' => 'bool|int', ), - 'IntlGregorianCalendar::set' => + 'intlgregoriancalendar::set' => array ( 0 => 'bool', 'field' => 'int', 'value' => 'int', ), - 'IntlGregorianCalendar::set\'1' => + 'intlgregoriancalendar::set\'1' => array ( 0 => 'bool', 'year' => 'int', @@ -15849,269 +15849,269 @@ 'minute=' => 'int', 'second=' => 'int', ), - 'IntlGregorianCalendar::setFirstDayOfWeek' => + 'intlgregoriancalendar::setfirstdayofweek' => array ( 0 => 'bool', 'dayOfWeek' => 'int', ), - 'IntlGregorianCalendar::setGregorianChange' => + 'intlgregoriancalendar::setgregorianchange' => array ( 0 => 'bool', 'timestamp' => 'float', ), - 'IntlGregorianCalendar::setLenient' => + 'intlgregoriancalendar::setlenient' => array ( 0 => 'true', 'lenient' => 'bool', ), - 'IntlGregorianCalendar::setMinimalDaysInFirstWeek' => + 'intlgregoriancalendar::setminimaldaysinfirstweek' => array ( 0 => 'bool', 'days' => 'int', ), - 'IntlGregorianCalendar::setRepeatedWallTimeOption' => + 'intlgregoriancalendar::setrepeatedwalltimeoption' => array ( 0 => 'true', 'option' => 'int', ), - 'IntlGregorianCalendar::setSkippedWallTimeOption' => + 'intlgregoriancalendar::setskippedwalltimeoption' => array ( 0 => 'true', 'option' => 'int', ), - 'IntlGregorianCalendar::setTime' => + 'intlgregoriancalendar::settime' => array ( 0 => 'bool', 'timestamp' => 'float', ), - 'IntlGregorianCalendar::setTimeZone' => + 'intlgregoriancalendar::settimezone' => array ( 0 => 'bool', 'timezone' => 'DateTimeZone|IntlTimeZone|null|string', ), - 'IntlGregorianCalendar::toDateTime' => + 'intlgregoriancalendar::todatetime' => array ( 0 => 'DateTime', ), - 'IntlIterator::__construct' => + 'intliterator::__construct' => array ( 0 => 'void', ), - 'IntlIterator::current' => + 'intliterator::current' => array ( 0 => 'mixed', ), - 'IntlIterator::key' => + 'intliterator::key' => array ( 0 => 'string', ), - 'IntlIterator::next' => + 'intliterator::next' => array ( 0 => 'void', ), - 'IntlIterator::rewind' => + 'intliterator::rewind' => array ( 0 => 'void', ), - 'IntlIterator::valid' => + 'intliterator::valid' => array ( 0 => 'bool', ), - 'IntlPartsIterator::getBreakIterator' => + 'intlpartsiterator::getbreakiterator' => array ( 0 => 'IntlBreakIterator', ), - 'IntlRuleBasedBreakIterator::__construct' => + 'intlrulebasedbreakiterator::__construct' => array ( 0 => 'void', 'rules' => 'string', 'compiled=' => 'bool', ), - 'IntlRuleBasedBreakIterator::createCharacterInstance' => + 'intlrulebasedbreakiterator::createcharacterinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlRuleBasedBreakIterator::createCodePointInstance' => + 'intlrulebasedbreakiterator::createcodepointinstance' => array ( 0 => 'IntlCodePointBreakIterator', ), - 'IntlRuleBasedBreakIterator::createLineInstance' => + 'intlrulebasedbreakiterator::createlineinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlRuleBasedBreakIterator::createSentenceInstance' => + 'intlrulebasedbreakiterator::createsentenceinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlRuleBasedBreakIterator::createTitleInstance' => + 'intlrulebasedbreakiterator::createtitleinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlRuleBasedBreakIterator::createWordInstance' => + 'intlrulebasedbreakiterator::createwordinstance' => array ( 0 => 'IntlRuleBasedBreakIterator|null', 'locale=' => 'null|string', ), - 'IntlRuleBasedBreakIterator::current' => + 'intlrulebasedbreakiterator::current' => array ( 0 => 'int', ), - 'IntlRuleBasedBreakIterator::first' => + 'intlrulebasedbreakiterator::first' => array ( 0 => 'int', ), - 'IntlRuleBasedBreakIterator::following' => + 'intlrulebasedbreakiterator::following' => array ( 0 => 'int', 'offset' => 'int', ), - 'IntlRuleBasedBreakIterator::getBinaryRules' => + 'intlrulebasedbreakiterator::getbinaryrules' => array ( 0 => 'string', ), - 'IntlRuleBasedBreakIterator::getErrorCode' => + 'intlrulebasedbreakiterator::geterrorcode' => array ( 0 => 'int', ), - 'IntlRuleBasedBreakIterator::getErrorMessage' => + 'intlrulebasedbreakiterator::geterrormessage' => array ( 0 => 'string', ), - 'IntlRuleBasedBreakIterator::getLocale' => + 'intlrulebasedbreakiterator::getlocale' => array ( 0 => 'false|string', 'type' => 'int', ), - 'IntlRuleBasedBreakIterator::getPartsIterator' => + 'intlrulebasedbreakiterator::getpartsiterator' => array ( 0 => 'IntlPartsIterator', 'type=' => 'string', ), - 'IntlRuleBasedBreakIterator::getRuleStatus' => + 'intlrulebasedbreakiterator::getrulestatus' => array ( 0 => 'int', ), - 'IntlRuleBasedBreakIterator::getRuleStatusVec' => + 'intlrulebasedbreakiterator::getrulestatusvec' => array ( 0 => 'array', ), - 'IntlRuleBasedBreakIterator::getRules' => + 'intlrulebasedbreakiterator::getrules' => array ( 0 => 'string', ), - 'IntlRuleBasedBreakIterator::getText' => + 'intlrulebasedbreakiterator::gettext' => array ( 0 => 'null|string', ), - 'IntlRuleBasedBreakIterator::isBoundary' => + 'intlrulebasedbreakiterator::isboundary' => array ( 0 => 'bool', 'offset' => 'int', ), - 'IntlRuleBasedBreakIterator::last' => + 'intlrulebasedbreakiterator::last' => array ( 0 => 'int', ), - 'IntlRuleBasedBreakIterator::next' => + 'intlrulebasedbreakiterator::next' => array ( 0 => 'int', 'offset=' => 'int|null', ), - 'IntlRuleBasedBreakIterator::preceding' => + 'intlrulebasedbreakiterator::preceding' => array ( 0 => 'int', 'offset' => 'int', ), - 'IntlRuleBasedBreakIterator::previous' => + 'intlrulebasedbreakiterator::previous' => array ( 0 => 'int', ), - 'IntlRuleBasedBreakIterator::setText' => + 'intlrulebasedbreakiterator::settext' => array ( 0 => 'bool|null', 'text' => 'string', ), - 'IntlTimeZone::countEquivalentIDs' => + 'intltimezone::countequivalentids' => array ( 0 => 'false|int', 'timezoneId' => 'string', ), - 'IntlTimeZone::createDefault' => + 'intltimezone::createdefault' => array ( 0 => 'IntlTimeZone', ), - 'IntlTimeZone::createEnumeration' => + 'intltimezone::createenumeration' => array ( 0 => 'IntlIterator|false', 'countryOrRawOffset=' => 'IntlTimeZone|float|int|null|string', ), - 'IntlTimeZone::createTimeZone' => + 'intltimezone::createtimezone' => array ( 0 => 'IntlTimeZone|null', 'timezoneId' => 'string', ), - 'IntlTimeZone::createTimeZoneIDEnumeration' => + 'intltimezone::createtimezoneidenumeration' => array ( 0 => 'IntlIterator|false', 'type' => 'int', 'region=' => 'null|string', 'rawOffset=' => 'int|null', ), - 'IntlTimeZone::fromDateTimeZone' => + 'intltimezone::fromdatetimezone' => array ( 0 => 'IntlTimeZone|null', 'timezone' => 'DateTimeZone', ), - 'IntlTimeZone::getCanonicalID' => + 'intltimezone::getcanonicalid' => array ( 0 => 'false|string', 'timezoneId' => 'string', '&w_isSystemId=' => 'bool', ), - 'IntlTimeZone::getDSTSavings' => + 'intltimezone::getdstsavings' => array ( 0 => 'int', ), - 'IntlTimeZone::getDisplayName' => + 'intltimezone::getdisplayname' => array ( 0 => 'false|string', 'dst=' => 'bool', 'style=' => 'int', 'locale=' => 'null|string', ), - 'IntlTimeZone::getEquivalentID' => + 'intltimezone::getequivalentid' => array ( 0 => 'false|string', 'timezoneId' => 'string', 'offset' => 'int', ), - 'IntlTimeZone::getErrorCode' => + 'intltimezone::geterrorcode' => array ( 0 => 'int', ), - 'IntlTimeZone::getErrorMessage' => + 'intltimezone::geterrormessage' => array ( 0 => 'string', ), - 'IntlTimeZone::getGMT' => + 'intltimezone::getgmt' => array ( 0 => 'IntlTimeZone', ), - 'IntlTimeZone::getID' => + 'intltimezone::getid' => array ( 0 => 'string', ), - 'IntlTimeZone::getIDForWindowsID' => + 'intltimezone::getidforwindowsid' => array ( 0 => 'false|string', 'timezoneId' => 'string', 'region=' => 'string', ), - 'IntlTimeZone::getOffset' => + 'intltimezone::getoffset' => array ( 0 => 'bool', 'timestamp' => 'float', @@ -16119,519 +16119,519 @@ '&w_rawOffset' => 'int', '&w_dstOffset' => 'int', ), - 'IntlTimeZone::getRawOffset' => + 'intltimezone::getrawoffset' => array ( 0 => 'int', ), - 'IntlTimeZone::getRegion' => + 'intltimezone::getregion' => array ( 0 => 'false|string', 'timezoneId' => 'string', ), - 'IntlTimeZone::getTZDataVersion' => + 'intltimezone::gettzdataversion' => array ( 0 => 'string', ), - 'IntlTimeZone::getUnknown' => + 'intltimezone::getunknown' => array ( 0 => 'IntlTimeZone', ), - 'IntlTimeZone::getWindowsID' => + 'intltimezone::getwindowsid' => array ( 0 => 'false|string', 'timezoneId' => 'string', ), - 'IntlTimeZone::hasSameRules' => + 'intltimezone::hassamerules' => array ( 0 => 'bool', 'other' => 'IntlTimeZone', ), - 'IntlTimeZone::toDateTimeZone' => + 'intltimezone::todatetimezone' => array ( 0 => 'DateTimeZone|false', ), - 'IntlTimeZone::useDaylightTime' => + 'intltimezone::usedaylighttime' => array ( 0 => 'bool', ), - 'InvalidArgumentException::__clone' => + 'invalidargumentexception::__clone' => array ( 0 => 'void', ), - 'InvalidArgumentException::__construct' => + 'invalidargumentexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'InvalidArgumentException::__toString' => + 'invalidargumentexception::__tostring' => array ( 0 => 'string', ), - 'InvalidArgumentException::getCode' => + 'invalidargumentexception::getcode' => array ( 0 => 'int', ), - 'InvalidArgumentException::getFile' => + 'invalidargumentexception::getfile' => array ( 0 => 'string', ), - 'InvalidArgumentException::getLine' => + 'invalidargumentexception::getline' => array ( 0 => 'int', ), - 'InvalidArgumentException::getMessage' => + 'invalidargumentexception::getmessage' => array ( 0 => 'string', ), - 'InvalidArgumentException::getPrevious' => + 'invalidargumentexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'InvalidArgumentException::getTrace' => + 'invalidargumentexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'InvalidArgumentException::getTraceAsString' => + 'invalidargumentexception::gettraceasstring' => array ( 0 => 'string', ), - 'Iterator::current' => + 'iterator::current' => array ( 0 => 'mixed', ), - 'Iterator::key' => + 'iterator::key' => array ( 0 => 'mixed', ), - 'Iterator::next' => + 'iterator::next' => array ( 0 => 'void', ), - 'Iterator::rewind' => + 'iterator::rewind' => array ( 0 => 'void', ), - 'Iterator::valid' => + 'iterator::valid' => array ( 0 => 'bool', ), - 'IteratorAggregate::getIterator' => + 'iteratoraggregate::getiterator' => array ( 0 => 'Traversable', ), - 'IteratorIterator::__construct' => + 'iteratoriterator::__construct' => array ( 0 => 'void', 'iterator' => 'Traversable', 'class=' => 'null|string', ), - 'IteratorIterator::current' => + 'iteratoriterator::current' => array ( 0 => 'mixed', ), - 'IteratorIterator::getInnerIterator' => + 'iteratoriterator::getinneriterator' => array ( 0 => 'Iterator', ), - 'IteratorIterator::key' => + 'iteratoriterator::key' => array ( 0 => 'mixed', ), - 'IteratorIterator::next' => + 'iteratoriterator::next' => array ( 0 => 'void', ), - 'IteratorIterator::rewind' => + 'iteratoriterator::rewind' => array ( 0 => 'void', ), - 'IteratorIterator::valid' => + 'iteratoriterator::valid' => array ( 0 => 'bool', ), - 'JavaException::getCause' => + 'javaexception::getcause' => array ( 0 => 'object', ), - 'JsonIncrementalParser::__construct' => + 'jsonincrementalparser::__construct' => array ( 0 => 'void', 'depth' => 'mixed', 'options' => 'mixed', ), - 'JsonIncrementalParser::get' => + 'jsonincrementalparser::get' => array ( 0 => 'mixed', 'options' => 'mixed', ), - 'JsonIncrementalParser::getError' => + 'jsonincrementalparser::geterror' => array ( 0 => 'mixed', ), - 'JsonIncrementalParser::parse' => + 'jsonincrementalparser::parse' => array ( 0 => 'mixed', 'json' => 'mixed', ), - 'JsonIncrementalParser::parseFile' => + 'jsonincrementalparser::parsefile' => array ( 0 => 'mixed', 'filename' => 'mixed', ), - 'JsonIncrementalParser::reset' => + 'jsonincrementalparser::reset' => array ( 0 => 'mixed', ), - 'JsonSerializable::jsonSerialize' => + 'jsonserializable::jsonserialize' => array ( 0 => 'mixed', ), - 'Judy::__construct' => + 'judy::__construct' => array ( 0 => 'void', 'judy_type' => 'int', ), - 'Judy::__destruct' => + 'judy::__destruct' => array ( 0 => 'void', ), - 'Judy::byCount' => + 'judy::bycount' => array ( 0 => 'int', 'nth_index' => 'int', ), - 'Judy::count' => + 'judy::count' => array ( 0 => 'int', 'index_start=' => 'int', 'index_end=' => 'int', ), - 'Judy::first' => + 'judy::first' => array ( 0 => 'mixed', 'index=' => 'mixed', ), - 'Judy::firstEmpty' => + 'judy::firstempty' => array ( 0 => 'mixed', 'index=' => 'mixed', ), - 'Judy::free' => + 'judy::free' => array ( 0 => 'int', ), - 'Judy::getType' => + 'judy::gettype' => array ( 0 => 'int', ), - 'Judy::last' => + 'judy::last' => array ( 0 => 'mixed', 'index=' => 'string', ), - 'Judy::lastEmpty' => + 'judy::lastempty' => array ( 0 => 'mixed', 'index=' => 'int', ), - 'Judy::memoryUsage' => + 'judy::memoryusage' => array ( 0 => 'int', ), - 'Judy::next' => + 'judy::next' => array ( 0 => 'mixed', 'index' => 'mixed', ), - 'Judy::nextEmpty' => + 'judy::nextempty' => array ( 0 => 'mixed', 'index' => 'mixed', ), - 'Judy::offsetExists' => + 'judy::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'Judy::offsetGet' => + 'judy::offsetget' => array ( 0 => 'mixed', 'offset' => 'int|string', ), - 'Judy::offsetSet' => + 'judy::offsetset' => array ( 0 => 'bool', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'Judy::offsetUnset' => + 'judy::offsetunset' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'Judy::prev' => + 'judy::prev' => array ( 0 => 'mixed', 'index' => 'mixed', ), - 'Judy::prevEmpty' => + 'judy::prevempty' => array ( 0 => 'mixed', 'index' => 'mixed', ), - 'Judy::size' => + 'judy::size' => array ( 0 => 'int', ), - 'KTaglib_ID3v2_AttachedPictureFrame::getDescription' => + 'ktaglib_id3v2_attachedpictureframe::getdescription' => array ( 0 => 'string', ), - 'KTaglib_ID3v2_AttachedPictureFrame::getMimeType' => + 'ktaglib_id3v2_attachedpictureframe::getmimetype' => array ( 0 => 'string', ), - 'KTaglib_ID3v2_AttachedPictureFrame::getType' => + 'ktaglib_id3v2_attachedpictureframe::gettype' => array ( 0 => 'int', ), - 'KTaglib_ID3v2_AttachedPictureFrame::savePicture' => + 'ktaglib_id3v2_attachedpictureframe::savepicture' => array ( 0 => 'bool', 'filename' => 'string', ), - 'KTaglib_ID3v2_AttachedPictureFrame::setMimeType' => + 'ktaglib_id3v2_attachedpictureframe::setmimetype' => array ( 0 => 'string', 'type' => 'string', ), - 'KTaglib_ID3v2_AttachedPictureFrame::setPicture' => + 'ktaglib_id3v2_attachedpictureframe::setpicture' => array ( 0 => 'mixed', 'filename' => 'string', ), - 'KTaglib_ID3v2_AttachedPictureFrame::setType' => + 'ktaglib_id3v2_attachedpictureframe::settype' => array ( 0 => 'mixed', 'type' => 'int', ), - 'KTaglib_ID3v2_Frame::__toString' => + 'ktaglib_id3v2_frame::__tostring' => array ( 0 => 'string', ), - 'KTaglib_ID3v2_Frame::getDescription' => + 'ktaglib_id3v2_frame::getdescription' => array ( 0 => 'string', ), - 'KTaglib_ID3v2_Frame::getMimeType' => + 'ktaglib_id3v2_frame::getmimetype' => array ( 0 => 'string', ), - 'KTaglib_ID3v2_Frame::getSize' => + 'ktaglib_id3v2_frame::getsize' => array ( 0 => 'int', ), - 'KTaglib_ID3v2_Frame::getType' => + 'ktaglib_id3v2_frame::gettype' => array ( 0 => 'int', ), - 'KTaglib_ID3v2_Frame::savePicture' => + 'ktaglib_id3v2_frame::savepicture' => array ( 0 => 'bool', 'filename' => 'string', ), - 'KTaglib_ID3v2_Frame::setMimeType' => + 'ktaglib_id3v2_frame::setmimetype' => array ( 0 => 'string', 'type' => 'string', ), - 'KTaglib_ID3v2_Frame::setPicture' => + 'ktaglib_id3v2_frame::setpicture' => array ( 0 => 'void', 'filename' => 'string', ), - 'KTaglib_ID3v2_Frame::setType' => + 'ktaglib_id3v2_frame::settype' => array ( 0 => 'void', 'type' => 'int', ), - 'KTaglib_ID3v2_Tag::addFrame' => + 'ktaglib_id3v2_tag::addframe' => array ( 0 => 'bool', 'frame' => 'KTaglib_ID3v2_Frame', ), - 'KTaglib_ID3v2_Tag::getFrameList' => + 'ktaglib_id3v2_tag::getframelist' => array ( 0 => 'array', ), - 'KTaglib_MPEG_AudioProperties::getBitrate' => + 'ktaglib_mpeg_audioproperties::getbitrate' => array ( 0 => 'int', ), - 'KTaglib_MPEG_AudioProperties::getChannels' => + 'ktaglib_mpeg_audioproperties::getchannels' => array ( 0 => 'int', ), - 'KTaglib_MPEG_AudioProperties::getLayer' => + 'ktaglib_mpeg_audioproperties::getlayer' => array ( 0 => 'int', ), - 'KTaglib_MPEG_AudioProperties::getLength' => + 'ktaglib_mpeg_audioproperties::getlength' => array ( 0 => 'int', ), - 'KTaglib_MPEG_AudioProperties::getSampleBitrate' => + 'ktaglib_mpeg_audioproperties::getsamplebitrate' => array ( 0 => 'int', ), - 'KTaglib_MPEG_AudioProperties::getVersion' => + 'ktaglib_mpeg_audioproperties::getversion' => array ( 0 => 'int', ), - 'KTaglib_MPEG_AudioProperties::isCopyrighted' => + 'ktaglib_mpeg_audioproperties::iscopyrighted' => array ( 0 => 'bool', ), - 'KTaglib_MPEG_AudioProperties::isOriginal' => + 'ktaglib_mpeg_audioproperties::isoriginal' => array ( 0 => 'bool', ), - 'KTaglib_MPEG_AudioProperties::isProtectionEnabled' => + 'ktaglib_mpeg_audioproperties::isprotectionenabled' => array ( 0 => 'bool', ), - 'KTaglib_MPEG_File::getAudioProperties' => + 'ktaglib_mpeg_file::getaudioproperties' => array ( 0 => 'KTaglib_MPEG_File', ), - 'KTaglib_MPEG_File::getID3v1Tag' => + 'ktaglib_mpeg_file::getid3v1tag' => array ( 0 => 'KTaglib_ID3v1_Tag', 'create=' => 'bool', ), - 'KTaglib_MPEG_File::getID3v2Tag' => + 'ktaglib_mpeg_file::getid3v2tag' => array ( 0 => 'KTaglib_ID3v2_Tag', 'create=' => 'bool', ), - 'KTaglib_Tag::getAlbum' => + 'ktaglib_tag::getalbum' => array ( 0 => 'string', ), - 'KTaglib_Tag::getArtist' => + 'ktaglib_tag::getartist' => array ( 0 => 'string', ), - 'KTaglib_Tag::getComment' => + 'ktaglib_tag::getcomment' => array ( 0 => 'string', ), - 'KTaglib_Tag::getGenre' => + 'ktaglib_tag::getgenre' => array ( 0 => 'string', ), - 'KTaglib_Tag::getTitle' => + 'ktaglib_tag::gettitle' => array ( 0 => 'string', ), - 'KTaglib_Tag::getTrack' => + 'ktaglib_tag::gettrack' => array ( 0 => 'int', ), - 'KTaglib_Tag::getYear' => + 'ktaglib_tag::getyear' => array ( 0 => 'int', ), - 'KTaglib_Tag::isEmpty' => + 'ktaglib_tag::isempty' => array ( 0 => 'bool', ), - 'Lapack::eigenValues' => + 'lapack::eigenvalues' => array ( 0 => 'array', 'a' => 'array', 'left=' => 'array', 'right=' => 'array', ), - 'Lapack::identity' => + 'lapack::identity' => array ( 0 => 'array', 'n' => 'int', ), - 'Lapack::leastSquaresByFactorisation' => + 'lapack::leastsquaresbyfactorisation' => array ( 0 => 'array', 'a' => 'array', 'b' => 'array', ), - 'Lapack::leastSquaresBySVD' => + 'lapack::leastsquaresbysvd' => array ( 0 => 'array', 'a' => 'array', 'b' => 'array', ), - 'Lapack::pseudoInverse' => + 'lapack::pseudoinverse' => array ( 0 => 'array', 'a' => 'array', ), - 'Lapack::singularValues' => + 'lapack::singularvalues' => array ( 0 => 'array', 'a' => 'array', ), - 'Lapack::solveLinearEquation' => + 'lapack::solvelinearequation' => array ( 0 => 'array', 'a' => 'array', 'b' => 'array', ), - 'LengthException::__clone' => + 'lengthexception::__clone' => array ( 0 => 'void', ), - 'LengthException::__construct' => + 'lengthexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'LengthException::__toString' => + 'lengthexception::__tostring' => array ( 0 => 'string', ), - 'LengthException::getCode' => + 'lengthexception::getcode' => array ( 0 => 'int', ), - 'LengthException::getFile' => + 'lengthexception::getfile' => array ( 0 => 'string', ), - 'LengthException::getLine' => + 'lengthexception::getline' => array ( 0 => 'int', ), - 'LengthException::getMessage' => + 'lengthexception::getmessage' => array ( 0 => 'string', ), - 'LengthException::getPrevious' => + 'lengthexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'LengthException::getTrace' => + 'lengthexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'LengthException::getTraceAsString' => + 'lengthexception::gettraceasstring' => array ( 0 => 'string', ), - 'LevelDB::__construct' => + 'leveldb::__construct' => array ( 0 => 'void', 'name' => 'string', @@ -16639,137 +16639,137 @@ 'read_options=' => 'array', 'write_options=' => 'array', ), - 'LevelDB::close' => + 'leveldb::close' => array ( 0 => 'mixed', ), - 'LevelDB::compactRange' => + 'leveldb::compactrange' => array ( 0 => 'mixed', 'start' => 'mixed', 'limit' => 'mixed', ), - 'LevelDB::delete' => + 'leveldb::delete' => array ( 0 => 'bool', 'key' => 'string', 'write_options=' => 'array', ), - 'LevelDB::destroy' => + 'leveldb::destroy' => array ( 0 => 'mixed', 'name' => 'mixed', 'options=' => 'array', ), - 'LevelDB::get' => + 'leveldb::get' => array ( 0 => 'bool|string', 'key' => 'string', 'read_options=' => 'array', ), - 'LevelDB::getApproximateSizes' => + 'leveldb::getapproximatesizes' => array ( 0 => 'mixed', 'start' => 'mixed', 'limit' => 'mixed', ), - 'LevelDB::getIterator' => + 'leveldb::getiterator' => array ( 0 => 'LevelDBIterator', 'options=' => 'array', ), - 'LevelDB::getProperty' => + 'leveldb::getproperty' => array ( 0 => 'mixed', 'name' => 'string', ), - 'LevelDB::getSnapshot' => + 'leveldb::getsnapshot' => array ( 0 => 'LevelDBSnapshot', ), - 'LevelDB::put' => + 'leveldb::put' => array ( 0 => 'mixed', 'key' => 'string', 'value' => 'string', 'write_options=' => 'array', ), - 'LevelDB::repair' => + 'leveldb::repair' => array ( 0 => 'mixed', 'name' => 'mixed', 'options=' => 'array', ), - 'LevelDB::set' => + 'leveldb::set' => array ( 0 => 'mixed', 'key' => 'string', 'value' => 'string', 'write_options=' => 'array', ), - 'LevelDB::write' => + 'leveldb::write' => array ( 0 => 'mixed', 'batch' => 'LevelDBWriteBatch', 'write_options=' => 'array', ), - 'LevelDBIterator::__construct' => + 'leveldbiterator::__construct' => array ( 0 => 'void', 'db' => 'LevelDB', 'read_options=' => 'array', ), - 'LevelDBIterator::current' => + 'leveldbiterator::current' => array ( 0 => 'mixed', ), - 'LevelDBIterator::destroy' => + 'leveldbiterator::destroy' => array ( 0 => 'mixed', ), - 'LevelDBIterator::getError' => + 'leveldbiterator::geterror' => array ( 0 => 'mixed', ), - 'LevelDBIterator::key' => + 'leveldbiterator::key' => array ( 0 => 'int|string', ), - 'LevelDBIterator::last' => + 'leveldbiterator::last' => array ( 0 => 'mixed', ), - 'LevelDBIterator::next' => + 'leveldbiterator::next' => array ( 0 => 'void', ), - 'LevelDBIterator::prev' => + 'leveldbiterator::prev' => array ( 0 => 'mixed', ), - 'LevelDBIterator::rewind' => + 'leveldbiterator::rewind' => array ( 0 => 'void', ), - 'LevelDBIterator::seek' => + 'leveldbiterator::seek' => array ( 0 => 'mixed', 'key' => 'mixed', ), - 'LevelDBIterator::valid' => + 'leveldbiterator::valid' => array ( 0 => 'bool', ), - 'LevelDBSnapshot::__construct' => + 'leveldbsnapshot::__construct' => array ( 0 => 'void', 'db' => 'LevelDB', ), - 'LevelDBSnapshot::release' => + 'leveldbsnapshot::release' => array ( 0 => 'mixed', ), - 'LevelDBWriteBatch::__construct' => + 'leveldbwritebatch::__construct' => array ( 0 => 'void', 'name' => 'mixed', @@ -16777,152 +16777,152 @@ 'read_options=' => 'array', 'write_options=' => 'array', ), - 'LevelDBWriteBatch::clear' => + 'leveldbwritebatch::clear' => array ( 0 => 'mixed', ), - 'LevelDBWriteBatch::delete' => + 'leveldbwritebatch::delete' => array ( 0 => 'mixed', 'key' => 'mixed', 'write_options=' => 'array', ), - 'LevelDBWriteBatch::put' => + 'leveldbwritebatch::put' => array ( 0 => 'mixed', 'key' => 'mixed', 'value' => 'mixed', 'write_options=' => 'array', ), - 'LevelDBWriteBatch::set' => + 'leveldbwritebatch::set' => array ( 0 => 'mixed', 'key' => 'mixed', 'value' => 'mixed', 'write_options=' => 'array', ), - 'LimitIterator::__construct' => + 'limititerator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', 'offset=' => 'int', 'limit=' => 'int', ), - 'LimitIterator::current' => + 'limititerator::current' => array ( 0 => 'mixed', ), - 'LimitIterator::getInnerIterator' => + 'limititerator::getinneriterator' => array ( 0 => 'Iterator', ), - 'LimitIterator::getPosition' => + 'limititerator::getposition' => array ( 0 => 'int', ), - 'LimitIterator::key' => + 'limititerator::key' => array ( 0 => 'mixed', ), - 'LimitIterator::next' => + 'limititerator::next' => array ( 0 => 'void', ), - 'LimitIterator::rewind' => + 'limititerator::rewind' => array ( 0 => 'void', ), - 'LimitIterator::seek' => + 'limititerator::seek' => array ( 0 => 'int', 'offset' => 'int', ), - 'LimitIterator::valid' => + 'limititerator::valid' => array ( 0 => 'bool', ), - 'Locale::acceptFromHttp' => + 'locale::acceptfromhttp' => array ( 0 => 'false|string', 'header' => 'string', ), - 'Locale::canonicalize' => + 'locale::canonicalize' => array ( 0 => 'null|string', 'locale' => 'string', ), - 'Locale::composeLocale' => + 'locale::composelocale' => array ( 0 => 'string', 'subtags' => 'array', ), - 'Locale::filterMatches' => + 'locale::filtermatches' => array ( 0 => 'bool|null', 'languageTag' => 'string', 'locale' => 'string', 'canonicalize=' => 'bool', ), - 'Locale::getAllVariants' => + 'locale::getallvariants' => array ( 0 => 'array', 'locale' => 'string', ), - 'Locale::getDefault' => + 'locale::getdefault' => array ( 0 => 'string', ), - 'Locale::getDisplayLanguage' => + 'locale::getdisplaylanguage' => array ( 0 => 'string', 'locale' => 'string', 'displayLocale=' => 'string', ), - 'Locale::getDisplayName' => + 'locale::getdisplayname' => array ( 0 => 'string', 'locale' => 'string', 'displayLocale=' => 'string', ), - 'Locale::getDisplayRegion' => + 'locale::getdisplayregion' => array ( 0 => 'string', 'locale' => 'string', 'displayLocale=' => 'string', ), - 'Locale::getDisplayScript' => + 'locale::getdisplayscript' => array ( 0 => 'string', 'locale' => 'string', 'displayLocale=' => 'string', ), - 'Locale::getDisplayVariant' => + 'locale::getdisplayvariant' => array ( 0 => 'string', 'locale' => 'string', 'displayLocale=' => 'string', ), - 'Locale::getKeywords' => + 'locale::getkeywords' => array ( 0 => 'array|false', 'locale' => 'string', ), - 'Locale::getPrimaryLanguage' => + 'locale::getprimarylanguage' => array ( 0 => 'string', 'locale' => 'string', ), - 'Locale::getRegion' => + 'locale::getregion' => array ( 0 => 'string', 'locale' => 'string', ), - 'Locale::getScript' => + 'locale::getscript' => array ( 0 => 'string', 'locale' => 'string', ), - 'Locale::lookup' => + 'locale::lookup' => array ( 0 => 'null|string', 'languageTag' => 'array', @@ -16930,111 +16930,111 @@ 'canonicalize=' => 'bool', 'defaultLocale=' => 'string', ), - 'Locale::parseLocale' => + 'locale::parselocale' => array ( 0 => 'array', 'locale' => 'string', ), - 'Locale::setDefault' => + 'locale::setdefault' => array ( 0 => 'bool', 'locale' => 'string', ), - 'LogicException::__clone' => + 'logicexception::__clone' => array ( 0 => 'void', ), - 'LogicException::__construct' => + 'logicexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'LogicException::__toString' => + 'logicexception::__tostring' => array ( 0 => 'string', ), - 'LogicException::getCode' => + 'logicexception::getcode' => array ( 0 => 'int', ), - 'LogicException::getFile' => + 'logicexception::getfile' => array ( 0 => 'string', ), - 'LogicException::getLine' => + 'logicexception::getline' => array ( 0 => 'int', ), - 'LogicException::getMessage' => + 'logicexception::getmessage' => array ( 0 => 'string', ), - 'LogicException::getPrevious' => + 'logicexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'LogicException::getTrace' => + 'logicexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'LogicException::getTraceAsString' => + 'logicexception::gettraceasstring' => array ( 0 => 'string', ), - 'Lua::__call' => + 'lua::__call' => array ( 0 => 'mixed', 'lua_func' => 'callable', 'args=' => 'array', 'use_self=' => 'int', ), - 'Lua::__construct' => + 'lua::__construct' => array ( 0 => 'void', 'lua_script_file' => 'string', ), - 'Lua::assign' => + 'lua::assign' => array ( 0 => 'Lua|null', 'name' => 'string', 'value' => 'mixed', ), - 'Lua::call' => + 'lua::call' => array ( 0 => 'mixed', 'lua_func' => 'callable', 'args=' => 'array', 'use_self=' => 'int', ), - 'Lua::eval' => + 'lua::eval' => array ( 0 => 'mixed', 'statements' => 'string', ), - 'Lua::getVersion' => + 'lua::getversion' => array ( 0 => 'string', ), - 'Lua::include' => + 'lua::include' => array ( 0 => 'mixed', 'file' => 'string', ), - 'Lua::registerCallback' => + 'lua::registercallback' => array ( 0 => 'Lua|false|null', 'name' => 'string', 'function' => 'callable', ), - 'LuaClosure::__invoke' => + 'luaclosure::__invoke' => array ( 0 => 'void', 'arg' => 'mixed', '...args=' => 'mixed', ), - 'Memcache::add' => + 'memcache::add' => array ( 0 => 'bool', 'key' => 'string', @@ -17042,7 +17042,7 @@ 'flag=' => 'int', 'expire=' => 'int', ), - 'Memcache::addServer' => + 'memcache::addserver' => array ( 0 => 'bool', 'host' => 'string', @@ -17055,100 +17055,100 @@ 'failure_callback=' => 'callable', 'timeoutms=' => 'int', ), - 'Memcache::append' => + 'memcache::append' => array ( 0 => 'mixed', ), - 'Memcache::cas' => + 'memcache::cas' => array ( 0 => 'mixed', ), - 'Memcache::close' => + 'memcache::close' => array ( 0 => 'bool', ), - 'Memcache::connect' => + 'memcache::connect' => array ( 0 => 'bool', 'host' => 'string', 'port=' => 'int', 'timeout=' => 'int', ), - 'Memcache::decrement' => + 'memcache::decrement' => array ( 0 => 'int', 'key' => 'string', 'value=' => 'int', ), - 'Memcache::delete' => + 'memcache::delete' => array ( 0 => 'bool', 'key' => 'string', 'timeout=' => 'int', ), - 'Memcache::findServer' => + 'memcache::findserver' => array ( 0 => 'mixed', ), - 'Memcache::flush' => + 'memcache::flush' => array ( 0 => 'bool', ), - 'Memcache::get' => + 'memcache::get' => array ( 0 => 'array|false|string', 'key' => 'string', 'flags=' => 'array', 'keys=' => 'array', ), - 'Memcache::get\'1' => + 'memcache::get\'1' => array ( 0 => 'array', 'key' => 'array', 'flags=' => 'array', ), - 'Memcache::getExtendedStats' => + 'memcache::getextendedstats' => array ( 0 => 'array|false>|false', 'type=' => 'string', 'slabid=' => 'int', 'limit=' => 'int', ), - 'Memcache::getServerStatus' => + 'memcache::getserverstatus' => array ( 0 => 'int', 'host' => 'string', 'port=' => 'int', ), - 'Memcache::getStats' => + 'memcache::getstats' => array ( 0 => 'array', 'type=' => 'string', 'slabid=' => 'int', 'limit=' => 'int', ), - 'Memcache::getVersion' => + 'memcache::getversion' => array ( 0 => 'string', ), - 'Memcache::increment' => + 'memcache::increment' => array ( 0 => 'int', 'key' => 'string', 'value=' => 'int', ), - 'Memcache::pconnect' => + 'memcache::pconnect' => array ( 0 => 'bool', 'host' => 'string', 'port=' => 'int', 'timeout=' => 'int', ), - 'Memcache::prepend' => + 'memcache::prepend' => array ( 0 => 'string', ), - 'Memcache::replace' => + 'memcache::replace' => array ( 0 => 'bool', 'key' => 'string', @@ -17156,7 +17156,7 @@ 'flag=' => 'int', 'expire=' => 'int', ), - 'Memcache::set' => + 'memcache::set' => array ( 0 => 'bool', 'key' => 'string', @@ -17164,17 +17164,17 @@ 'flag=' => 'int', 'expire=' => 'int', ), - 'Memcache::setCompressThreshold' => + 'memcache::setcompressthreshold' => array ( 0 => 'bool', 'threshold' => 'int', 'min_savings=' => 'float', ), - 'Memcache::setFailureCallback' => + 'memcache::setfailurecallback' => array ( 0 => 'mixed', ), - 'Memcache::setServerParams' => + 'memcache::setserverparams' => array ( 0 => 'bool', 'host' => 'string', @@ -17184,7 +17184,7 @@ 'status=' => 'bool', 'failure_callback=' => 'callable', ), - 'MemcachePool::add' => + 'memcachepool::add' => array ( 0 => 'bool', 'key' => 'string', @@ -17192,7 +17192,7 @@ 'flag=' => 'int', 'expire=' => 'int', ), - 'MemcachePool::addServer' => + 'memcachepool::addserver' => array ( 0 => 'bool', 'host' => 'string', @@ -17205,86 +17205,86 @@ 'failure_callback=' => 'callable|null', 'timeoutms=' => 'int', ), - 'MemcachePool::append' => + 'memcachepool::append' => array ( 0 => 'mixed', ), - 'MemcachePool::cas' => + 'memcachepool::cas' => array ( 0 => 'mixed', ), - 'MemcachePool::close' => + 'memcachepool::close' => array ( 0 => 'bool', ), - 'MemcachePool::connect' => + 'memcachepool::connect' => array ( 0 => 'bool', 'host' => 'string', 'port' => 'int', 'timeout=' => 'int', ), - 'MemcachePool::decrement' => + 'memcachepool::decrement' => array ( 0 => 'false|int', 'key' => 'mixed', 'value=' => 'int|mixed', ), - 'MemcachePool::delete' => + 'memcachepool::delete' => array ( 0 => 'bool', 'key' => 'mixed', 'timeout=' => 'int|mixed', ), - 'MemcachePool::findServer' => + 'memcachepool::findserver' => array ( 0 => 'mixed', ), - 'MemcachePool::flush' => + 'memcachepool::flush' => array ( 0 => 'bool', ), - 'MemcachePool::get' => + 'memcachepool::get' => array ( 0 => 'array|false|string', 'key' => 'array|string', '&flags=' => 'array|int', ), - 'MemcachePool::getExtendedStats' => + 'memcachepool::getextendedstats' => array ( 0 => 'array|false>|false', 'type=' => 'string', 'slabid=' => 'int', 'limit=' => 'int', ), - 'MemcachePool::getServerStatus' => + 'memcachepool::getserverstatus' => array ( 0 => 'int', 'host' => 'string', 'port=' => 'int', ), - 'MemcachePool::getStats' => + 'memcachepool::getstats' => array ( 0 => 'array|false', 'type=' => 'string', 'slabid=' => 'int', 'limit=' => 'int', ), - 'MemcachePool::getVersion' => + 'memcachepool::getversion' => array ( 0 => 'false|string', ), - 'MemcachePool::increment' => + 'memcachepool::increment' => array ( 0 => 'false|int', 'key' => 'mixed', 'value=' => 'int|mixed', ), - 'MemcachePool::prepend' => + 'memcachepool::prepend' => array ( 0 => 'string', ), - 'MemcachePool::replace' => + 'memcachepool::replace' => array ( 0 => 'bool', 'key' => 'string', @@ -17292,7 +17292,7 @@ 'flag=' => 'int', 'expire=' => 'int', ), - 'MemcachePool::set' => + 'memcachepool::set' => array ( 0 => 'bool', 'key' => 'string', @@ -17300,17 +17300,17 @@ 'flag=' => 'int', 'expire=' => 'int', ), - 'MemcachePool::setCompressThreshold' => + 'memcachepool::setcompressthreshold' => array ( 0 => 'bool', 'thresold' => 'int', 'min_saving=' => 'float', ), - 'MemcachePool::setFailureCallback' => + 'memcachepool::setfailurecallback' => array ( 0 => 'mixed', ), - 'MemcachePool::setServerParams' => + 'memcachepool::setserverparams' => array ( 0 => 'bool', 'host' => 'string', @@ -17320,21 +17320,21 @@ 'status=' => 'bool', 'failure_callback=' => 'callable|null', ), - 'Memcached::__construct' => + 'memcached::__construct' => array ( 0 => 'void', 'persistent_id=' => 'null|string', 'callback=' => 'callable|null', 'connection_str=' => 'null|string', ), - 'Memcached::add' => + 'memcached::add' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::addByKey' => + 'memcached::addbykey' => array ( 0 => 'bool', 'server_key' => 'string', @@ -17342,32 +17342,32 @@ 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::addServer' => + 'memcached::addserver' => array ( 0 => 'bool', 'host' => 'string', 'port' => 'int', 'weight=' => 'int', ), - 'Memcached::addServers' => + 'memcached::addservers' => array ( 0 => 'bool', 'servers' => 'array', ), - 'Memcached::append' => + 'memcached::append' => array ( 0 => 'bool|null', 'key' => 'string', 'value' => 'string', ), - 'Memcached::appendByKey' => + 'memcached::appendbykey' => array ( 0 => 'bool|null', 'server_key' => 'string', 'key' => 'string', 'value' => 'string', ), - 'Memcached::cas' => + 'memcached::cas' => array ( 0 => 'bool', 'cas_token' => 'float|int|string', @@ -17375,7 +17375,7 @@ 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::casByKey' => + 'memcached::casbykey' => array ( 0 => 'bool', 'cas_token' => 'float|int|string', @@ -17384,7 +17384,7 @@ 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::decrement' => + 'memcached::decrement' => array ( 0 => 'false|int', 'key' => 'string', @@ -17392,7 +17392,7 @@ 'initial_value=' => 'int', 'expiry=' => 'int', ), - 'Memcached::decrementByKey' => + 'memcached::decrementbykey' => array ( 0 => 'false|int', 'server_key' => 'string', @@ -17401,61 +17401,61 @@ 'initial_value=' => 'int', 'expiry=' => 'int', ), - 'Memcached::delete' => + 'memcached::delete' => array ( 0 => 'bool', 'key' => 'string', 'time=' => 'int', ), - 'Memcached::deleteByKey' => + 'memcached::deletebykey' => array ( 0 => 'bool', 'server_key' => 'string', 'key' => 'string', 'time=' => 'int', ), - 'Memcached::deleteMulti' => + 'memcached::deletemulti' => array ( 0 => 'array', 'keys' => 'array', 'time=' => 'int', ), - 'Memcached::deleteMultiByKey' => + 'memcached::deletemultibykey' => array ( 0 => 'array', 'server_key' => 'string', 'keys' => 'array', 'time=' => 'int', ), - 'Memcached::fetch' => + 'memcached::fetch' => array ( 0 => 'array|false', ), - 'Memcached::fetchAll' => + 'memcached::fetchall' => array ( 0 => 'array|false', ), - 'Memcached::flush' => + 'memcached::flush' => array ( 0 => 'bool', 'delay=' => 'int', ), - 'Memcached::flushBuffers' => + 'memcached::flushbuffers' => array ( 0 => 'bool', ), - 'Memcached::get' => + 'memcached::get' => array ( 0 => 'false|mixed', 'key' => 'string', 'cache_cb=' => 'callable|null', 'get_flags=' => 'int', ), - 'Memcached::getAllKeys' => + 'memcached::getallkeys' => array ( 0 => 'array|false', ), - 'Memcached::getByKey' => + 'memcached::getbykey' => array ( 0 => 'false|mixed', 'server_key' => 'string', @@ -17463,14 +17463,14 @@ 'cache_cb=' => 'callable|null', 'get_flags=' => 'int', ), - 'Memcached::getDelayed' => + 'memcached::getdelayed' => array ( 0 => 'bool', 'keys' => 'array', 'with_cas=' => 'bool', 'value_cb=' => 'callable|null', ), - 'Memcached::getDelayedByKey' => + 'memcached::getdelayedbykey' => array ( 0 => 'bool', 'server_key' => 'string', @@ -17478,67 +17478,67 @@ 'with_cas=' => 'bool', 'value_cb=' => 'callable|null', ), - 'Memcached::getLastDisconnectedServer' => + 'memcached::getlastdisconnectedserver' => array ( 0 => 'array|false', ), - 'Memcached::getLastErrorCode' => + 'memcached::getlasterrorcode' => array ( 0 => 'int', ), - 'Memcached::getLastErrorErrno' => + 'memcached::getlasterrorerrno' => array ( 0 => 'int', ), - 'Memcached::getLastErrorMessage' => + 'memcached::getlasterrormessage' => array ( 0 => 'string', ), - 'Memcached::getMulti' => + 'memcached::getmulti' => array ( 0 => 'array|false', 'keys' => 'array', 'get_flags=' => 'int', ), - 'Memcached::getMultiByKey' => + 'memcached::getmultibykey' => array ( 0 => 'array|false', 'server_key' => 'string', 'keys' => 'array', 'get_flags=' => 'int', ), - 'Memcached::getOption' => + 'memcached::getoption' => array ( 0 => 'false|mixed', 'option' => 'int', ), - 'Memcached::getResultCode' => + 'memcached::getresultcode' => array ( 0 => 'int', ), - 'Memcached::getResultMessage' => + 'memcached::getresultmessage' => array ( 0 => 'string', ), - 'Memcached::getServerByKey' => + 'memcached::getserverbykey' => array ( 0 => 'array', 'server_key' => 'string', ), - 'Memcached::getServerList' => + 'memcached::getserverlist' => array ( 0 => 'array', ), - 'Memcached::getStats' => + 'memcached::getstats' => array ( 0 => 'array|false>|false', 'type=' => 'null|string', ), - 'Memcached::getVersion' => + 'memcached::getversion' => array ( 0 => 'array', ), - 'Memcached::increment' => + 'memcached::increment' => array ( 0 => 'false|int', 'key' => 'string', @@ -17546,7 +17546,7 @@ 'initial_value=' => 'int', 'expiry=' => 'int', ), - 'Memcached::incrementByKey' => + 'memcached::incrementbykey' => array ( 0 => 'false|int', 'server_key' => 'string', @@ -17555,39 +17555,39 @@ 'initial_value=' => 'int', 'expiry=' => 'int', ), - 'Memcached::isPersistent' => + 'memcached::ispersistent' => array ( 0 => 'bool', ), - 'Memcached::isPristine' => + 'memcached::ispristine' => array ( 0 => 'bool', ), - 'Memcached::prepend' => + 'memcached::prepend' => array ( 0 => 'bool|null', 'key' => 'string', 'value' => 'string', ), - 'Memcached::prependByKey' => + 'memcached::prependbykey' => array ( 0 => 'bool|null', 'server_key' => 'string', 'key' => 'string', 'value' => 'string', ), - 'Memcached::quit' => + 'memcached::quit' => array ( 0 => 'bool', ), - 'Memcached::replace' => + 'memcached::replace' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::replaceByKey' => + 'memcached::replacebykey' => array ( 0 => 'bool', 'server_key' => 'string', @@ -17595,25 +17595,25 @@ 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::resetServerList' => + 'memcached::resetserverlist' => array ( 0 => 'bool', ), - 'Memcached::set' => + 'memcached::set' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::setBucket' => + 'memcached::setbucket' => array ( 0 => 'bool', 'host_map' => 'array', 'forward_map' => 'array|null', 'replicas' => 'int', ), - 'Memcached::setByKey' => + 'memcached::setbykey' => array ( 0 => 'bool', 'server_key' => 'string', @@ -17621,442 +17621,442 @@ 'value' => 'mixed', 'expiration=' => 'int', ), - 'Memcached::setEncodingKey' => + 'memcached::setencodingkey' => array ( 0 => 'bool', 'key' => 'string', ), - 'Memcached::setMulti' => + 'memcached::setmulti' => array ( 0 => 'bool', 'items' => 'array', 'expiration=' => 'int', ), - 'Memcached::setMultiByKey' => + 'memcached::setmultibykey' => array ( 0 => 'bool', 'server_key' => 'string', 'items' => 'array', 'expiration=' => 'int', ), - 'Memcached::setOption' => + 'memcached::setoption' => array ( 0 => 'bool', 'option' => 'int', 'value' => 'mixed', ), - 'Memcached::setOptions' => + 'memcached::setoptions' => array ( 0 => 'bool', 'options' => 'array', ), - 'Memcached::setSaslAuthData' => + 'memcached::setsaslauthdata' => array ( 0 => 'bool', 'username' => 'string', 'password' => 'string', ), - 'Memcached::touch' => + 'memcached::touch' => array ( 0 => 'bool', 'key' => 'string', 'expiration=' => 'int', ), - 'Memcached::touchByKey' => + 'memcached::touchbykey' => array ( 0 => 'bool', 'server_key' => 'string', 'key' => 'string', 'expiration=' => 'int', ), - 'MessageFormatter::__construct' => + 'messageformatter::__construct' => array ( 0 => 'void', 'locale' => 'string', 'pattern' => 'string', ), - 'MessageFormatter::create' => + 'messageformatter::create' => array ( 0 => 'MessageFormatter', 'locale' => 'string', 'pattern' => 'string', ), - 'MessageFormatter::format' => + 'messageformatter::format' => array ( 0 => 'false|string', 'values' => 'array', ), - 'MessageFormatter::formatMessage' => + 'messageformatter::formatmessage' => array ( 0 => 'false|string', 'locale' => 'string', 'pattern' => 'string', 'values' => 'array', ), - 'MessageFormatter::getErrorCode' => + 'messageformatter::geterrorcode' => array ( 0 => 'int', ), - 'MessageFormatter::getErrorMessage' => + 'messageformatter::geterrormessage' => array ( 0 => 'string', ), - 'MessageFormatter::getLocale' => + 'messageformatter::getlocale' => array ( 0 => 'string', ), - 'MessageFormatter::getPattern' => + 'messageformatter::getpattern' => array ( 0 => 'string', ), - 'MessageFormatter::parse' => + 'messageformatter::parse' => array ( 0 => 'array|false', 'string' => 'string', ), - 'MessageFormatter::parseMessage' => + 'messageformatter::parsemessage' => array ( 0 => 'array|false', 'locale' => 'string', 'pattern' => 'string', 'message' => 'string', ), - 'MessageFormatter::setPattern' => + 'messageformatter::setpattern' => array ( 0 => 'bool', 'pattern' => 'string', ), - 'Mongo::__construct' => + 'mongo::__construct' => array ( 0 => 'void', 'server=' => 'string', 'options=' => 'array', 'driver_options=' => 'array', ), - 'Mongo::__get' => + 'mongo::__get' => array ( 0 => 'MongoDB', 'dbname' => 'string', ), - 'Mongo::__toString' => + 'mongo::__tostring' => array ( 0 => 'string', ), - 'Mongo::close' => + 'mongo::close' => array ( 0 => 'bool', ), - 'Mongo::connect' => + 'mongo::connect' => array ( 0 => 'bool', ), - 'Mongo::connectUtil' => + 'mongo::connectutil' => array ( 0 => 'bool', ), - 'Mongo::dropDB' => + 'mongo::dropdb' => array ( 0 => 'array', 'db' => 'mixed', ), - 'Mongo::forceError' => + 'mongo::forceerror' => array ( 0 => 'bool', ), - 'Mongo::getConnections' => + 'mongo::getconnections' => array ( 0 => 'array', ), - 'Mongo::getHosts' => + 'mongo::gethosts' => array ( 0 => 'array', ), - 'Mongo::getPoolSize' => + 'mongo::getpoolsize' => array ( 0 => 'int', ), - 'Mongo::getReadPreference' => + 'mongo::getreadpreference' => array ( 0 => 'array', ), - 'Mongo::getSlave' => + 'mongo::getslave' => array ( 0 => 'null|string', ), - 'Mongo::getSlaveOkay' => + 'mongo::getslaveokay' => array ( 0 => 'bool', ), - 'Mongo::getWriteConcern' => + 'mongo::getwriteconcern' => array ( 0 => 'array', ), - 'Mongo::killCursor' => + 'mongo::killcursor' => array ( 0 => 'mixed', 'server_hash' => 'string', 'id' => 'MongoInt64|int', ), - 'Mongo::lastError' => + 'mongo::lasterror' => array ( 0 => 'array|null', ), - 'Mongo::listDBs' => + 'mongo::listdbs' => array ( 0 => 'array', ), - 'Mongo::pairConnect' => + 'mongo::pairconnect' => array ( 0 => 'bool', ), - 'Mongo::pairPersistConnect' => + 'mongo::pairpersistconnect' => array ( 0 => 'bool', 'username=' => 'string', 'password=' => 'string', ), - 'Mongo::persistConnect' => + 'mongo::persistconnect' => array ( 0 => 'bool', 'username=' => 'string', 'password=' => 'string', ), - 'Mongo::poolDebug' => + 'mongo::pooldebug' => array ( 0 => 'array', ), - 'Mongo::prevError' => + 'mongo::preverror' => array ( 0 => 'array', ), - 'Mongo::resetError' => + 'mongo::reseterror' => array ( 0 => 'array', ), - 'Mongo::selectCollection' => + 'mongo::selectcollection' => array ( 0 => 'MongoCollection', 'db' => 'string', 'collection' => 'string', ), - 'Mongo::selectDB' => + 'mongo::selectdb' => array ( 0 => 'MongoDB', 'name' => 'string', ), - 'Mongo::setPoolSize' => + 'mongo::setpoolsize' => array ( 0 => 'bool', 'size' => 'int', ), - 'Mongo::setReadPreference' => + 'mongo::setreadpreference' => array ( 0 => 'bool', 'readPreference' => 'string', 'tags=' => 'array', ), - 'Mongo::setSlaveOkay' => + 'mongo::setslaveokay' => array ( 0 => 'bool', 'ok=' => 'bool', ), - 'Mongo::switchSlave' => + 'mongo::switchslave' => array ( 0 => 'string', ), - 'MongoBinData::__construct' => + 'mongobindata::__construct' => array ( 0 => 'void', 'data' => 'string', 'type=' => 'int', ), - 'MongoBinData::__toString' => + 'mongobindata::__tostring' => array ( 0 => 'string', ), - 'MongoClient::__construct' => + 'mongoclient::__construct' => array ( 0 => 'void', 'server=' => 'string', 'options=' => 'array', 'driver_options=' => 'array', ), - 'MongoClient::__get' => + 'mongoclient::__get' => array ( 0 => 'MongoDB', 'dbname' => 'string', ), - 'MongoClient::__toString' => + 'mongoclient::__tostring' => array ( 0 => 'string', ), - 'MongoClient::close' => + 'mongoclient::close' => array ( 0 => 'bool', 'connection=' => 'bool|string', ), - 'MongoClient::connect' => + 'mongoclient::connect' => array ( 0 => 'bool', ), - 'MongoClient::dropDB' => + 'mongoclient::dropdb' => array ( 0 => 'array', 'db' => 'mixed', ), - 'MongoClient::getConnections' => + 'mongoclient::getconnections' => array ( 0 => 'array', ), - 'MongoClient::getHosts' => + 'mongoclient::gethosts' => array ( 0 => 'array', ), - 'MongoClient::getReadPreference' => + 'mongoclient::getreadpreference' => array ( 0 => 'array', ), - 'MongoClient::getWriteConcern' => + 'mongoclient::getwriteconcern' => array ( 0 => 'array', ), - 'MongoClient::killCursor' => + 'mongoclient::killcursor' => array ( 0 => 'bool', 'server_hash' => 'string', 'id' => 'MongoInt64|int', ), - 'MongoClient::listDBs' => + 'mongoclient::listdbs' => array ( 0 => 'array', ), - 'MongoClient::selectCollection' => + 'mongoclient::selectcollection' => array ( 0 => 'MongoCollection', 'db' => 'string', 'collection' => 'string', ), - 'MongoClient::selectDB' => + 'mongoclient::selectdb' => array ( 0 => 'MongoDB', 'name' => 'string', ), - 'MongoClient::setReadPreference' => + 'mongoclient::setreadpreference' => array ( 0 => 'bool', 'read_preference' => 'string', 'tags=' => 'array', ), - 'MongoClient::setWriteConcern' => + 'mongoclient::setwriteconcern' => array ( 0 => 'bool', 'w' => 'mixed', 'wtimeout=' => 'int', ), - 'MongoClient::switchSlave' => + 'mongoclient::switchslave' => array ( 0 => 'string', ), - 'MongoCode::__construct' => + 'mongocode::__construct' => array ( 0 => 'void', 'code' => 'string', 'scope=' => 'array', ), - 'MongoCode::__toString' => + 'mongocode::__tostring' => array ( 0 => 'string', ), - 'MongoCollection::__construct' => + 'mongocollection::__construct' => array ( 0 => 'void', 'db' => 'MongoDB', 'name' => 'string', ), - 'MongoCollection::__get' => + 'mongocollection::__get' => array ( 0 => 'MongoCollection', 'name' => 'string', ), - 'MongoCollection::__toString' => + 'mongocollection::__tostring' => array ( 0 => 'string', ), - 'MongoCollection::aggregate' => + 'mongocollection::aggregate' => array ( 0 => 'array', 'op' => 'array', 'op=' => 'array', '...args=' => 'array', ), - 'MongoCollection::aggregate\'1' => + 'mongocollection::aggregate\'1' => array ( 0 => 'array', 'pipeline' => 'array', 'options=' => 'array', ), - 'MongoCollection::aggregateCursor' => + 'mongocollection::aggregatecursor' => array ( 0 => 'MongoCommandCursor', 'command' => 'array', 'options=' => 'array', ), - 'MongoCollection::batchInsert' => + 'mongocollection::batchinsert' => array ( 0 => 'array|bool', 'a' => 'array', 'options=' => 'array', ), - 'MongoCollection::count' => + 'mongocollection::count' => array ( 0 => 'int', 'query=' => 'array', 'limit=' => 'int', 'skip=' => 'int', ), - 'MongoCollection::createDBRef' => + 'mongocollection::createdbref' => array ( 0 => 'array', 'a' => 'array', ), - 'MongoCollection::createIndex' => + 'mongocollection::createindex' => array ( 0 => 'array', 'keys' => 'array', 'options=' => 'array', ), - 'MongoCollection::deleteIndex' => + 'mongocollection::deleteindex' => array ( 0 => 'array', 'keys' => 'array|string', ), - 'MongoCollection::deleteIndexes' => + 'mongocollection::deleteindexes' => array ( 0 => 'array', ), - 'MongoCollection::distinct' => + 'mongocollection::distinct' => array ( 0 => 'array|false', 'key' => 'string', 'query=' => 'array', ), - 'MongoCollection::drop' => + 'mongocollection::drop' => array ( 0 => 'array', ), - 'MongoCollection::ensureIndex' => + 'mongocollection::ensureindex' => array ( 0 => 'bool', 'keys' => 'array', 'options=' => 'array', ), - 'MongoCollection::find' => + 'mongocollection::find' => array ( 0 => 'MongoCursor', 'query=' => 'array', 'fields=' => 'array', ), - 'MongoCollection::findAndModify' => + 'mongocollection::findandmodify' => array ( 0 => 'array', 'query' => 'array', @@ -18064,38 +18064,38 @@ 'fields=' => 'array', 'options=' => 'array', ), - 'MongoCollection::findOne' => + 'mongocollection::findone' => array ( 0 => 'array|null', 'query=' => 'array', 'fields=' => 'array', ), - 'MongoCollection::getDBRef' => + 'mongocollection::getdbref' => array ( 0 => 'array', 'ref' => 'array', ), - 'MongoCollection::getIndexInfo' => + 'mongocollection::getindexinfo' => array ( 0 => 'array', ), - 'MongoCollection::getName' => + 'mongocollection::getname' => array ( 0 => 'string', ), - 'MongoCollection::getReadPreference' => + 'mongocollection::getreadpreference' => array ( 0 => 'array', ), - 'MongoCollection::getSlaveOkay' => + 'mongocollection::getslaveokay' => array ( 0 => 'bool', ), - 'MongoCollection::getWriteConcern' => + 'mongocollection::getwriteconcern' => array ( 0 => 'array', ), - 'MongoCollection::group' => + 'mongocollection::group' => array ( 0 => 'array', 'keys' => 'mixed', @@ -18103,126 +18103,126 @@ 'reduce' => 'MongoCode', 'options=' => 'array', ), - 'MongoCollection::insert' => + 'mongocollection::insert' => array ( 0 => 'array|bool', 'a' => 'array|object', 'options=' => 'array', ), - 'MongoCollection::parallelCollectionScan' => + 'mongocollection::parallelcollectionscan' => array ( 0 => 'array', 'num_cursors' => 'int', ), - 'MongoCollection::remove' => + 'mongocollection::remove' => array ( 0 => 'array|bool', 'criteria=' => 'array', 'options=' => 'array', ), - 'MongoCollection::save' => + 'mongocollection::save' => array ( 0 => 'array|bool', 'a' => 'array|object', 'options=' => 'array', ), - 'MongoCollection::setReadPreference' => + 'mongocollection::setreadpreference' => array ( 0 => 'bool', 'read_preference' => 'string', 'tags=' => 'array', ), - 'MongoCollection::setSlaveOkay' => + 'mongocollection::setslaveokay' => array ( 0 => 'bool', 'ok=' => 'bool', ), - 'MongoCollection::setWriteConcern' => + 'mongocollection::setwriteconcern' => array ( 0 => 'bool', 'w' => 'mixed', 'wtimeout=' => 'int', ), - 'MongoCollection::toIndexString' => + 'mongocollection::toindexstring' => array ( 0 => 'string', 'keys' => 'mixed', ), - 'MongoCollection::update' => + 'mongocollection::update' => array ( 0 => 'bool', 'criteria' => 'array', 'newobj' => 'array', 'options=' => 'array', ), - 'MongoCollection::validate' => + 'mongocollection::validate' => array ( 0 => 'array', 'scan_data=' => 'bool', ), - 'MongoCommandCursor::__construct' => + 'mongocommandcursor::__construct' => array ( 0 => 'void', 'connection' => 'MongoClient', 'ns' => 'string', 'command' => 'array', ), - 'MongoCommandCursor::batchSize' => + 'mongocommandcursor::batchsize' => array ( 0 => 'MongoCommandCursor', 'batchSize' => 'int', ), - 'MongoCommandCursor::createFromDocument' => + 'mongocommandcursor::createfromdocument' => array ( 0 => 'MongoCommandCursor', 'connection' => 'MongoClient', 'hash' => 'string', 'document' => 'array', ), - 'MongoCommandCursor::current' => + 'mongocommandcursor::current' => array ( 0 => 'array', ), - 'MongoCommandCursor::dead' => + 'mongocommandcursor::dead' => array ( 0 => 'bool', ), - 'MongoCommandCursor::getReadPreference' => + 'mongocommandcursor::getreadpreference' => array ( 0 => 'array', ), - 'MongoCommandCursor::info' => + 'mongocommandcursor::info' => array ( 0 => 'array', ), - 'MongoCommandCursor::key' => + 'mongocommandcursor::key' => array ( 0 => 'int', ), - 'MongoCommandCursor::next' => + 'mongocommandcursor::next' => array ( 0 => 'void', ), - 'MongoCommandCursor::rewind' => + 'mongocommandcursor::rewind' => array ( 0 => 'array', ), - 'MongoCommandCursor::setReadPreference' => + 'mongocommandcursor::setreadpreference' => array ( 0 => 'MongoCommandCursor', 'read_preference' => 'string', 'tags=' => 'array', ), - 'MongoCommandCursor::timeout' => + 'mongocommandcursor::timeout' => array ( 0 => 'MongoCommandCursor', 'ms' => 'int', ), - 'MongoCommandCursor::valid' => + 'mongocommandcursor::valid' => array ( 0 => 'bool', ), - 'MongoCursor::__construct' => + 'mongocursor::__construct' => array ( 0 => 'void', 'connection' => 'MongoClient', @@ -18230,280 +18230,280 @@ 'query=' => 'array', 'fields=' => 'array', ), - 'MongoCursor::addOption' => + 'mongocursor::addoption' => array ( 0 => 'MongoCursor', 'key' => 'string', 'value' => 'mixed', ), - 'MongoCursor::awaitData' => + 'mongocursor::awaitdata' => array ( 0 => 'MongoCursor', 'wait=' => 'bool', ), - 'MongoCursor::batchSize' => + 'mongocursor::batchsize' => array ( 0 => 'MongoCursor', 'num' => 'int', ), - 'MongoCursor::count' => + 'mongocursor::count' => array ( 0 => 'int', 'foundonly=' => 'bool', ), - 'MongoCursor::current' => + 'mongocursor::current' => array ( 0 => 'array', ), - 'MongoCursor::dead' => + 'mongocursor::dead' => array ( 0 => 'bool', ), - 'MongoCursor::doQuery' => + 'mongocursor::doquery' => array ( 0 => 'void', ), - 'MongoCursor::explain' => + 'mongocursor::explain' => array ( 0 => 'array', ), - 'MongoCursor::fields' => + 'mongocursor::fields' => array ( 0 => 'MongoCursor', 'f' => 'array', ), - 'MongoCursor::getNext' => + 'mongocursor::getnext' => array ( 0 => 'array', ), - 'MongoCursor::getReadPreference' => + 'mongocursor::getreadpreference' => array ( 0 => 'array', ), - 'MongoCursor::hasNext' => + 'mongocursor::hasnext' => array ( 0 => 'bool', ), - 'MongoCursor::hint' => + 'mongocursor::hint' => array ( 0 => 'MongoCursor', 'key_pattern' => 'array|object|string', ), - 'MongoCursor::immortal' => + 'mongocursor::immortal' => array ( 0 => 'MongoCursor', 'liveforever=' => 'bool', ), - 'MongoCursor::info' => + 'mongocursor::info' => array ( 0 => 'array', ), - 'MongoCursor::key' => + 'mongocursor::key' => array ( 0 => 'string', ), - 'MongoCursor::limit' => + 'mongocursor::limit' => array ( 0 => 'MongoCursor', 'num' => 'int', ), - 'MongoCursor::maxTimeMS' => + 'mongocursor::maxtimems' => array ( 0 => 'MongoCursor', 'ms' => 'int', ), - 'MongoCursor::next' => + 'mongocursor::next' => array ( 0 => 'array', ), - 'MongoCursor::partial' => + 'mongocursor::partial' => array ( 0 => 'MongoCursor', 'okay=' => 'bool', ), - 'MongoCursor::reset' => + 'mongocursor::reset' => array ( 0 => 'void', ), - 'MongoCursor::rewind' => + 'mongocursor::rewind' => array ( 0 => 'void', ), - 'MongoCursor::setFlag' => + 'mongocursor::setflag' => array ( 0 => 'MongoCursor', 'flag' => 'int', 'set=' => 'bool', ), - 'MongoCursor::setReadPreference' => + 'mongocursor::setreadpreference' => array ( 0 => 'MongoCursor', 'read_preference' => 'string', 'tags=' => 'array', ), - 'MongoCursor::skip' => + 'mongocursor::skip' => array ( 0 => 'MongoCursor', 'num' => 'int', ), - 'MongoCursor::slaveOkay' => + 'mongocursor::slaveokay' => array ( 0 => 'MongoCursor', 'okay=' => 'bool', ), - 'MongoCursor::snapshot' => + 'mongocursor::snapshot' => array ( 0 => 'MongoCursor', ), - 'MongoCursor::sort' => + 'mongocursor::sort' => array ( 0 => 'MongoCursor', 'fields' => 'array', ), - 'MongoCursor::tailable' => + 'mongocursor::tailable' => array ( 0 => 'MongoCursor', 'tail=' => 'bool', ), - 'MongoCursor::timeout' => + 'mongocursor::timeout' => array ( 0 => 'MongoCursor', 'ms' => 'int', ), - 'MongoCursor::valid' => + 'mongocursor::valid' => array ( 0 => 'bool', ), - 'MongoCursorException::__clone' => + 'mongocursorexception::__clone' => array ( 0 => 'void', ), - 'MongoCursorException::__construct' => + 'mongocursorexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'MongoCursorException::__toString' => + 'mongocursorexception::__tostring' => array ( 0 => 'string', ), - 'MongoCursorException::__wakeup' => + 'mongocursorexception::__wakeup' => array ( 0 => 'void', ), - 'MongoCursorException::getCode' => + 'mongocursorexception::getcode' => array ( 0 => 'int', ), - 'MongoCursorException::getFile' => + 'mongocursorexception::getfile' => array ( 0 => 'string', ), - 'MongoCursorException::getHost' => + 'mongocursorexception::gethost' => array ( 0 => 'string', ), - 'MongoCursorException::getLine' => + 'mongocursorexception::getline' => array ( 0 => 'int', ), - 'MongoCursorException::getMessage' => + 'mongocursorexception::getmessage' => array ( 0 => 'string', ), - 'MongoCursorException::getPrevious' => + 'mongocursorexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'MongoCursorException::getTrace' => + 'mongocursorexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'MongoCursorException::getTraceAsString' => + 'mongocursorexception::gettraceasstring' => array ( 0 => 'string', ), - 'MongoCursorInterface::__construct' => + 'mongocursorinterface::__construct' => array ( 0 => 'void', ), - 'MongoCursorInterface::batchSize' => + 'mongocursorinterface::batchsize' => array ( 0 => 'MongoCursorInterface', 'batchSize' => 'int', ), - 'MongoCursorInterface::current' => + 'mongocursorinterface::current' => array ( 0 => 'mixed', ), - 'MongoCursorInterface::dead' => + 'mongocursorinterface::dead' => array ( 0 => 'bool', ), - 'MongoCursorInterface::getReadPreference' => + 'mongocursorinterface::getreadpreference' => array ( 0 => 'array', ), - 'MongoCursorInterface::info' => + 'mongocursorinterface::info' => array ( 0 => 'array', ), - 'MongoCursorInterface::key' => + 'mongocursorinterface::key' => array ( 0 => 'int|string', ), - 'MongoCursorInterface::next' => + 'mongocursorinterface::next' => array ( 0 => 'void', ), - 'MongoCursorInterface::rewind' => + 'mongocursorinterface::rewind' => array ( 0 => 'void', ), - 'MongoCursorInterface::setReadPreference' => + 'mongocursorinterface::setreadpreference' => array ( 0 => 'MongoCursorInterface', 'read_preference' => 'string', 'tags=' => 'array', ), - 'MongoCursorInterface::timeout' => + 'mongocursorinterface::timeout' => array ( 0 => 'MongoCursorInterface', 'ms' => 'int', ), - 'MongoCursorInterface::valid' => + 'mongocursorinterface::valid' => array ( 0 => 'bool', ), - 'MongoDB::__construct' => + 'mongodb::__construct' => array ( 0 => 'void', 'conn' => 'MongoClient', 'name' => 'string', ), - 'MongoDB::__get' => + 'mongodb::__get' => array ( 0 => 'MongoCollection', 'name' => 'string', ), - 'MongoDB::__toString' => + 'mongodb::__tostring' => array ( 0 => 'string', ), - 'MongoDB::authenticate' => + 'mongodb::authenticate' => array ( 0 => 'array', 'username' => 'string', 'password' => 'string', ), - 'MongoDB::command' => + 'mongodb::command' => array ( 0 => 'array', 'command' => 'array', ), - 'MongoDB::createCollection' => + 'mongodb::createcollection' => array ( 0 => 'MongoCollection', 'name' => 'string', @@ -18511,1875 +18511,1875 @@ 'size=' => 'int', 'max=' => 'int', ), - 'MongoDB::createDBRef' => + 'mongodb::createdbref' => array ( 0 => 'array', 'collection' => 'string', 'a' => 'mixed', ), - 'MongoDB::drop' => + 'mongodb::drop' => array ( 0 => 'array', ), - 'MongoDB::dropCollection' => + 'mongodb::dropcollection' => array ( 0 => 'array', 'coll' => 'MongoCollection|string', ), - 'MongoDB::execute' => + 'mongodb::execute' => array ( 0 => 'array', 'code' => 'MongoCode|string', 'args=' => 'array', ), - 'MongoDB::forceError' => + 'mongodb::forceerror' => array ( 0 => 'bool', ), - 'MongoDB::getCollectionInfo' => + 'mongodb::getcollectioninfo' => array ( 0 => 'array', 'options=' => 'array', ), - 'MongoDB::getCollectionNames' => + 'mongodb::getcollectionnames' => array ( 0 => 'array', 'options=' => 'array', ), - 'MongoDB::getDBRef' => + 'mongodb::getdbref' => array ( 0 => 'array', 'ref' => 'array', ), - 'MongoDB::getGridFS' => + 'mongodb::getgridfs' => array ( 0 => 'MongoGridFS', 'prefix=' => 'string', ), - 'MongoDB::getProfilingLevel' => + 'mongodb::getprofilinglevel' => array ( 0 => 'int', ), - 'MongoDB::getReadPreference' => + 'mongodb::getreadpreference' => array ( 0 => 'array', ), - 'MongoDB::getSlaveOkay' => + 'mongodb::getslaveokay' => array ( 0 => 'bool', ), - 'MongoDB::getWriteConcern' => + 'mongodb::getwriteconcern' => array ( 0 => 'array', ), - 'MongoDB::lastError' => + 'mongodb::lasterror' => array ( 0 => 'array', ), - 'MongoDB::listCollections' => + 'mongodb::listcollections' => array ( 0 => 'array', ), - 'MongoDB::prevError' => + 'mongodb::preverror' => array ( 0 => 'array', ), - 'MongoDB::repair' => + 'mongodb::repair' => array ( 0 => 'array', 'preserve_cloned_files=' => 'bool', 'backup_original_files=' => 'bool', ), - 'MongoDB::resetError' => + 'mongodb::reseterror' => array ( 0 => 'array', ), - 'MongoDB::selectCollection' => + 'mongodb::selectcollection' => array ( 0 => 'MongoCollection', 'name' => 'string', ), - 'MongoDB::setProfilingLevel' => + 'mongodb::setprofilinglevel' => array ( 0 => 'int', 'level' => 'int', ), - 'MongoDB::setReadPreference' => + 'mongodb::setreadpreference' => array ( 0 => 'bool', 'read_preference' => 'string', 'tags=' => 'array', ), - 'MongoDB::setSlaveOkay' => + 'mongodb::setslaveokay' => array ( 0 => 'bool', 'ok=' => 'bool', ), - 'MongoDB::setWriteConcern' => + 'mongodb::setwriteconcern' => array ( 0 => 'bool', 'w' => 'mixed', 'wtimeout=' => 'int', ), - 'MongoDBRef::create' => + 'mongodbref::create' => array ( 0 => 'array', 'collection' => 'string', 'id' => 'mixed', 'database=' => 'string', ), - 'MongoDBRef::get' => + 'mongodbref::get' => array ( 0 => 'array|null', 'db' => 'MongoDB', 'ref' => 'array', ), - 'MongoDBRef::isRef' => + 'mongodbref::isref' => array ( 0 => 'bool', 'ref' => 'mixed', ), - 'MongoDB\\BSON\\fromJSON' => + 'mongodb\\bson\\fromjson' => array ( 0 => 'string', 'json' => 'string', ), - 'MongoDB\\BSON\\fromPHP' => + 'mongodb\\bson\\fromphp' => array ( 0 => 'string', 'value' => 'array|object', ), - 'MongoDB\\BSON\\toCanonicalExtendedJSON' => + 'mongodb\\bson\\tocanonicalextendedjson' => array ( 0 => 'string', 'bson' => 'string', ), - 'MongoDB\\BSON\\toJSON' => + 'mongodb\\bson\\tojson' => array ( 0 => 'string', 'bson' => 'string', ), - 'MongoDB\\BSON\\toPHP' => + 'mongodb\\bson\\tophp' => array ( 0 => 'array|object', 'bson' => 'string', 'typemap=' => 'array|null', ), - 'MongoDB\\BSON\\toRelaxedExtendedJSON' => + 'mongodb\\bson\\torelaxedextendedjson' => array ( 0 => 'string', 'bson' => 'string', ), - 'MongoDB\\Driver\\Monitoring\\addSubscriber' => + 'mongodb\\driver\\monitoring\\addsubscriber' => array ( 0 => 'void', 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', ), - 'MongoDB\\Driver\\Monitoring\\removeSubscriber' => + 'mongodb\\driver\\monitoring\\removesubscriber' => array ( 0 => 'void', 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', ), - 'MongoDB\\BSON\\Binary::__construct' => + 'mongodb\\bson\\binary::__construct' => array ( 0 => 'void', 'data' => 'string', 'type=' => 'int', ), - 'MongoDB\\BSON\\Binary::getData' => + 'mongodb\\bson\\binary::getdata' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Binary::getType' => + 'mongodb\\bson\\binary::gettype' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\Binary::__toString' => + 'mongodb\\bson\\binary::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Binary::serialize' => + 'mongodb\\bson\\binary::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Binary::unserialize' => + 'mongodb\\bson\\binary::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Binary::jsonSerialize' => + 'mongodb\\bson\\binary::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\BinaryInterface::getData' => + 'mongodb\\bson\\binaryinterface::getdata' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\BinaryInterface::getType' => + 'mongodb\\bson\\binaryinterface::gettype' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\BinaryInterface::__toString' => + 'mongodb\\bson\\binaryinterface::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\DBPointer::__toString' => + 'mongodb\\bson\\dbpointer::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\DBPointer::serialize' => + 'mongodb\\bson\\dbpointer::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\DBPointer::unserialize' => + 'mongodb\\bson\\dbpointer::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\DBPointer::jsonSerialize' => + 'mongodb\\bson\\dbpointer::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\Decimal128::__construct' => + 'mongodb\\bson\\decimal128::__construct' => array ( 0 => 'void', 'value' => 'string', ), - 'MongoDB\\BSON\\Decimal128::__toString' => + 'mongodb\\bson\\decimal128::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Decimal128::serialize' => + 'mongodb\\bson\\decimal128::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Decimal128::unserialize' => + 'mongodb\\bson\\decimal128::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Decimal128::jsonSerialize' => + 'mongodb\\bson\\decimal128::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\Decimal128Interface::__toString' => + 'mongodb\\bson\\decimal128interface::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Document::fromBSON' => + 'mongodb\\bson\\document::frombson' => array ( 0 => 'MongoDB\\BSON\\Document', 'bson' => 'string', ), - 'MongoDB\\BSON\\Document::fromJSON' => + 'mongodb\\bson\\document::fromjson' => array ( 0 => 'MongoDB\\BSON\\Document', 'json' => 'string', ), - 'MongoDB\\BSON\\Document::fromPHP' => + 'mongodb\\bson\\document::fromphp' => array ( 0 => 'MongoDB\\BSON\\Document', 'value' => 'array|object', ), - 'MongoDB\\BSON\\Document::get' => + 'mongodb\\bson\\document::get' => array ( 0 => 'mixed', 'key' => 'string', ), - 'MongoDB\\BSON\\Document::getIterator' => + 'mongodb\\bson\\document::getiterator' => array ( 0 => 'MongoDB\\BSON\\Iterator', ), - 'MongoDB\\BSON\\Document::has' => + 'mongodb\\bson\\document::has' => array ( 0 => 'bool', 'key' => 'string', ), - 'MongoDB\\BSON\\Document::toPHP' => + 'mongodb\\bson\\document::tophp' => array ( 0 => 'array|object', 'typeMap=' => 'array|null', ), - 'MongoDB\\BSON\\Document::toCanonicalExtendedJSON' => + 'mongodb\\bson\\document::tocanonicalextendedjson' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Document::toRelaxedExtendedJSON' => + 'mongodb\\bson\\document::torelaxedextendedjson' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Document::offsetExists' => + 'mongodb\\bson\\document::offsetexists' => array ( 0 => 'bool', 'offset' => 'mixed', ), - 'MongoDB\\BSON\\Document::offsetGet' => + 'mongodb\\bson\\document::offsetget' => array ( 0 => 'mixed', 'offset' => 'mixed', ), - 'MongoDB\\BSON\\Document::offsetSet' => + 'mongodb\\bson\\document::offsetset' => array ( 0 => 'void', 'offset' => 'mixed', 'value' => 'mixed', ), - 'MongoDB\\BSON\\Document::offsetUnset' => + 'mongodb\\bson\\document::offsetunset' => array ( 0 => 'void', 'offset' => 'mixed', ), - 'MongoDB\\BSON\\Document::__toString' => + 'mongodb\\bson\\document::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Document::serialize' => + 'mongodb\\bson\\document::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Document::unserialize' => + 'mongodb\\bson\\document::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Int64::__construct' => + 'mongodb\\bson\\int64::__construct' => array ( 0 => 'void', 'value' => 'int|string', ), - 'MongoDB\\BSON\\Int64::__toString' => + 'mongodb\\bson\\int64::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Int64::serialize' => + 'mongodb\\bson\\int64::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Int64::unserialize' => + 'mongodb\\bson\\int64::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Int64::jsonSerialize' => + 'mongodb\\bson\\int64::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\Iterator::current' => + 'mongodb\\bson\\iterator::current' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\Iterator::key' => + 'mongodb\\bson\\iterator::key' => array ( 0 => 'int|string', ), - 'MongoDB\\BSON\\Iterator::next' => + 'mongodb\\bson\\iterator::next' => array ( 0 => 'void', ), - 'MongoDB\\BSON\\Iterator::rewind' => + 'mongodb\\bson\\iterator::rewind' => array ( 0 => 'void', ), - 'MongoDB\\BSON\\Iterator::valid' => + 'mongodb\\bson\\iterator::valid' => array ( 0 => 'bool', ), - 'MongoDB\\BSON\\Javascript::__construct' => + 'mongodb\\bson\\javascript::__construct' => array ( 0 => 'void', 'code' => 'string', 'scope=' => 'array|null|object', ), - 'MongoDB\\BSON\\Javascript::getCode' => + 'mongodb\\bson\\javascript::getcode' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Javascript::getScope' => + 'mongodb\\bson\\javascript::getscope' => array ( 0 => 'null|object', ), - 'MongoDB\\BSON\\Javascript::__toString' => + 'mongodb\\bson\\javascript::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Javascript::serialize' => + 'mongodb\\bson\\javascript::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Javascript::unserialize' => + 'mongodb\\bson\\javascript::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Javascript::jsonSerialize' => + 'mongodb\\bson\\javascript::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\JavascriptInterface::getCode' => + 'mongodb\\bson\\javascriptinterface::getcode' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\JavascriptInterface::getScope' => + 'mongodb\\bson\\javascriptinterface::getscope' => array ( 0 => 'null|object', ), - 'MongoDB\\BSON\\JavascriptInterface::__toString' => + 'mongodb\\bson\\javascriptinterface::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\MaxKey::serialize' => + 'mongodb\\bson\\maxkey::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\MaxKey::unserialize' => + 'mongodb\\bson\\maxkey::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\MaxKey::jsonSerialize' => + 'mongodb\\bson\\maxkey::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\MinKey::serialize' => + 'mongodb\\bson\\minkey::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\MinKey::unserialize' => + 'mongodb\\bson\\minkey::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\MinKey::jsonSerialize' => + 'mongodb\\bson\\minkey::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\ObjectId::__construct' => + 'mongodb\\bson\\objectid::__construct' => array ( 0 => 'void', 'id=' => 'null|string', ), - 'MongoDB\\BSON\\ObjectId::getTimestamp' => + 'mongodb\\bson\\objectid::gettimestamp' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\ObjectId::__toString' => + 'mongodb\\bson\\objectid::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\ObjectId::serialize' => + 'mongodb\\bson\\objectid::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\ObjectId::unserialize' => + 'mongodb\\bson\\objectid::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\ObjectId::jsonSerialize' => + 'mongodb\\bson\\objectid::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\ObjectIdInterface::getTimestamp' => + 'mongodb\\bson\\objectidinterface::gettimestamp' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\ObjectIdInterface::__toString' => + 'mongodb\\bson\\objectidinterface::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\PackedArray::fromPHP' => + 'mongodb\\bson\\packedarray::fromphp' => array ( 0 => 'MongoDB\\BSON\\PackedArray', 'value' => 'array', ), - 'MongoDB\\BSON\\PackedArray::get' => + 'mongodb\\bson\\packedarray::get' => array ( 0 => 'mixed', 'index' => 'int', ), - 'MongoDB\\BSON\\PackedArray::getIterator' => + 'mongodb\\bson\\packedarray::getiterator' => array ( 0 => 'MongoDB\\BSON\\Iterator', ), - 'MongoDB\\BSON\\PackedArray::has' => + 'mongodb\\bson\\packedarray::has' => array ( 0 => 'bool', 'index' => 'int', ), - 'MongoDB\\BSON\\PackedArray::toPHP' => + 'mongodb\\bson\\packedarray::tophp' => array ( 0 => 'array|object', 'typeMap=' => 'array|null', ), - 'MongoDB\\BSON\\PackedArray::offsetExists' => + 'mongodb\\bson\\packedarray::offsetexists' => array ( 0 => 'bool', 'offset' => 'mixed', ), - 'MongoDB\\BSON\\PackedArray::offsetGet' => + 'mongodb\\bson\\packedarray::offsetget' => array ( 0 => 'mixed', 'offset' => 'mixed', ), - 'MongoDB\\BSON\\PackedArray::offsetSet' => + 'mongodb\\bson\\packedarray::offsetset' => array ( 0 => 'void', 'offset' => 'mixed', 'value' => 'mixed', ), - 'MongoDB\\BSON\\PackedArray::offsetUnset' => + 'mongodb\\bson\\packedarray::offsetunset' => array ( 0 => 'void', 'offset' => 'mixed', ), - 'MongoDB\\BSON\\PackedArray::__toString' => + 'mongodb\\bson\\packedarray::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\PackedArray::serialize' => + 'mongodb\\bson\\packedarray::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\PackedArray::unserialize' => + 'mongodb\\bson\\packedarray::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Persistable::bsonSerialize' => + 'mongodb\\bson\\persistable::bsonserialize' => array ( 0 => 'MongoDB\\BSON\\Document|array|stdClass', ), - 'MongoDB\\BSON\\Regex::__construct' => + 'mongodb\\bson\\regex::__construct' => array ( 0 => 'void', 'pattern' => 'string', 'flags=' => 'string', ), - 'MongoDB\\BSON\\Regex::getPattern' => + 'mongodb\\bson\\regex::getpattern' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Regex::getFlags' => + 'mongodb\\bson\\regex::getflags' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Regex::__toString' => + 'mongodb\\bson\\regex::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Regex::serialize' => + 'mongodb\\bson\\regex::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Regex::unserialize' => + 'mongodb\\bson\\regex::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Regex::jsonSerialize' => + 'mongodb\\bson\\regex::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\RegexInterface::getPattern' => + 'mongodb\\bson\\regexinterface::getpattern' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\RegexInterface::getFlags' => + 'mongodb\\bson\\regexinterface::getflags' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\RegexInterface::__toString' => + 'mongodb\\bson\\regexinterface::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Serializable::bsonSerialize' => + 'mongodb\\bson\\serializable::bsonserialize' => array ( 0 => 'MongoDB\\BSON\\Document|MongoDB\\BSON\\PackedArray|array|stdClass', ), - 'MongoDB\\BSON\\Symbol::__toString' => + 'mongodb\\bson\\symbol::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Symbol::serialize' => + 'mongodb\\bson\\symbol::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Symbol::unserialize' => + 'mongodb\\bson\\symbol::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Symbol::jsonSerialize' => + 'mongodb\\bson\\symbol::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\Timestamp::__construct' => + 'mongodb\\bson\\timestamp::__construct' => array ( 0 => 'void', 'increment' => 'int|string', 'timestamp' => 'int|string', ), - 'MongoDB\\BSON\\Timestamp::getTimestamp' => + 'mongodb\\bson\\timestamp::gettimestamp' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\Timestamp::getIncrement' => + 'mongodb\\bson\\timestamp::getincrement' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\Timestamp::__toString' => + 'mongodb\\bson\\timestamp::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Timestamp::serialize' => + 'mongodb\\bson\\timestamp::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Timestamp::unserialize' => + 'mongodb\\bson\\timestamp::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Timestamp::jsonSerialize' => + 'mongodb\\bson\\timestamp::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\TimestampInterface::getTimestamp' => + 'mongodb\\bson\\timestampinterface::gettimestamp' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\TimestampInterface::getIncrement' => + 'mongodb\\bson\\timestampinterface::getincrement' => array ( 0 => 'int', ), - 'MongoDB\\BSON\\TimestampInterface::__toString' => + 'mongodb\\bson\\timestampinterface::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\UTCDateTime::__construct' => + 'mongodb\\bson\\utcdatetime::__construct' => array ( 0 => 'void', 'milliseconds=' => 'DateTimeInterface|float|int|null|string', ), - 'MongoDB\\BSON\\UTCDateTime::toDateTime' => + 'mongodb\\bson\\utcdatetime::todatetime' => array ( 0 => 'DateTime', ), - 'MongoDB\\BSON\\UTCDateTime::__toString' => + 'mongodb\\bson\\utcdatetime::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\UTCDateTime::serialize' => + 'mongodb\\bson\\utcdatetime::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\UTCDateTime::unserialize' => + 'mongodb\\bson\\utcdatetime::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\UTCDateTime::jsonSerialize' => + 'mongodb\\bson\\utcdatetime::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\UTCDateTimeInterface::toDateTime' => + 'mongodb\\bson\\utcdatetimeinterface::todatetime' => array ( 0 => 'DateTime', ), - 'MongoDB\\BSON\\UTCDateTimeInterface::__toString' => + 'mongodb\\bson\\utcdatetimeinterface::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Undefined::__toString' => + 'mongodb\\bson\\undefined::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Undefined::serialize' => + 'mongodb\\bson\\undefined::serialize' => array ( 0 => 'string', ), - 'MongoDB\\BSON\\Undefined::unserialize' => + 'mongodb\\bson\\undefined::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\BSON\\Undefined::jsonSerialize' => + 'mongodb\\bson\\undefined::jsonserialize' => array ( 0 => 'mixed', ), - 'MongoDB\\BSON\\Unserializable::bsonUnserialize' => + 'mongodb\\bson\\unserializable::bsonunserialize' => array ( 0 => 'void', 'data' => 'array', ), - 'MongoDB\\Driver\\BulkWrite::__construct' => + 'mongodb\\driver\\bulkwrite::__construct' => array ( 0 => 'void', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\BulkWrite::count' => + 'mongodb\\driver\\bulkwrite::count' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\BulkWrite::delete' => + 'mongodb\\driver\\bulkwrite::delete' => array ( 0 => 'void', 'filter' => 'array|object', 'deleteOptions=' => 'array|null', ), - 'MongoDB\\Driver\\BulkWrite::insert' => + 'mongodb\\driver\\bulkwrite::insert' => array ( 0 => 'mixed', 'document' => 'array|object', ), - 'MongoDB\\Driver\\BulkWrite::update' => + 'mongodb\\driver\\bulkwrite::update' => array ( 0 => 'void', 'filter' => 'array|object', 'newObj' => 'array|object', 'updateOptions=' => 'array|null', ), - 'MongoDB\\Driver\\ClientEncryption::__construct' => + 'mongodb\\driver\\clientencryption::__construct' => array ( 0 => 'void', 'options' => 'array', ), - 'MongoDB\\Driver\\ClientEncryption::addKeyAltName' => + 'mongodb\\driver\\clientencryption::addkeyaltname' => array ( 0 => 'null|object', 'keyId' => 'MongoDB\\BSON\\Binary', 'keyAltName' => 'string', ), - 'MongoDB\\Driver\\ClientEncryption::createDataKey' => + 'mongodb\\driver\\clientencryption::createdatakey' => array ( 0 => 'MongoDB\\BSON\\Binary', 'kmsProvider' => 'string', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\ClientEncryption::decrypt' => + 'mongodb\\driver\\clientencryption::decrypt' => array ( 0 => 'mixed', 'value' => 'MongoDB\\BSON\\Binary', ), - 'MongoDB\\Driver\\ClientEncryption::deleteKey' => + 'mongodb\\driver\\clientencryption::deletekey' => array ( 0 => 'object', 'keyId' => 'MongoDB\\BSON\\Binary', ), - 'MongoDB\\Driver\\ClientEncryption::encrypt' => + 'mongodb\\driver\\clientencryption::encrypt' => array ( 0 => 'MongoDB\\BSON\\Binary', 'value' => 'mixed', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\ClientEncryption::encryptExpression' => + 'mongodb\\driver\\clientencryption::encryptexpression' => array ( 0 => 'object', 'expr' => 'array|object', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\ClientEncryption::getKey' => + 'mongodb\\driver\\clientencryption::getkey' => array ( 0 => 'null|object', 'keyId' => 'MongoDB\\BSON\\Binary', ), - 'MongoDB\\Driver\\ClientEncryption::getKeyByAltName' => + 'mongodb\\driver\\clientencryption::getkeybyaltname' => array ( 0 => 'null|object', 'keyAltName' => 'string', ), - 'MongoDB\\Driver\\ClientEncryption::getKeys' => + 'mongodb\\driver\\clientencryption::getkeys' => array ( 0 => 'MongoDB\\Driver\\Cursor', ), - 'MongoDB\\Driver\\ClientEncryption::removeKeyAltName' => + 'mongodb\\driver\\clientencryption::removekeyaltname' => array ( 0 => 'null|object', 'keyId' => 'MongoDB\\BSON\\Binary', 'keyAltName' => 'string', ), - 'MongoDB\\Driver\\ClientEncryption::rewrapManyDataKey' => + 'mongodb\\driver\\clientencryption::rewrapmanydatakey' => array ( 0 => 'object', 'filter' => 'array|object', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Command::__construct' => + 'mongodb\\driver\\command::__construct' => array ( 0 => 'void', 'document' => 'array|object', 'commandOptions=' => 'array|null', ), - 'MongoDB\\Driver\\Cursor::current' => + 'mongodb\\driver\\cursor::current' => array ( 0 => 'array|null|object', ), - 'MongoDB\\Driver\\Cursor::getId' => + 'mongodb\\driver\\cursor::getid' => array ( 0 => 'MongoDB\\Driver\\CursorId', ), - 'MongoDB\\Driver\\Cursor::getServer' => + 'mongodb\\driver\\cursor::getserver' => array ( 0 => 'MongoDB\\Driver\\Server', ), - 'MongoDB\\Driver\\Cursor::isDead' => + 'mongodb\\driver\\cursor::isdead' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Cursor::key' => + 'mongodb\\driver\\cursor::key' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\Cursor::next' => + 'mongodb\\driver\\cursor::next' => array ( 0 => 'void', ), - 'MongoDB\\Driver\\Cursor::rewind' => + 'mongodb\\driver\\cursor::rewind' => array ( 0 => 'void', ), - 'MongoDB\\Driver\\Cursor::setTypeMap' => + 'mongodb\\driver\\cursor::settypemap' => array ( 0 => 'void', 'typemap' => 'array', ), - 'MongoDB\\Driver\\Cursor::toArray' => + 'mongodb\\driver\\cursor::toarray' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\Cursor::valid' => + 'mongodb\\driver\\cursor::valid' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\CursorId::__toString' => + 'mongodb\\driver\\cursorid::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\CursorId::serialize' => + 'mongodb\\driver\\cursorid::serialize' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\CursorId::unserialize' => + 'mongodb\\driver\\cursorid::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\Driver\\CursorInterface::getId' => + 'mongodb\\driver\\cursorinterface::getid' => array ( 0 => 'MongoDB\\Driver\\CursorId', ), - 'MongoDB\\Driver\\CursorInterface::getServer' => + 'mongodb\\driver\\cursorinterface::getserver' => array ( 0 => 'MongoDB\\Driver\\Server', ), - 'MongoDB\\Driver\\CursorInterface::isDead' => + 'mongodb\\driver\\cursorinterface::isdead' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\CursorInterface::setTypeMap' => + 'mongodb\\driver\\cursorinterface::settypemap' => array ( 0 => 'void', 'typemap' => 'array', ), - 'MongoDB\\Driver\\CursorInterface::toArray' => + 'mongodb\\driver\\cursorinterface::toarray' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\Exception\\AuthenticationException::__toString' => + 'mongodb\\driver\\exception\\authenticationexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\BulkWriteException::__toString' => + 'mongodb\\driver\\exception\\bulkwriteexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\CommandException::getResultDocument' => + 'mongodb\\driver\\exception\\commandexception::getresultdocument' => array ( 0 => 'object', ), - 'MongoDB\\Driver\\Exception\\CommandException::__toString' => + 'mongodb\\driver\\exception\\commandexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\ConnectionException::__toString' => + 'mongodb\\driver\\exception\\connectionexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\ConnectionTimeoutException::__toString' => + 'mongodb\\driver\\exception\\connectiontimeoutexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\EncryptionException::__toString' => + 'mongodb\\driver\\exception\\encryptionexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\Exception::__toString' => + 'mongodb\\driver\\exception\\exception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\ExecutionTimeoutException::__toString' => + 'mongodb\\driver\\exception\\executiontimeoutexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\InvalidArgumentException::__toString' => + 'mongodb\\driver\\exception\\invalidargumentexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\LogicException::__toString' => + 'mongodb\\driver\\exception\\logicexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\RuntimeException::hasErrorLabel' => + 'mongodb\\driver\\exception\\runtimeexception::haserrorlabel' => array ( 0 => 'bool', 'errorLabel' => 'string', ), - 'MongoDB\\Driver\\Exception\\RuntimeException::__toString' => + 'mongodb\\driver\\exception\\runtimeexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\SSLConnectionException::__toString' => + 'mongodb\\driver\\exception\\sslconnectionexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\ServerException::__toString' => + 'mongodb\\driver\\exception\\serverexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\UnexpectedValueException::__toString' => + 'mongodb\\driver\\exception\\unexpectedvalueexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Exception\\WriteException::getWriteResult' => + 'mongodb\\driver\\exception\\writeexception::getwriteresult' => array ( 0 => 'MongoDB\\Driver\\WriteResult', ), - 'MongoDB\\Driver\\Exception\\WriteException::__toString' => + 'mongodb\\driver\\exception\\writeexception::__tostring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Manager::__construct' => + 'mongodb\\driver\\manager::__construct' => array ( 0 => 'void', 'uri=' => 'null|string', 'uriOptions=' => 'array|null', 'driverOptions=' => 'array|null', ), - 'MongoDB\\Driver\\Manager::addSubscriber' => + 'mongodb\\driver\\manager::addsubscriber' => array ( 0 => 'void', 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', ), - 'MongoDB\\Driver\\Manager::createClientEncryption' => + 'mongodb\\driver\\manager::createclientencryption' => array ( 0 => 'MongoDB\\Driver\\ClientEncryption', 'options' => 'array', ), - 'MongoDB\\Driver\\Manager::executeBulkWrite' => + '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' => + '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' => + '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' => + 'mongodb\\driver\\manager::executereadcommand' => array ( 0 => 'MongoDB\\Driver\\Cursor', 'db' => 'string', 'command' => 'MongoDB\\Driver\\Command', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Manager::executeReadWriteCommand' => + 'mongodb\\driver\\manager::executereadwritecommand' => array ( 0 => 'MongoDB\\Driver\\Cursor', 'db' => 'string', 'command' => 'MongoDB\\Driver\\Command', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Manager::executeWriteCommand' => + 'mongodb\\driver\\manager::executewritecommand' => array ( 0 => 'MongoDB\\Driver\\Cursor', 'db' => 'string', 'command' => 'MongoDB\\Driver\\Command', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Manager::getEncryptedFieldsMap' => + 'mongodb\\driver\\manager::getencryptedfieldsmap' => array ( 0 => 'array|null|object', ), - 'MongoDB\\Driver\\Manager::getReadConcern' => + 'mongodb\\driver\\manager::getreadconcern' => array ( 0 => 'MongoDB\\Driver\\ReadConcern', ), - 'MongoDB\\Driver\\Manager::getReadPreference' => + 'mongodb\\driver\\manager::getreadpreference' => array ( 0 => 'MongoDB\\Driver\\ReadPreference', ), - 'MongoDB\\Driver\\Manager::getServers' => + 'mongodb\\driver\\manager::getservers' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\Manager::getWriteConcern' => + 'mongodb\\driver\\manager::getwriteconcern' => array ( 0 => 'MongoDB\\Driver\\WriteConcern', ), - 'MongoDB\\Driver\\Manager::removeSubscriber' => + 'mongodb\\driver\\manager::removesubscriber' => array ( 0 => 'void', 'subscriber' => 'MongoDB\\Driver\\Monitoring\\Subscriber', ), - 'MongoDB\\Driver\\Manager::selectServer' => + 'mongodb\\driver\\manager::selectserver' => array ( 0 => 'MongoDB\\Driver\\Server', 'readPreference=' => 'MongoDB\\Driver\\ReadPreference|null', ), - 'MongoDB\\Driver\\Manager::startSession' => + 'mongodb\\driver\\manager::startsession' => array ( 0 => 'MongoDB\\Driver\\Session', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getCommandName' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getcommandname' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getDurationMicros' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getdurationmicros' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getError' => + 'mongodb\\driver\\monitoring\\commandfailedevent::geterror' => array ( 0 => 'Exception', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getOperationId' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getoperationid' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getReply' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getreply' => array ( 0 => 'object', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getRequestId' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getrequestid' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getServer' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getserver' => array ( 0 => 'MongoDB\\Driver\\Server', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getServiceId' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getserviceid' => array ( 0 => 'MongoDB\\BSON\\ObjectId|null', ), - 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent::getServerConnectionId' => + 'mongodb\\driver\\monitoring\\commandfailedevent::getserverconnectionid' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getCommand' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getcommand' => array ( 0 => 'object', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getCommandName' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getcommandname' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getDatabaseName' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getdatabasename' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getOperationId' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getoperationid' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getRequestId' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getrequestid' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getServer' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getserver' => array ( 0 => 'MongoDB\\Driver\\Server', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getServiceId' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getserviceid' => array ( 0 => 'MongoDB\\BSON\\ObjectId|null', ), - 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent::getServerConnectionId' => + 'mongodb\\driver\\monitoring\\commandstartedevent::getserverconnectionid' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\Monitoring\\CommandSubscriber::commandStarted' => + 'mongodb\\driver\\monitoring\\commandsubscriber::commandstarted' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\CommandStartedEvent', ), - 'MongoDB\\Driver\\Monitoring\\CommandSubscriber::commandSucceeded' => + 'mongodb\\driver\\monitoring\\commandsubscriber::commandsucceeded' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent', ), - 'MongoDB\\Driver\\Monitoring\\CommandSubscriber::commandFailed' => + 'mongodb\\driver\\monitoring\\commandsubscriber::commandfailed' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\CommandFailedEvent', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getCommandName' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getcommandname' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getDurationMicros' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getdurationmicros' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getOperationId' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getoperationid' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getReply' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getreply' => array ( 0 => 'object', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getRequestId' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getrequestid' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getServer' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getserver' => array ( 0 => 'MongoDB\\Driver\\Server', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getServiceId' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getserviceid' => array ( 0 => 'MongoDB\\BSON\\ObjectId|null', ), - 'MongoDB\\Driver\\Monitoring\\CommandSucceededEvent::getServerConnectionId' => + 'mongodb\\driver\\monitoring\\commandsucceededevent::getserverconnectionid' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\Monitoring\\LogSubscriber::log' => + 'mongodb\\driver\\monitoring\\logsubscriber::log' => array ( 0 => 'void', 'level' => 'int', 'domain' => 'string', 'message' => 'string', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverChanged' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::serverchanged' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverClosed' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::serverclosed' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverOpening' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::serveropening' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverHeartbeatFailed' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::serverheartbeatfailed' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverHeartbeatStarted' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::serverheartbeatstarted' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::serverHeartbeatSucceeded' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::serverheartbeatsucceeded' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::topologyChanged' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::topologychanged' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::topologyClosed' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::topologyclosed' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\TopologyClosedEvent', ), - 'MongoDB\\Driver\\Monitoring\\SDAMSubscriber::topologyOpening' => + 'mongodb\\driver\\monitoring\\sdamsubscriber::topologyopening' => array ( 0 => 'void', 'event' => 'MongoDB\\Driver\\Monitoring\\TopologyOpeningEvent', ), - 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getPort' => + 'mongodb\\driver\\monitoring\\serverchangedevent::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getHost' => + 'mongodb\\driver\\monitoring\\serverchangedevent::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getNewDescription' => + 'mongodb\\driver\\monitoring\\serverchangedevent::getnewdescription' => array ( 0 => 'MongoDB\\Driver\\ServerDescription', ), - 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getPreviousDescription' => + 'mongodb\\driver\\monitoring\\serverchangedevent::getpreviousdescription' => array ( 0 => 'MongoDB\\Driver\\ServerDescription', ), - 'MongoDB\\Driver\\Monitoring\\ServerChangedEvent::getTopologyId' => + 'mongodb\\driver\\monitoring\\serverchangedevent::gettopologyid' => array ( 0 => 'MongoDB\\BSON\\ObjectId', ), - 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent::getPort' => + 'mongodb\\driver\\monitoring\\serverclosedevent::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent::getHost' => + 'mongodb\\driver\\monitoring\\serverclosedevent::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\ServerClosedEvent::getTopologyId' => + 'mongodb\\driver\\monitoring\\serverclosedevent::gettopologyid' => array ( 0 => 'MongoDB\\BSON\\ObjectId', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getDurationMicros' => + 'mongodb\\driver\\monitoring\\serverheartbeatfailedevent::getdurationmicros' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getError' => + 'mongodb\\driver\\monitoring\\serverheartbeatfailedevent::geterror' => array ( 0 => 'Exception', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getPort' => + 'mongodb\\driver\\monitoring\\serverheartbeatfailedevent::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::getHost' => + 'mongodb\\driver\\monitoring\\serverheartbeatfailedevent::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatFailedEvent::isAwaited' => + 'mongodb\\driver\\monitoring\\serverheartbeatfailedevent::isawaited' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent::getPort' => + 'mongodb\\driver\\monitoring\\serverheartbeatstartedevent::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent::getHost' => + 'mongodb\\driver\\monitoring\\serverheartbeatstartedevent::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatStartedEvent::isAwaited' => + 'mongodb\\driver\\monitoring\\serverheartbeatstartedevent::isawaited' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getDurationMicros' => + 'mongodb\\driver\\monitoring\\serverheartbeatsucceededevent::getdurationmicros' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getReply' => + 'mongodb\\driver\\monitoring\\serverheartbeatsucceededevent::getreply' => array ( 0 => 'object', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getPort' => + 'mongodb\\driver\\monitoring\\serverheartbeatsucceededevent::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::getHost' => + 'mongodb\\driver\\monitoring\\serverheartbeatsucceededevent::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\ServerHeartbeatSucceededEvent::isAwaited' => + 'mongodb\\driver\\monitoring\\serverheartbeatsucceededevent::isawaited' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent::getPort' => + 'mongodb\\driver\\monitoring\\serveropeningevent::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent::getHost' => + 'mongodb\\driver\\monitoring\\serveropeningevent::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Monitoring\\ServerOpeningEvent::getTopologyId' => + 'mongodb\\driver\\monitoring\\serveropeningevent::gettopologyid' => array ( 0 => 'MongoDB\\BSON\\ObjectId', ), - 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent::getNewDescription' => + 'mongodb\\driver\\monitoring\\topologychangedevent::getnewdescription' => array ( 0 => 'MongoDB\\Driver\\TopologyDescription', ), - 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent::getPreviousDescription' => + 'mongodb\\driver\\monitoring\\topologychangedevent::getpreviousdescription' => array ( 0 => 'MongoDB\\Driver\\TopologyDescription', ), - 'MongoDB\\Driver\\Monitoring\\TopologyChangedEvent::getTopologyId' => + 'mongodb\\driver\\monitoring\\topologychangedevent::gettopologyid' => array ( 0 => 'MongoDB\\BSON\\ObjectId', ), - 'MongoDB\\Driver\\Monitoring\\TopologyClosedEvent::getTopologyId' => + 'mongodb\\driver\\monitoring\\topologyclosedevent::gettopologyid' => array ( 0 => 'MongoDB\\BSON\\ObjectId', ), - 'MongoDB\\Driver\\Monitoring\\TopologyOpeningEvent::getTopologyId' => + 'mongodb\\driver\\monitoring\\topologyopeningevent::gettopologyid' => array ( 0 => 'MongoDB\\BSON\\ObjectId', ), - 'MongoDB\\Driver\\Query::__construct' => + 'mongodb\\driver\\query::__construct' => array ( 0 => 'void', 'filter' => 'array|object', 'queryOptions=' => 'array|null', ), - 'MongoDB\\Driver\\ReadConcern::__construct' => + 'mongodb\\driver\\readconcern::__construct' => array ( 0 => 'void', 'level=' => 'null|string', ), - 'MongoDB\\Driver\\ReadConcern::getLevel' => + 'mongodb\\driver\\readconcern::getlevel' => array ( 0 => 'null|string', ), - 'MongoDB\\Driver\\ReadConcern::isDefault' => + 'mongodb\\driver\\readconcern::isdefault' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\ReadConcern::bsonSerialize' => + 'mongodb\\driver\\readconcern::bsonserialize' => array ( 0 => 'stdClass', ), - 'MongoDB\\Driver\\ReadConcern::serialize' => + 'mongodb\\driver\\readconcern::serialize' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\ReadConcern::unserialize' => + 'mongodb\\driver\\readconcern::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\Driver\\ReadPreference::__construct' => + 'mongodb\\driver\\readpreference::__construct' => array ( 0 => 'void', 'mode' => 'int|string', 'tagSets=' => 'array|null', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\ReadPreference::getHedge' => + 'mongodb\\driver\\readpreference::gethedge' => array ( 0 => 'null|object', ), - 'MongoDB\\Driver\\ReadPreference::getMaxStalenessSeconds' => + 'mongodb\\driver\\readpreference::getmaxstalenessseconds' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\ReadPreference::getMode' => + 'mongodb\\driver\\readpreference::getmode' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\ReadPreference::getModeString' => + 'mongodb\\driver\\readpreference::getmodestring' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\ReadPreference::getTagSets' => + 'mongodb\\driver\\readpreference::gettagsets' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\ReadPreference::bsonSerialize' => + 'mongodb\\driver\\readpreference::bsonserialize' => array ( 0 => 'stdClass', ), - 'MongoDB\\Driver\\ReadPreference::serialize' => + 'mongodb\\driver\\readpreference::serialize' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\ReadPreference::unserialize' => + 'mongodb\\driver\\readpreference::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\Driver\\Server::executeBulkWrite' => + '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' => + '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' => + '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' => + 'mongodb\\driver\\server::executereadcommand' => array ( 0 => 'MongoDB\\Driver\\Cursor', 'db' => 'string', 'command' => 'MongoDB\\Driver\\Command', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Server::executeReadWriteCommand' => + 'mongodb\\driver\\server::executereadwritecommand' => array ( 0 => 'MongoDB\\Driver\\Cursor', 'db' => 'string', 'command' => 'MongoDB\\Driver\\Command', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Server::executeWriteCommand' => + 'mongodb\\driver\\server::executewritecommand' => array ( 0 => 'MongoDB\\Driver\\Cursor', 'db' => 'string', 'command' => 'MongoDB\\Driver\\Command', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\Server::getHost' => + 'mongodb\\driver\\server::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Server::getInfo' => + 'mongodb\\driver\\server::getinfo' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\Server::getLatency' => + 'mongodb\\driver\\server::getlatency' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\Server::getPort' => + 'mongodb\\driver\\server::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Server::getServerDescription' => + 'mongodb\\driver\\server::getserverdescription' => array ( 0 => 'MongoDB\\Driver\\ServerDescription', ), - 'MongoDB\\Driver\\Server::getTags' => + 'mongodb\\driver\\server::gettags' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\Server::getType' => + 'mongodb\\driver\\server::gettype' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\Server::isArbiter' => + 'mongodb\\driver\\server::isarbiter' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Server::isHidden' => + 'mongodb\\driver\\server::ishidden' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Server::isPassive' => + 'mongodb\\driver\\server::ispassive' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Server::isPrimary' => + 'mongodb\\driver\\server::isprimary' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Server::isSecondary' => + 'mongodb\\driver\\server::issecondary' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\ServerApi::__construct' => + 'mongodb\\driver\\serverapi::__construct' => array ( 0 => 'void', 'version' => 'string', 'strict=' => 'bool|null', 'deprecationErrors=' => 'bool|null', ), - 'MongoDB\\Driver\\ServerApi::bsonSerialize' => + 'mongodb\\driver\\serverapi::bsonserialize' => array ( 0 => 'stdClass', ), - 'MongoDB\\Driver\\ServerApi::serialize' => + 'mongodb\\driver\\serverapi::serialize' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\ServerApi::unserialize' => + 'mongodb\\driver\\serverapi::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\Driver\\ServerDescription::getHelloResponse' => + 'mongodb\\driver\\serverdescription::gethelloresponse' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\ServerDescription::getHost' => + 'mongodb\\driver\\serverdescription::gethost' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\ServerDescription::getLastUpdateTime' => + 'mongodb\\driver\\serverdescription::getlastupdatetime' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\ServerDescription::getPort' => + 'mongodb\\driver\\serverdescription::getport' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\ServerDescription::getRoundTripTime' => + 'mongodb\\driver\\serverdescription::getroundtriptime' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\ServerDescription::getType' => + 'mongodb\\driver\\serverdescription::gettype' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Session::abortTransaction' => + 'mongodb\\driver\\session::aborttransaction' => array ( 0 => 'void', ), - 'MongoDB\\Driver\\Session::advanceClusterTime' => + 'mongodb\\driver\\session::advanceclustertime' => array ( 0 => 'void', 'clusterTime' => 'array|object', ), - 'MongoDB\\Driver\\Session::advanceOperationTime' => + 'mongodb\\driver\\session::advanceoperationtime' => array ( 0 => 'void', 'operationTime' => 'MongoDB\\BSON\\TimestampInterface', ), - 'MongoDB\\Driver\\Session::commitTransaction' => + 'mongodb\\driver\\session::committransaction' => array ( 0 => 'void', ), - 'MongoDB\\Driver\\Session::endSession' => + 'mongodb\\driver\\session::endsession' => array ( 0 => 'void', ), - 'MongoDB\\Driver\\Session::getClusterTime' => + 'mongodb\\driver\\session::getclustertime' => array ( 0 => 'null|object', ), - 'MongoDB\\Driver\\Session::getLogicalSessionId' => + 'mongodb\\driver\\session::getlogicalsessionid' => array ( 0 => 'object', ), - 'MongoDB\\Driver\\Session::getOperationTime' => + 'mongodb\\driver\\session::getoperationtime' => array ( 0 => 'MongoDB\\BSON\\Timestamp|null', ), - 'MongoDB\\Driver\\Session::getServer' => + 'mongodb\\driver\\session::getserver' => array ( 0 => 'MongoDB\\Driver\\Server|null', ), - 'MongoDB\\Driver\\Session::getTransactionOptions' => + 'mongodb\\driver\\session::gettransactionoptions' => array ( 0 => 'array|null', ), - 'MongoDB\\Driver\\Session::getTransactionState' => + 'mongodb\\driver\\session::gettransactionstate' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\Session::isDirty' => + 'mongodb\\driver\\session::isdirty' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Session::isInTransaction' => + 'mongodb\\driver\\session::isintransaction' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\Session::startTransaction' => + 'mongodb\\driver\\session::starttransaction' => array ( 0 => 'void', 'options=' => 'array|null', ), - 'MongoDB\\Driver\\TopologyDescription::getServers' => + 'mongodb\\driver\\topologydescription::getservers' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\TopologyDescription::getType' => + 'mongodb\\driver\\topologydescription::gettype' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\TopologyDescription::hasReadableServer' => + 'mongodb\\driver\\topologydescription::hasreadableserver' => array ( 0 => 'bool', 'readPreference=' => 'MongoDB\\Driver\\ReadPreference|null', ), - 'MongoDB\\Driver\\TopologyDescription::hasWritableServer' => + 'mongodb\\driver\\topologydescription::haswritableserver' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\WriteConcern::__construct' => + 'mongodb\\driver\\writeconcern::__construct' => array ( 0 => 'void', 'w' => 'int|string', 'wtimeout=' => 'int|null', 'journal=' => 'bool|null', ), - 'MongoDB\\Driver\\WriteConcern::getJournal' => + 'mongodb\\driver\\writeconcern::getjournal' => array ( 0 => 'bool|null', ), - 'MongoDB\\Driver\\WriteConcern::getW' => + 'mongodb\\driver\\writeconcern::getw' => array ( 0 => 'int|null|string', ), - 'MongoDB\\Driver\\WriteConcern::getWtimeout' => + 'mongodb\\driver\\writeconcern::getwtimeout' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\WriteConcern::isDefault' => + 'mongodb\\driver\\writeconcern::isdefault' => array ( 0 => 'bool', ), - 'MongoDB\\Driver\\WriteConcern::bsonSerialize' => + 'mongodb\\driver\\writeconcern::bsonserialize' => array ( 0 => 'stdClass', ), - 'MongoDB\\Driver\\WriteConcern::serialize' => + 'mongodb\\driver\\writeconcern::serialize' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\WriteConcern::unserialize' => + 'mongodb\\driver\\writeconcern::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'MongoDB\\Driver\\WriteConcernError::getCode' => + 'mongodb\\driver\\writeconcernerror::getcode' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\WriteConcernError::getInfo' => + 'mongodb\\driver\\writeconcernerror::getinfo' => array ( 0 => 'null|object', ), - 'MongoDB\\Driver\\WriteConcernError::getMessage' => + 'mongodb\\driver\\writeconcernerror::getmessage' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\WriteError::getCode' => + 'mongodb\\driver\\writeerror::getcode' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\WriteError::getIndex' => + 'mongodb\\driver\\writeerror::getindex' => array ( 0 => 'int', ), - 'MongoDB\\Driver\\WriteError::getInfo' => + 'mongodb\\driver\\writeerror::getinfo' => array ( 0 => 'null|object', ), - 'MongoDB\\Driver\\WriteError::getMessage' => + 'mongodb\\driver\\writeerror::getmessage' => array ( 0 => 'string', ), - 'MongoDB\\Driver\\WriteResult::getInsertedCount' => + 'mongodb\\driver\\writeresult::getinsertedcount' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\WriteResult::getMatchedCount' => + 'mongodb\\driver\\writeresult::getmatchedcount' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\WriteResult::getModifiedCount' => + 'mongodb\\driver\\writeresult::getmodifiedcount' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\WriteResult::getDeletedCount' => + 'mongodb\\driver\\writeresult::getdeletedcount' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\WriteResult::getUpsertedCount' => + 'mongodb\\driver\\writeresult::getupsertedcount' => array ( 0 => 'int|null', ), - 'MongoDB\\Driver\\WriteResult::getServer' => + 'mongodb\\driver\\writeresult::getserver' => array ( 0 => 'MongoDB\\Driver\\Server', ), - 'MongoDB\\Driver\\WriteResult::getUpsertedIds' => + 'mongodb\\driver\\writeresult::getupsertedids' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\WriteResult::getWriteConcernError' => + 'mongodb\\driver\\writeresult::getwriteconcernerror' => array ( 0 => 'MongoDB\\Driver\\WriteConcernError|null', ), - 'MongoDB\\Driver\\WriteResult::getWriteErrors' => + 'mongodb\\driver\\writeresult::getwriteerrors' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\WriteResult::getErrorReplies' => + 'mongodb\\driver\\writeresult::geterrorreplies' => array ( 0 => 'array', ), - 'MongoDB\\Driver\\WriteResult::isAcknowledged' => + 'mongodb\\driver\\writeresult::isacknowledged' => array ( 0 => 'bool', ), - 'MongoDate::__construct' => + 'mongodate::__construct' => array ( 0 => 'void', 'second=' => 'int', 'usecond=' => 'int', ), - 'MongoDate::__toString' => + 'mongodate::__tostring' => array ( 0 => 'string', ), - 'MongoDate::toDateTime' => + 'mongodate::todatetime' => array ( 0 => 'DateTime', ), - 'MongoDeleteBatch::__construct' => + 'mongodeletebatch::__construct' => array ( 0 => 'void', 'collection' => 'MongoCollection', 'write_options=' => 'array', ), - 'MongoException::__clone' => + 'mongoexception::__clone' => array ( 0 => 'void', ), - 'MongoException::__construct' => + 'mongoexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'MongoException::__toString' => + 'mongoexception::__tostring' => array ( 0 => 'string', ), - 'MongoException::__wakeup' => + 'mongoexception::__wakeup' => array ( 0 => 'void', ), - 'MongoException::getCode' => + 'mongoexception::getcode' => array ( 0 => 'int', ), - 'MongoException::getFile' => + 'mongoexception::getfile' => array ( 0 => 'string', ), - 'MongoException::getLine' => + 'mongoexception::getline' => array ( 0 => 'int', ), - 'MongoException::getMessage' => + 'mongoexception::getmessage' => array ( 0 => 'string', ), - 'MongoException::getPrevious' => + 'mongoexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'MongoException::getTrace' => + 'mongoexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'MongoException::getTraceAsString' => + 'mongoexception::gettraceasstring' => array ( 0 => 'string', ), - 'MongoGridFS::__construct' => + 'mongogridfs::__construct' => array ( 0 => 'void', 'db' => 'MongoDB', 'prefix=' => 'string', 'chunks=' => 'mixed', ), - 'MongoGridFS::__get' => + 'mongogridfs::__get' => array ( 0 => 'MongoCollection', 'name' => 'string', ), - 'MongoGridFS::__toString' => + 'mongogridfs::__tostring' => array ( 0 => 'string', ), - 'MongoGridFS::aggregate' => + 'mongogridfs::aggregate' => array ( 0 => 'array', 'pipeline' => 'array', 'op' => 'array', 'pipelineOperators' => 'array', ), - 'MongoGridFS::aggregateCursor' => + 'mongogridfs::aggregatecursor' => array ( 0 => 'MongoCommandCursor', 'pipeline' => 'array', 'options' => 'array', ), - 'MongoGridFS::batchInsert' => + 'mongogridfs::batchinsert' => array ( 0 => 'mixed', 'a' => 'array', 'options=' => 'array', ), - 'MongoGridFS::count' => + 'mongogridfs::count' => array ( 0 => 'int', 'query=' => 'array|stdClass', ), - 'MongoGridFS::createDBRef' => + 'mongogridfs::createdbref' => array ( 0 => 'array', 'a' => 'array', ), - 'MongoGridFS::createIndex' => + 'mongogridfs::createindex' => array ( 0 => 'array', 'keys' => 'array', 'options=' => 'array', ), - 'MongoGridFS::delete' => + 'mongogridfs::delete' => array ( 0 => 'bool', 'id' => 'mixed', ), - 'MongoGridFS::deleteIndex' => + 'mongogridfs::deleteindex' => array ( 0 => 'array', 'keys' => 'array|string', ), - 'MongoGridFS::deleteIndexes' => + 'mongogridfs::deleteindexes' => array ( 0 => 'array', ), - 'MongoGridFS::distinct' => + 'mongogridfs::distinct' => array ( 0 => 'array|bool', 'key' => 'string', 'query=' => 'array|null', ), - 'MongoGridFS::drop' => + 'mongogridfs::drop' => array ( 0 => 'array', ), - 'MongoGridFS::ensureIndex' => + 'mongogridfs::ensureindex' => array ( 0 => 'bool', 'keys' => 'array', 'options=' => 'array', ), - 'MongoGridFS::find' => + 'mongogridfs::find' => array ( 0 => 'MongoGridFSCursor', 'query=' => 'array', 'fields=' => 'array', ), - 'MongoGridFS::findAndModify' => + 'mongogridfs::findandmodify' => array ( 0 => 'array', 'query' => 'array', @@ -20387,39 +20387,39 @@ 'fields=' => 'array|null', 'options=' => 'array|null', ), - 'MongoGridFS::findOne' => + 'mongogridfs::findone' => array ( 0 => 'MongoGridFSFile|null', 'query=' => 'mixed', 'fields=' => 'mixed', ), - 'MongoGridFS::get' => + 'mongogridfs::get' => array ( 0 => 'MongoGridFSFile|null', 'id' => 'mixed', ), - 'MongoGridFS::getDBRef' => + 'mongogridfs::getdbref' => array ( 0 => 'array', 'ref' => 'array', ), - 'MongoGridFS::getIndexInfo' => + 'mongogridfs::getindexinfo' => array ( 0 => 'array', ), - 'MongoGridFS::getName' => + 'mongogridfs::getname' => array ( 0 => 'string', ), - 'MongoGridFS::getReadPreference' => + 'mongogridfs::getreadpreference' => array ( 0 => 'array', ), - 'MongoGridFS::getSlaveOkay' => + 'mongogridfs::getslaveokay' => array ( 0 => 'bool', ), - 'MongoGridFS::group' => + 'mongogridfs::group' => array ( 0 => 'array', 'keys' => 'mixed', @@ -20427,79 +20427,79 @@ 'reduce' => 'MongoCode', 'condition=' => 'array', ), - 'MongoGridFS::insert' => + 'mongogridfs::insert' => array ( 0 => 'array|bool', 'a' => 'array|object', 'options=' => 'array', ), - 'MongoGridFS::put' => + 'mongogridfs::put' => array ( 0 => 'mixed', 'filename' => 'string', 'extra=' => 'array', ), - 'MongoGridFS::remove' => + 'mongogridfs::remove' => array ( 0 => 'bool', 'criteria=' => 'array', 'options=' => 'array', ), - 'MongoGridFS::save' => + 'mongogridfs::save' => array ( 0 => 'array|bool', 'a' => 'array|object', 'options=' => 'array', ), - 'MongoGridFS::setReadPreference' => + 'mongogridfs::setreadpreference' => array ( 0 => 'bool', 'read_preference' => 'string', 'tags' => 'array', ), - 'MongoGridFS::setSlaveOkay' => + 'mongogridfs::setslaveokay' => array ( 0 => 'bool', 'ok=' => 'bool', ), - 'MongoGridFS::storeBytes' => + 'mongogridfs::storebytes' => array ( 0 => 'mixed', 'bytes' => 'string', 'extra=' => 'array', 'options=' => 'array', ), - 'MongoGridFS::storeFile' => + 'mongogridfs::storefile' => array ( 0 => 'mixed', 'filename' => 'string', 'extra=' => 'array', 'options=' => 'array', ), - 'MongoGridFS::storeUpload' => + 'mongogridfs::storeupload' => array ( 0 => 'mixed', 'name' => 'string', 'filename=' => 'string', ), - 'MongoGridFS::toIndexString' => + 'mongogridfs::toindexstring' => array ( 0 => 'string', 'keys' => 'mixed', ), - 'MongoGridFS::update' => + 'mongogridfs::update' => array ( 0 => 'bool', 'criteria' => 'array', 'newobj' => 'array', 'options=' => 'array', ), - 'MongoGridFS::validate' => + 'mongogridfs::validate' => array ( 0 => 'array', 'scan_data=' => 'bool', ), - 'MongoGridFSCursor::__construct' => + 'mongogridfscursor::__construct' => array ( 0 => 'void', 'gridfs' => 'MongoGridFS', @@ -20508,515 +20508,515 @@ 'query' => 'array', 'fields' => 'array', ), - 'MongoGridFSCursor::addOption' => + 'mongogridfscursor::addoption' => array ( 0 => 'MongoCursor', 'key' => 'string', 'value' => 'mixed', ), - 'MongoGridFSCursor::awaitData' => + 'mongogridfscursor::awaitdata' => array ( 0 => 'MongoCursor', 'wait=' => 'bool', ), - 'MongoGridFSCursor::batchSize' => + 'mongogridfscursor::batchsize' => array ( 0 => 'MongoCursor', 'batchSize' => 'int', ), - 'MongoGridFSCursor::count' => + 'mongogridfscursor::count' => array ( 0 => 'int', 'all=' => 'bool', ), - 'MongoGridFSCursor::current' => + 'mongogridfscursor::current' => array ( 0 => 'MongoGridFSFile', ), - 'MongoGridFSCursor::dead' => + 'mongogridfscursor::dead' => array ( 0 => 'bool', ), - 'MongoGridFSCursor::doQuery' => + 'mongogridfscursor::doquery' => array ( 0 => 'void', ), - 'MongoGridFSCursor::explain' => + 'mongogridfscursor::explain' => array ( 0 => 'array', ), - 'MongoGridFSCursor::fields' => + 'mongogridfscursor::fields' => array ( 0 => 'MongoCursor', 'f' => 'array', ), - 'MongoGridFSCursor::getNext' => + 'mongogridfscursor::getnext' => array ( 0 => 'MongoGridFSFile', ), - 'MongoGridFSCursor::getReadPreference' => + 'mongogridfscursor::getreadpreference' => array ( 0 => 'array', ), - 'MongoGridFSCursor::hasNext' => + 'mongogridfscursor::hasnext' => array ( 0 => 'bool', ), - 'MongoGridFSCursor::hint' => + 'mongogridfscursor::hint' => array ( 0 => 'MongoCursor', 'key_pattern' => 'mixed', ), - 'MongoGridFSCursor::immortal' => + 'mongogridfscursor::immortal' => array ( 0 => 'MongoCursor', 'liveForever=' => 'bool', ), - 'MongoGridFSCursor::info' => + 'mongogridfscursor::info' => array ( 0 => 'array', ), - 'MongoGridFSCursor::key' => + 'mongogridfscursor::key' => array ( 0 => 'string', ), - 'MongoGridFSCursor::limit' => + 'mongogridfscursor::limit' => array ( 0 => 'MongoCursor', 'num' => 'int', ), - 'MongoGridFSCursor::maxTimeMS' => + 'mongogridfscursor::maxtimems' => array ( 0 => 'MongoCursor', 'ms' => 'int', ), - 'MongoGridFSCursor::next' => + 'mongogridfscursor::next' => array ( 0 => 'void', ), - 'MongoGridFSCursor::partial' => + 'mongogridfscursor::partial' => array ( 0 => 'MongoCursor', 'okay=' => 'bool', ), - 'MongoGridFSCursor::reset' => + 'mongogridfscursor::reset' => array ( 0 => 'void', ), - 'MongoGridFSCursor::rewind' => + 'mongogridfscursor::rewind' => array ( 0 => 'void', ), - 'MongoGridFSCursor::setFlag' => + 'mongogridfscursor::setflag' => array ( 0 => 'MongoCursor', 'flag' => 'int', 'set=' => 'bool', ), - 'MongoGridFSCursor::setReadPreference' => + 'mongogridfscursor::setreadpreference' => array ( 0 => 'MongoCursor', 'read_preference' => 'string', 'tags' => 'array', ), - 'MongoGridFSCursor::skip' => + 'mongogridfscursor::skip' => array ( 0 => 'MongoCursor', 'num' => 'int', ), - 'MongoGridFSCursor::slaveOkay' => + 'mongogridfscursor::slaveokay' => array ( 0 => 'MongoCursor', 'okay=' => 'bool', ), - 'MongoGridFSCursor::snapshot' => + 'mongogridfscursor::snapshot' => array ( 0 => 'MongoCursor', ), - 'MongoGridFSCursor::sort' => + 'mongogridfscursor::sort' => array ( 0 => 'MongoCursor', 'fields' => 'array', ), - 'MongoGridFSCursor::tailable' => + 'mongogridfscursor::tailable' => array ( 0 => 'MongoCursor', 'tail=' => 'bool', ), - 'MongoGridFSCursor::timeout' => + 'mongogridfscursor::timeout' => array ( 0 => 'MongoCursor', 'ms' => 'int', ), - 'MongoGridFSCursor::valid' => + 'mongogridfscursor::valid' => array ( 0 => 'bool', ), - 'MongoGridFSFile::getBytes' => + 'mongogridfsfile::getbytes' => array ( 0 => 'string', ), - 'MongoGridFSFile::getFilename' => + 'mongogridfsfile::getfilename' => array ( 0 => 'string', ), - 'MongoGridFSFile::getResource' => + 'mongogridfsfile::getresource' => array ( 0 => 'resource', ), - 'MongoGridFSFile::getSize' => + 'mongogridfsfile::getsize' => array ( 0 => 'int', ), - 'MongoGridFSFile::write' => + 'mongogridfsfile::write' => array ( 0 => 'int', 'filename=' => 'string', ), - 'MongoGridfsFile::__construct' => + 'mongogridfsfile::__construct' => array ( 0 => 'void', 'gridfs' => 'MongoGridFS', 'file' => 'array', ), - 'MongoId::__construct' => + 'mongoid::__construct' => array ( 0 => 'void', 'id=' => 'MongoId|string', ), - 'MongoId::__set_state' => + 'mongoid::__set_state' => array ( 0 => 'MongoId', 'props' => 'array', ), - 'MongoId::__toString' => + 'mongoid::__tostring' => array ( 0 => 'string', ), - 'MongoId::getHostname' => + 'mongoid::gethostname' => array ( 0 => 'string', ), - 'MongoId::getInc' => + 'mongoid::getinc' => array ( 0 => 'int', ), - 'MongoId::getPID' => + 'mongoid::getpid' => array ( 0 => 'int', ), - 'MongoId::getTimestamp' => + 'mongoid::gettimestamp' => array ( 0 => 'int', ), - 'MongoId::isValid' => + 'mongoid::isvalid' => array ( 0 => 'bool', 'value' => 'mixed', ), - 'MongoInsertBatch::__construct' => + 'mongoinsertbatch::__construct' => array ( 0 => 'void', 'collection' => 'MongoCollection', 'write_options=' => 'array', ), - 'MongoInt32::__construct' => + 'mongoint32::__construct' => array ( 0 => 'void', 'value' => 'string', ), - 'MongoInt32::__toString' => + 'mongoint32::__tostring' => array ( 0 => 'string', ), - 'MongoInt64::__construct' => + 'mongoint64::__construct' => array ( 0 => 'void', 'value' => 'string', ), - 'MongoInt64::__toString' => + 'mongoint64::__tostring' => array ( 0 => 'string', ), - 'MongoLog::getCallback' => + 'mongolog::getcallback' => array ( 0 => 'callable', ), - 'MongoLog::getLevel' => + 'mongolog::getlevel' => array ( 0 => 'int', ), - 'MongoLog::getModule' => + 'mongolog::getmodule' => array ( 0 => 'int', ), - 'MongoLog::setCallback' => + 'mongolog::setcallback' => array ( 0 => 'void', 'log_function' => 'callable', ), - 'MongoLog::setLevel' => + 'mongolog::setlevel' => array ( 0 => 'void', 'level' => 'int', ), - 'MongoLog::setModule' => + 'mongolog::setmodule' => array ( 0 => 'void', 'module' => 'int', ), - 'MongoPool::getSize' => + 'mongopool::getsize' => array ( 0 => 'int', ), - 'MongoPool::info' => + 'mongopool::info' => array ( 0 => 'array', ), - 'MongoPool::setSize' => + 'mongopool::setsize' => array ( 0 => 'bool', 'size' => 'int', ), - 'MongoRegex::__construct' => + 'mongoregex::__construct' => array ( 0 => 'void', 'regex' => 'string', ), - 'MongoRegex::__toString' => + 'mongoregex::__tostring' => array ( 0 => 'string', ), - 'MongoResultException::__clone' => + 'mongoresultexception::__clone' => array ( 0 => 'void', ), - 'MongoResultException::__construct' => + 'mongoresultexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'MongoResultException::__toString' => + 'mongoresultexception::__tostring' => array ( 0 => 'string', ), - 'MongoResultException::__wakeup' => + 'mongoresultexception::__wakeup' => array ( 0 => 'void', ), - 'MongoResultException::getCode' => + 'mongoresultexception::getcode' => array ( 0 => 'int', ), - 'MongoResultException::getDocument' => + 'mongoresultexception::getdocument' => array ( 0 => 'array', ), - 'MongoResultException::getFile' => + 'mongoresultexception::getfile' => array ( 0 => 'string', ), - 'MongoResultException::getLine' => + 'mongoresultexception::getline' => array ( 0 => 'int', ), - 'MongoResultException::getMessage' => + 'mongoresultexception::getmessage' => array ( 0 => 'string', ), - 'MongoResultException::getPrevious' => + 'mongoresultexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'MongoResultException::getTrace' => + 'mongoresultexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'MongoResultException::getTraceAsString' => + 'mongoresultexception::gettraceasstring' => array ( 0 => 'string', ), - 'MongoTimestamp::__construct' => + 'mongotimestamp::__construct' => array ( 0 => 'void', 'second=' => 'int', 'inc=' => 'int', ), - 'MongoTimestamp::__toString' => + 'mongotimestamp::__tostring' => array ( 0 => 'string', ), - 'MongoUpdateBatch::__construct' => + 'mongoupdatebatch::__construct' => array ( 0 => 'void', 'collection' => 'MongoCollection', 'write_options=' => 'array', ), - 'MongoUpdateBatch::add' => + 'mongoupdatebatch::add' => array ( 0 => 'bool', 'item' => 'array', ), - 'MongoUpdateBatch::execute' => + 'mongoupdatebatch::execute' => array ( 0 => 'array', 'write_options' => 'array', ), - 'MongoWriteBatch::__construct' => + 'mongowritebatch::__construct' => array ( 0 => 'void', 'collection' => 'MongoCollection', 'batch_type' => 'string', 'write_options' => 'array', ), - 'MongoWriteBatch::add' => + 'mongowritebatch::add' => array ( 0 => 'bool', 'item' => 'array', ), - 'MongoWriteBatch::execute' => + 'mongowritebatch::execute' => array ( 0 => 'array', 'write_options' => 'array', ), - 'MongoWriteConcernException::__clone' => + 'mongowriteconcernexception::__clone' => array ( 0 => 'void', ), - 'MongoWriteConcernException::__construct' => + 'mongowriteconcernexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'MongoWriteConcernException::__toString' => + 'mongowriteconcernexception::__tostring' => array ( 0 => 'string', ), - 'MongoWriteConcernException::__wakeup' => + 'mongowriteconcernexception::__wakeup' => array ( 0 => 'void', ), - 'MongoWriteConcernException::getCode' => + 'mongowriteconcernexception::getcode' => array ( 0 => 'int', ), - 'MongoWriteConcernException::getDocument' => + 'mongowriteconcernexception::getdocument' => array ( 0 => 'array', ), - 'MongoWriteConcernException::getFile' => + 'mongowriteconcernexception::getfile' => array ( 0 => 'string', ), - 'MongoWriteConcernException::getLine' => + 'mongowriteconcernexception::getline' => array ( 0 => 'int', ), - 'MongoWriteConcernException::getMessage' => + 'mongowriteconcernexception::getmessage' => array ( 0 => 'string', ), - 'MongoWriteConcernException::getPrevious' => + 'mongowriteconcernexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'MongoWriteConcernException::getTrace' => + 'mongowriteconcernexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'MongoWriteConcernException::getTraceAsString' => + 'mongowriteconcernexception::gettraceasstring' => array ( 0 => 'string', ), - 'MultipleIterator::__construct' => + 'multipleiterator::__construct' => array ( 0 => 'void', 'flags=' => 'int', ), - 'MultipleIterator::attachIterator' => + 'multipleiterator::attachiterator' => array ( 0 => 'void', 'iterator' => 'Iterator', 'info=' => 'int|null|string', ), - 'MultipleIterator::containsIterator' => + 'multipleiterator::containsiterator' => array ( 0 => 'bool', 'iterator' => 'Iterator', ), - 'MultipleIterator::countIterators' => + 'multipleiterator::countiterators' => array ( 0 => 'int', ), - 'MultipleIterator::current' => + 'multipleiterator::current' => array ( 0 => 'array|false', ), - 'MultipleIterator::detachIterator' => + 'multipleiterator::detachiterator' => array ( 0 => 'void', 'iterator' => 'Iterator', ), - 'MultipleIterator::getFlags' => + 'multipleiterator::getflags' => array ( 0 => 'int', ), - 'MultipleIterator::key' => + 'multipleiterator::key' => array ( 0 => 'array', ), - 'MultipleIterator::next' => + 'multipleiterator::next' => array ( 0 => 'void', ), - 'MultipleIterator::rewind' => + 'multipleiterator::rewind' => array ( 0 => 'void', ), - 'MultipleIterator::setFlags' => + 'multipleiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'MultipleIterator::valid' => + 'multipleiterator::valid' => array ( 0 => 'bool', ), - 'Mutex::create' => + 'mutex::create' => array ( 0 => 'long', 'lock=' => 'bool', ), - 'Mutex::destroy' => + 'mutex::destroy' => array ( 0 => 'bool', 'mutex' => 'long', ), - 'Mutex::lock' => + 'mutex::lock' => array ( 0 => 'bool', 'mutex' => 'long', ), - 'Mutex::trylock' => + 'mutex::trylock' => array ( 0 => 'bool', 'mutex' => 'long', ), - 'Mutex::unlock' => + 'mutex::unlock' => array ( 0 => 'bool', 'mutex' => 'long', 'destroy=' => 'bool', ), - 'MysqlndUhConnection::__construct' => + 'mysqlnduhconnection::__construct' => array ( 0 => 'void', ), - 'MysqlndUhConnection::changeUser' => + 'mysqlnduhconnection::changeuser' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', @@ -21026,18 +21026,18 @@ 'silent' => 'bool', 'passwd_len' => 'int', ), - 'MysqlndUhConnection::charsetName' => + 'mysqlnduhconnection::charsetname' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::close' => + 'mysqlnduhconnection::close' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'close_type' => 'int', ), - 'MysqlndUhConnection::connect' => + 'mysqlnduhconnection::connect' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', @@ -21049,111 +21049,111 @@ 'socket' => 'string', 'mysql_flags' => 'int', ), - 'MysqlndUhConnection::endPSession' => + 'mysqlnduhconnection::endpsession' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::escapeString' => + 'mysqlnduhconnection::escapestring' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', 'escape_string' => 'string', ), - 'MysqlndUhConnection::getAffectedRows' => + 'mysqlnduhconnection::getaffectedrows' => array ( 0 => 'int', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getErrorNumber' => + 'mysqlnduhconnection::geterrornumber' => array ( 0 => 'int', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getErrorString' => + 'mysqlnduhconnection::geterrorstring' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getFieldCount' => + 'mysqlnduhconnection::getfieldcount' => array ( 0 => 'int', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getHostInformation' => + 'mysqlnduhconnection::gethostinformation' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getLastInsertId' => + 'mysqlnduhconnection::getlastinsertid' => array ( 0 => 'int', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getLastMessage' => + 'mysqlnduhconnection::getlastmessage' => array ( 0 => 'void', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getProtocolInformation' => + 'mysqlnduhconnection::getprotocolinformation' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getServerInformation' => + 'mysqlnduhconnection::getserverinformation' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getServerStatistics' => + 'mysqlnduhconnection::getserverstatistics' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getServerVersion' => + 'mysqlnduhconnection::getserverversion' => array ( 0 => 'int', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getSqlstate' => + 'mysqlnduhconnection::getsqlstate' => array ( 0 => 'string', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getStatistics' => + 'mysqlnduhconnection::getstatistics' => array ( 0 => 'array', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getThreadId' => + 'mysqlnduhconnection::getthreadid' => array ( 0 => 'int', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::getWarningCount' => + 'mysqlnduhconnection::getwarningcount' => array ( 0 => 'int', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::init' => + 'mysqlnduhconnection::init' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::killConnection' => + 'mysqlnduhconnection::killconnection' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'pid' => 'int', ), - 'MysqlndUhConnection::listFields' => + 'mysqlnduhconnection::listfields' => array ( 0 => 'array', 'connection' => 'mysqlnd_connection', 'table' => 'string', 'achtung_wild' => 'string', ), - 'MysqlndUhConnection::listMethod' => + 'mysqlnduhconnection::listmethod' => array ( 0 => 'void', 'connection' => 'mysqlnd_connection', @@ -21161,103 +21161,103 @@ 'achtung_wild' => 'string', 'par1' => 'string', ), - 'MysqlndUhConnection::moreResults' => + 'mysqlnduhconnection::moreresults' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::nextResult' => + 'mysqlnduhconnection::nextresult' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::ping' => + 'mysqlnduhconnection::ping' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::query' => + 'mysqlnduhconnection::query' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'query' => 'string', ), - 'MysqlndUhConnection::queryReadResultsetHeader' => + 'mysqlnduhconnection::queryreadresultsetheader' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'mysqlnd_stmt' => 'mysqlnd_statement', ), - 'MysqlndUhConnection::reapQuery' => + 'mysqlnduhconnection::reapquery' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::refreshServer' => + 'mysqlnduhconnection::refreshserver' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'options' => 'int', ), - 'MysqlndUhConnection::restartPSession' => + 'mysqlnduhconnection::restartpsession' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::selectDb' => + 'mysqlnduhconnection::selectdb' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'database' => 'string', ), - 'MysqlndUhConnection::sendClose' => + 'mysqlnduhconnection::sendclose' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::sendQuery' => + 'mysqlnduhconnection::sendquery' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'query' => 'string', ), - 'MysqlndUhConnection::serverDumpDebugInformation' => + 'mysqlnduhconnection::serverdumpdebuginformation' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::setAutocommit' => + 'mysqlnduhconnection::setautocommit' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'mode' => 'int', ), - 'MysqlndUhConnection::setCharset' => + 'mysqlnduhconnection::setcharset' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'charset' => 'string', ), - 'MysqlndUhConnection::setClientOption' => + 'mysqlnduhconnection::setclientoption' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', 'option' => 'int', 'value' => 'int', ), - 'MysqlndUhConnection::setServerOption' => + 'mysqlnduhconnection::setserveroption' => array ( 0 => 'void', 'connection' => 'mysqlnd_connection', 'option' => 'int', ), - 'MysqlndUhConnection::shutdownServer' => + 'mysqlnduhconnection::shutdownserver' => array ( 0 => 'void', 'MYSQLND_UH_RES_MYSQLND_NAME' => 'string', 'level' => 'string', ), - 'MysqlndUhConnection::simpleCommand' => + 'mysqlnduhconnection::simplecommand' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', @@ -21267,7 +21267,7 @@ 'silent' => 'bool', 'ignore_upsert_status' => 'bool', ), - 'MysqlndUhConnection::simpleCommandHandleResponse' => + 'mysqlnduhconnection::simplecommandhandleresponse' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', @@ -21276,7 +21276,7 @@ 'command' => 'int', 'ignore_upsert_status' => 'bool', ), - 'MysqlndUhConnection::sslSet' => + 'mysqlnduhconnection::sslset' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', @@ -21286,183 +21286,183 @@ 'capath' => 'string', 'cipher' => 'string', ), - 'MysqlndUhConnection::stmtInit' => + 'mysqlnduhconnection::stmtinit' => array ( 0 => 'resource', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::storeResult' => + 'mysqlnduhconnection::storeresult' => array ( 0 => 'resource', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::txCommit' => + 'mysqlnduhconnection::txcommit' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::txRollback' => + 'mysqlnduhconnection::txrollback' => array ( 0 => 'bool', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhConnection::useResult' => + 'mysqlnduhconnection::useresult' => array ( 0 => 'resource', 'connection' => 'mysqlnd_connection', ), - 'MysqlndUhPreparedStatement::__construct' => + 'mysqlnduhpreparedstatement::__construct' => array ( 0 => 'void', ), - 'MysqlndUhPreparedStatement::execute' => + 'mysqlnduhpreparedstatement::execute' => array ( 0 => 'bool', 'statement' => 'mysqlnd_prepared_statement', ), - 'MysqlndUhPreparedStatement::prepare' => + 'mysqlnduhpreparedstatement::prepare' => array ( 0 => 'bool', 'statement' => 'mysqlnd_prepared_statement', 'query' => 'string', ), - 'NoRewindIterator::__construct' => + 'norewinditerator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', ), - 'NoRewindIterator::current' => + 'norewinditerator::current' => array ( 0 => 'mixed', ), - 'NoRewindIterator::getInnerIterator' => + 'norewinditerator::getinneriterator' => array ( 0 => 'Iterator', ), - 'NoRewindIterator::key' => + 'norewinditerator::key' => array ( 0 => 'mixed', ), - 'NoRewindIterator::next' => + 'norewinditerator::next' => array ( 0 => 'void', ), - 'NoRewindIterator::rewind' => + 'norewinditerator::rewind' => array ( 0 => 'void', ), - 'NoRewindIterator::valid' => + 'norewinditerator::valid' => array ( 0 => 'bool', ), - 'Normalizer::isNormalized' => + 'normalizer::isnormalized' => array ( 0 => 'bool', 'string' => 'string', 'form=' => 'int', ), - 'Normalizer::normalize' => + 'normalizer::normalize' => array ( 0 => 'false|string', 'string' => 'string', 'form=' => 'int', ), - 'NumberFormatter::__construct' => + 'numberformatter::__construct' => array ( 0 => 'void', 'locale' => 'string', 'style' => 'int', 'pattern=' => 'string', ), - 'NumberFormatter::create' => + 'numberformatter::create' => array ( 0 => 'NumberFormatter|null', 'locale' => 'string', 'style' => 'int', 'pattern=' => 'string', ), - 'NumberFormatter::format' => + 'numberformatter::format' => array ( 0 => 'false|string', 'num' => 'mixed', 'type=' => 'int', ), - 'NumberFormatter::formatCurrency' => + 'numberformatter::formatcurrency' => array ( 0 => 'false|string', 'amount' => 'float', 'currency' => 'string', ), - 'NumberFormatter::getAttribute' => + 'numberformatter::getattribute' => array ( 0 => 'false|float|int', 'attribute' => 'int', ), - 'NumberFormatter::getErrorCode' => + 'numberformatter::geterrorcode' => array ( 0 => 'int', ), - 'NumberFormatter::getErrorMessage' => + 'numberformatter::geterrormessage' => array ( 0 => 'string', ), - 'NumberFormatter::getLocale' => + 'numberformatter::getlocale' => array ( 0 => 'string', 'type=' => 'int', ), - 'NumberFormatter::getPattern' => + 'numberformatter::getpattern' => array ( 0 => 'false|string', ), - 'NumberFormatter::getSymbol' => + 'numberformatter::getsymbol' => array ( 0 => 'false|string', 'symbol' => 'int', ), - 'NumberFormatter::getTextAttribute' => + 'numberformatter::gettextattribute' => array ( 0 => 'false|string', 'attribute' => 'int', ), - 'NumberFormatter::parse' => + 'numberformatter::parse' => array ( 0 => 'false|float|int', 'string' => 'string', 'type=' => 'int', '&rw_offset=' => 'int', ), - 'NumberFormatter::parseCurrency' => + 'numberformatter::parsecurrency' => array ( 0 => 'false|float', 'string' => 'string', '&w_currency' => 'string', '&rw_offset=' => 'int', ), - 'NumberFormatter::setAttribute' => + 'numberformatter::setattribute' => array ( 0 => 'bool', 'attribute' => 'int', 'value' => 'float|int', ), - 'NumberFormatter::setPattern' => + 'numberformatter::setpattern' => array ( 0 => 'bool', 'pattern' => 'string', ), - 'NumberFormatter::setSymbol' => + 'numberformatter::setsymbol' => array ( 0 => 'bool', 'symbol' => 'int', 'value' => 'string', ), - 'NumberFormatter::setTextAttribute' => + 'numberformatter::settextattribute' => array ( 0 => 'bool', 'attribute' => 'int', 'value' => 'string', ), - 'OAuth::__construct' => + 'oauth::__construct' => array ( 0 => 'void', 'consumer_key' => 'string', @@ -21470,31 +21470,31 @@ 'signature_method=' => 'string', 'auth_type=' => 'int', ), - 'OAuth::disableDebug' => + 'oauth::disabledebug' => array ( 0 => 'bool', ), - 'OAuth::disableRedirects' => + 'oauth::disableredirects' => array ( 0 => 'bool', ), - 'OAuth::disableSSLChecks' => + 'oauth::disablesslchecks' => array ( 0 => 'bool', ), - 'OAuth::enableDebug' => + 'oauth::enabledebug' => array ( 0 => 'bool', ), - 'OAuth::enableRedirects' => + 'oauth::enableredirects' => array ( 0 => 'bool', ), - 'OAuth::enableSSLChecks' => + 'oauth::enablesslchecks' => array ( 0 => 'bool', ), - 'OAuth::fetch' => + 'oauth::fetch' => array ( 0 => 'mixed', 'protected_resource_url' => 'string', @@ -21502,14 +21502,14 @@ 'http_method=' => 'string', 'http_headers=' => 'array', ), - 'OAuth::generateSignature' => + 'oauth::generatesignature' => array ( 0 => 'string', 'http_method' => 'string', 'url' => 'string', 'extra_parameters=' => 'mixed', ), - 'OAuth::getAccessToken' => + 'oauth::getaccesstoken' => array ( 0 => 'array|false', 'access_token_url' => 'string', @@ -21517,513 +21517,513 @@ 'verifier_token=' => 'string', 'http_method=' => 'string', ), - 'OAuth::getCAPath' => + 'oauth::getcapath' => array ( 0 => 'array', ), - 'OAuth::getLastResponse' => + 'oauth::getlastresponse' => array ( 0 => 'string', ), - 'OAuth::getLastResponseHeaders' => + 'oauth::getlastresponseheaders' => array ( 0 => 'false|string', ), - 'OAuth::getLastResponseInfo' => + 'oauth::getlastresponseinfo' => array ( 0 => 'array', ), - 'OAuth::getRequestHeader' => + 'oauth::getrequestheader' => array ( 0 => 'false|string', 'http_method' => 'string', 'url' => 'string', 'extra_parameters=' => 'mixed', ), - 'OAuth::getRequestToken' => + 'oauth::getrequesttoken' => array ( 0 => 'array|false', 'request_token_url' => 'string', 'callback_url=' => 'string', 'http_method=' => 'string', ), - 'OAuth::setAuthType' => + 'oauth::setauthtype' => array ( 0 => 'bool', 'auth_type' => 'int', ), - 'OAuth::setCAPath' => + 'oauth::setcapath' => array ( 0 => 'mixed', 'ca_path=' => 'string', 'ca_info=' => 'string', ), - 'OAuth::setNonce' => + 'oauth::setnonce' => array ( 0 => 'mixed', 'nonce' => 'string', ), - 'OAuth::setRSACertificate' => + 'oauth::setrsacertificate' => array ( 0 => 'mixed', 'cert' => 'string', ), - 'OAuth::setRequestEngine' => + 'oauth::setrequestengine' => array ( 0 => 'void', 'reqengine' => 'int', ), - 'OAuth::setSSLChecks' => + 'oauth::setsslchecks' => array ( 0 => 'bool', 'sslcheck' => 'int', ), - 'OAuth::setTimeout' => + 'oauth::settimeout' => array ( 0 => 'void', 'timeout' => 'int', ), - 'OAuth::setTimestamp' => + 'oauth::settimestamp' => array ( 0 => 'mixed', 'timestamp' => 'string', ), - 'OAuth::setToken' => + 'oauth::settoken' => array ( 0 => 'bool', 'token' => 'string', 'token_secret' => 'string', ), - 'OAuth::setVersion' => + 'oauth::setversion' => array ( 0 => 'bool', 'version' => 'string', ), - 'OAuthProvider::__construct' => + 'oauthprovider::__construct' => array ( 0 => 'void', 'params_array=' => 'array', ), - 'OAuthProvider::addRequiredParameter' => + 'oauthprovider::addrequiredparameter' => array ( 0 => 'bool', 'req_params' => 'string', ), - 'OAuthProvider::callTimestampNonceHandler' => + 'oauthprovider::calltimestampnoncehandler' => array ( 0 => 'void', ), - 'OAuthProvider::callconsumerHandler' => + 'oauthprovider::callconsumerhandler' => array ( 0 => 'void', ), - 'OAuthProvider::calltokenHandler' => + 'oauthprovider::calltokenhandler' => array ( 0 => 'void', ), - 'OAuthProvider::checkOAuthRequest' => + 'oauthprovider::checkoauthrequest' => array ( 0 => 'void', 'uri=' => 'string', 'method=' => 'string', ), - 'OAuthProvider::consumerHandler' => + 'oauthprovider::consumerhandler' => array ( 0 => 'void', 'callback_function' => 'callable', ), - 'OAuthProvider::generateToken' => + 'oauthprovider::generatetoken' => array ( 0 => 'string', 'size' => 'int', 'strong=' => 'bool', ), - 'OAuthProvider::is2LeggedEndpoint' => + 'oauthprovider::is2leggedendpoint' => array ( 0 => 'void', 'params_array' => 'mixed', ), - 'OAuthProvider::isRequestTokenEndpoint' => + 'oauthprovider::isrequesttokenendpoint' => array ( 0 => 'void', 'will_issue_request_token' => 'bool', ), - 'OAuthProvider::removeRequiredParameter' => + 'oauthprovider::removerequiredparameter' => array ( 0 => 'bool', 'req_params' => 'string', ), - 'OAuthProvider::reportProblem' => + 'oauthprovider::reportproblem' => array ( 0 => 'string', 'oauthexception' => 'string', 'send_headers=' => 'bool', ), - 'OAuthProvider::setParam' => + 'oauthprovider::setparam' => array ( 0 => 'bool', 'param_key' => 'string', 'param_val=' => 'mixed', ), - 'OAuthProvider::setRequestTokenPath' => + 'oauthprovider::setrequesttokenpath' => array ( 0 => 'bool', 'path' => 'string', ), - 'OAuthProvider::timestampNonceHandler' => + 'oauthprovider::timestampnoncehandler' => array ( 0 => 'void', 'callback_function' => 'callable', ), - 'OAuthProvider::tokenHandler' => + 'oauthprovider::tokenhandler' => array ( 0 => 'void', 'callback_function' => 'callable', ), - 'OCICollection::append' => + 'ocicollection::append' => array ( 0 => 'bool', 'value' => 'mixed', ), - 'OCICollection::assign' => + 'ocicollection::assign' => array ( 0 => 'bool', 'from' => 'OCI_Collection', ), - 'OCICollection::assignElem' => + 'ocicollection::assignelem' => array ( 0 => 'bool', 'index' => 'int', 'value' => 'mixed', ), - 'OCICollection::free' => + 'ocicollection::free' => array ( 0 => 'bool', ), - 'OCICollection::getElem' => + 'ocicollection::getelem' => array ( 0 => 'mixed', 'index' => 'int', ), - 'OCICollection::max' => + 'ocicollection::max' => array ( 0 => 'false|int', ), - 'OCICollection::size' => + 'ocicollection::size' => array ( 0 => 'false|int', ), - 'OCICollection::trim' => + 'ocicollection::trim' => array ( 0 => 'bool', 'num' => 'int', ), - 'OCILob::append' => + 'ocilob::append' => array ( 0 => 'bool', 'lob_from' => 'OCILob', ), - 'OCILob::close' => + 'ocilob::close' => array ( 0 => 'bool', ), - 'OCILob::eof' => + 'ocilob::eof' => array ( 0 => 'bool', ), - 'OCILob::erase' => + 'ocilob::erase' => array ( 0 => 'false|int', 'offset=' => 'int', 'length=' => 'int', ), - 'OCILob::export' => + 'ocilob::export' => array ( 0 => 'bool', 'filename' => 'string', 'start=' => 'int', 'length=' => 'int', ), - 'OCILob::flush' => + 'ocilob::flush' => array ( 0 => 'bool', 'flag=' => 'int', ), - 'OCILob::free' => + 'ocilob::free' => array ( 0 => 'bool', ), - 'OCILob::getbuffering' => + 'ocilob::getbuffering' => array ( 0 => 'bool', ), - 'OCILob::import' => + 'ocilob::import' => array ( 0 => 'bool', 'filename' => 'string', ), - 'OCILob::load' => + 'ocilob::load' => array ( 0 => 'false|string', ), - 'OCILob::read' => + 'ocilob::read' => array ( 0 => 'false|string', 'length' => 'int', ), - 'OCILob::rewind' => + 'ocilob::rewind' => array ( 0 => 'bool', ), - 'OCILob::save' => + 'ocilob::save' => array ( 0 => 'bool', 'data' => 'string', 'offset=' => 'int', ), - 'OCILob::savefile' => + 'ocilob::savefile' => array ( 0 => 'bool', 'filename' => 'mixed', ), - 'OCILob::seek' => + 'ocilob::seek' => array ( 0 => 'bool', 'offset' => 'int', 'whence=' => 'int', ), - 'OCILob::setbuffering' => + 'ocilob::setbuffering' => array ( 0 => 'bool', 'on_off' => 'bool', ), - 'OCILob::size' => + 'ocilob::size' => array ( 0 => 'false|int', ), - 'OCILob::tell' => + 'ocilob::tell' => array ( 0 => 'false|int', ), - 'OCILob::truncate' => + 'ocilob::truncate' => array ( 0 => 'bool', 'length=' => 'int', ), - 'OCILob::write' => + 'ocilob::write' => array ( 0 => 'false|int', 'data' => 'string', 'length=' => 'int', ), - 'OCILob::writeTemporary' => + 'ocilob::writetemporary' => array ( 0 => 'bool', 'data' => 'string', 'lob_type=' => 'int', ), - 'OCILob::writetofile' => + 'ocilob::writetofile' => array ( 0 => 'bool', 'filename' => 'mixed', 'start' => 'mixed', 'length' => 'mixed', ), - 'OutOfBoundsException::__clone' => + 'outofboundsexception::__clone' => array ( 0 => 'void', ), - 'OutOfBoundsException::__construct' => + 'outofboundsexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'OutOfBoundsException::__toString' => + 'outofboundsexception::__tostring' => array ( 0 => 'string', ), - 'OutOfBoundsException::getCode' => + 'outofboundsexception::getcode' => array ( 0 => 'int', ), - 'OutOfBoundsException::getFile' => + 'outofboundsexception::getfile' => array ( 0 => 'string', ), - 'OutOfBoundsException::getLine' => + 'outofboundsexception::getline' => array ( 0 => 'int', ), - 'OutOfBoundsException::getMessage' => + 'outofboundsexception::getmessage' => array ( 0 => 'string', ), - 'OutOfBoundsException::getPrevious' => + 'outofboundsexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'OutOfBoundsException::getTrace' => + 'outofboundsexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'OutOfBoundsException::getTraceAsString' => + 'outofboundsexception::gettraceasstring' => array ( 0 => 'string', ), - 'OutOfRangeException::__clone' => + 'outofrangeexception::__clone' => array ( 0 => 'void', ), - 'OutOfRangeException::__construct' => + 'outofrangeexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'OutOfRangeException::__toString' => + 'outofrangeexception::__tostring' => array ( 0 => 'string', ), - 'OutOfRangeException::getCode' => + 'outofrangeexception::getcode' => array ( 0 => 'int', ), - 'OutOfRangeException::getFile' => + 'outofrangeexception::getfile' => array ( 0 => 'string', ), - 'OutOfRangeException::getLine' => + 'outofrangeexception::getline' => array ( 0 => 'int', ), - 'OutOfRangeException::getMessage' => + 'outofrangeexception::getmessage' => array ( 0 => 'string', ), - 'OutOfRangeException::getPrevious' => + 'outofrangeexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'OutOfRangeException::getTrace' => + 'outofrangeexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'OutOfRangeException::getTraceAsString' => + 'outofrangeexception::gettraceasstring' => array ( 0 => 'string', ), - 'OuterIterator::current' => + 'outeriterator::current' => array ( 0 => 'mixed', ), - 'OuterIterator::getInnerIterator' => + 'outeriterator::getinneriterator' => array ( 0 => 'Iterator', ), - 'OuterIterator::key' => + 'outeriterator::key' => array ( 0 => 'int|string', ), - 'OuterIterator::next' => + 'outeriterator::next' => array ( 0 => 'void', ), - 'OuterIterator::rewind' => + 'outeriterator::rewind' => array ( 0 => 'void', ), - 'OuterIterator::valid' => + 'outeriterator::valid' => array ( 0 => 'bool', ), - 'OverflowException::__clone' => + 'overflowexception::__clone' => array ( 0 => 'void', ), - 'OverflowException::__construct' => + 'overflowexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'OverflowException::__toString' => + 'overflowexception::__tostring' => array ( 0 => 'string', ), - 'OverflowException::getCode' => + 'overflowexception::getcode' => array ( 0 => 'int', ), - 'OverflowException::getFile' => + 'overflowexception::getfile' => array ( 0 => 'string', ), - 'OverflowException::getLine' => + 'overflowexception::getline' => array ( 0 => 'int', ), - 'OverflowException::getMessage' => + 'overflowexception::getmessage' => array ( 0 => 'string', ), - 'OverflowException::getPrevious' => + 'overflowexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'OverflowException::getTrace' => + 'overflowexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'OverflowException::getTraceAsString' => + 'overflowexception::gettraceasstring' => array ( 0 => 'string', ), - 'OwsrequestObj::__construct' => + 'owsrequestobj::__construct' => array ( 0 => 'void', ), - 'OwsrequestObj::addParameter' => + 'owsrequestobj::addparameter' => array ( 0 => 'int', 'name' => 'string', 'value' => 'string', ), - 'OwsrequestObj::getName' => + 'owsrequestobj::getname' => array ( 0 => 'string', 'index' => 'int', ), - 'OwsrequestObj::getValue' => + 'owsrequestobj::getvalue' => array ( 0 => 'string', 'index' => 'int', ), - 'OwsrequestObj::getValueByName' => + 'owsrequestobj::getvaluebyname' => array ( 0 => 'string', 'name' => 'string', ), - 'OwsrequestObj::loadParams' => + 'owsrequestobj::loadparams' => array ( 0 => 'int', ), - 'OwsrequestObj::setParameter' => + 'owsrequestobj::setparameter' => array ( 0 => 'int', 'name' => 'string', 'value' => 'string', ), - 'PDF_activate_item' => + 'pdf_activate_item' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'id' => 'int', ), - 'PDF_add_launchlink' => + 'pdf_add_launchlink' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22033,7 +22033,7 @@ 'ury' => 'float', 'filename' => 'string', ), - 'PDF_add_locallink' => + 'pdf_add_locallink' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22044,14 +22044,14 @@ 'page' => 'int', 'dest' => 'string', ), - 'PDF_add_nameddest' => + 'pdf_add_nameddest' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'name' => 'string', 'optlist' => 'string', ), - 'PDF_add_note' => + 'pdf_add_note' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22064,7 +22064,7 @@ 'icon' => 'string', 'open' => 'int', ), - 'PDF_add_pdflink' => + 'pdf_add_pdflink' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22076,7 +22076,7 @@ 'page' => 'int', 'dest' => 'string', ), - 'PDF_add_table_cell' => + 'pdf_add_table_cell' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -22086,7 +22086,7 @@ 'text' => 'string', 'optlist' => 'string', ), - 'PDF_add_textflow' => + 'pdf_add_textflow' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -22094,13 +22094,13 @@ 'text' => 'string', 'optlist' => 'string', ), - 'PDF_add_thumbnail' => + 'pdf_add_thumbnail' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'image' => 'int', ), - 'PDF_add_weblink' => + 'pdf_add_weblink' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22110,7 +22110,7 @@ 'upperrighty' => 'float', 'url' => 'string', ), - 'PDF_arc' => + 'pdf_arc' => array ( 0 => 'bool', 'p' => 'resource', @@ -22120,7 +22120,7 @@ 'alpha' => 'float', 'beta' => 'float', ), - 'PDF_arcn' => + 'pdf_arcn' => array ( 0 => 'bool', 'p' => 'resource', @@ -22130,7 +22130,7 @@ 'alpha' => 'float', 'beta' => 'float', ), - 'PDF_attach_file' => + 'pdf_attach_file' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22144,14 +22144,14 @@ 'mimetype' => 'string', 'icon' => 'string', ), - 'PDF_begin_document' => + 'pdf_begin_document' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'filename' => 'string', 'optlist' => 'string', ), - 'PDF_begin_font' => + 'pdf_begin_font' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22164,7 +22164,7 @@ 'f' => 'float', 'optlist' => 'string', ), - 'PDF_begin_glyph' => + 'pdf_begin_glyph' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22175,27 +22175,27 @@ 'urx' => 'float', 'ury' => 'float', ), - 'PDF_begin_item' => + 'pdf_begin_item' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'tag' => 'string', 'optlist' => 'string', ), - 'PDF_begin_layer' => + 'pdf_begin_layer' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'layer' => 'int', ), - 'PDF_begin_page' => + 'pdf_begin_page' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'width' => 'float', 'height' => 'float', ), - 'PDF_begin_page_ext' => + 'pdf_begin_page_ext' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22203,7 +22203,7 @@ 'height' => 'float', 'optlist' => 'string', ), - 'PDF_begin_pattern' => + 'pdf_begin_pattern' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -22213,14 +22213,14 @@ 'ystep' => 'float', 'painttype' => 'int', ), - 'PDF_begin_template' => + 'pdf_begin_template' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'width' => 'float', 'height' => 'float', ), - 'PDF_begin_template_ext' => + 'pdf_begin_template_ext' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -22228,7 +22228,7 @@ 'height' => 'float', 'optlist' => 'string', ), - 'PDF_circle' => + 'pdf_circle' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22236,50 +22236,50 @@ 'y' => 'float', 'r' => 'float', ), - 'PDF_clip' => + 'pdf_clip' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_close' => + 'pdf_close' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_close_image' => + 'pdf_close_image' => array ( 0 => 'bool', 'p' => 'resource', 'image' => 'int', ), - 'PDF_close_pdi' => + 'pdf_close_pdi' => array ( 0 => 'bool', 'p' => 'resource', 'doc' => 'int', ), - 'PDF_close_pdi_page' => + 'pdf_close_pdi_page' => array ( 0 => 'bool', 'p' => 'resource', 'page' => 'int', ), - 'PDF_closepath' => + 'pdf_closepath' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_closepath_fill_stroke' => + 'pdf_closepath_fill_stroke' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_closepath_stroke' => + 'pdf_closepath_stroke' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_concat' => + 'pdf_concat' => array ( 0 => 'bool', 'p' => 'resource', @@ -22290,27 +22290,27 @@ 'e' => 'float', 'f' => 'float', ), - 'PDF_continue_text' => + 'pdf_continue_text' => array ( 0 => 'bool', 'p' => 'resource', 'text' => 'string', ), - 'PDF_create_3dview' => + 'pdf_create_3dview' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'username' => 'string', 'optlist' => 'string', ), - 'PDF_create_action' => + 'pdf_create_action' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'type' => 'string', 'optlist' => 'string', ), - 'PDF_create_annotation' => + 'pdf_create_annotation' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22321,14 +22321,14 @@ 'type' => 'string', 'optlist' => 'string', ), - 'PDF_create_bookmark' => + 'pdf_create_bookmark' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'text' => 'string', 'optlist' => 'string', ), - 'PDF_create_field' => + 'pdf_create_field' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22340,20 +22340,20 @@ 'type' => 'string', 'optlist' => 'string', ), - 'PDF_create_fieldgroup' => + 'pdf_create_fieldgroup' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'name' => 'string', 'optlist' => 'string', ), - 'PDF_create_gstate' => + 'pdf_create_gstate' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'optlist' => 'string', ), - 'PDF_create_pvf' => + 'pdf_create_pvf' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22361,14 +22361,14 @@ 'data' => 'string', 'optlist' => 'string', ), - 'PDF_create_textflow' => + 'pdf_create_textflow' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'text' => 'string', 'optlist' => 'string', ), - 'PDF_curveto' => + 'pdf_curveto' => array ( 0 => 'bool', 'p' => 'resource', @@ -22379,38 +22379,38 @@ 'x3' => 'float', 'y3' => 'float', ), - 'PDF_define_layer' => + 'pdf_define_layer' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'name' => 'string', 'optlist' => 'string', ), - 'PDF_delete' => + 'pdf_delete' => array ( 0 => 'bool', 'pdfdoc' => 'resource', ), - 'PDF_delete_pvf' => + 'pdf_delete_pvf' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'filename' => 'string', ), - 'PDF_delete_table' => + 'pdf_delete_table' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'table' => 'int', 'optlist' => 'string', ), - 'PDF_delete_textflow' => + 'pdf_delete_textflow' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'textflow' => 'int', ), - 'PDF_encoding_set_char' => + 'pdf_encoding_set_char' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22419,65 +22419,65 @@ 'glyphname' => 'string', 'uv' => 'int', ), - 'PDF_end_document' => + 'pdf_end_document' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'optlist' => 'string', ), - 'PDF_end_font' => + 'pdf_end_font' => array ( 0 => 'bool', 'pdfdoc' => 'resource', ), - 'PDF_end_glyph' => + 'pdf_end_glyph' => array ( 0 => 'bool', 'pdfdoc' => 'resource', ), - 'PDF_end_item' => + 'pdf_end_item' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'id' => 'int', ), - 'PDF_end_layer' => + 'pdf_end_layer' => array ( 0 => 'bool', 'pdfdoc' => 'resource', ), - 'PDF_end_page' => + 'pdf_end_page' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_end_page_ext' => + 'pdf_end_page_ext' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'optlist' => 'string', ), - 'PDF_end_pattern' => + 'pdf_end_pattern' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_end_template' => + 'pdf_end_template' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_endpath' => + 'pdf_endpath' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_fill' => + 'pdf_fill' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_fill_imageblock' => + 'pdf_fill_imageblock' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -22486,7 +22486,7 @@ 'image' => 'int', 'optlist' => 'string', ), - 'PDF_fill_pdfblock' => + 'pdf_fill_pdfblock' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -22495,12 +22495,12 @@ 'contents' => 'int', 'optlist' => 'string', ), - 'PDF_fill_stroke' => + 'pdf_fill_stroke' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_fill_textblock' => + 'pdf_fill_textblock' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -22509,7 +22509,7 @@ 'text' => 'string', 'optlist' => 'string', ), - 'PDF_findfont' => + 'pdf_findfont' => array ( 0 => 'int', 'p' => 'resource', @@ -22517,7 +22517,7 @@ 'encoding' => 'string', 'embed' => 'int', ), - 'PDF_fit_image' => + 'pdf_fit_image' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22526,7 +22526,7 @@ 'y' => 'float', 'optlist' => 'string', ), - 'PDF_fit_pdi_page' => + 'pdf_fit_pdi_page' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22535,7 +22535,7 @@ 'y' => 'float', 'optlist' => 'string', ), - 'PDF_fit_table' => + 'pdf_fit_table' => array ( 0 => 'string', 'pdfdoc' => 'resource', @@ -22546,7 +22546,7 @@ 'ury' => 'float', 'optlist' => 'string', ), - 'PDF_fit_textflow' => + 'pdf_fit_textflow' => array ( 0 => 'string', 'pdfdoc' => 'resource', @@ -22557,7 +22557,7 @@ 'ury' => 'float', 'optlist' => 'string', ), - 'PDF_fit_textline' => + 'pdf_fit_textline' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22566,42 +22566,42 @@ 'y' => 'float', 'optlist' => 'string', ), - 'PDF_get_apiname' => + 'pdf_get_apiname' => array ( 0 => 'string', 'pdfdoc' => 'resource', ), - 'PDF_get_buffer' => + 'pdf_get_buffer' => array ( 0 => 'string', 'p' => 'resource', ), - 'PDF_get_errmsg' => + 'pdf_get_errmsg' => array ( 0 => 'string', 'pdfdoc' => 'resource', ), - 'PDF_get_errnum' => + 'pdf_get_errnum' => array ( 0 => 'int', 'pdfdoc' => 'resource', ), - 'PDF_get_majorversion' => + 'pdf_get_majorversion' => array ( 0 => 'int', ), - 'PDF_get_minorversion' => + 'pdf_get_minorversion' => array ( 0 => 'int', ), - 'PDF_get_parameter' => + 'pdf_get_parameter' => array ( 0 => 'string', 'p' => 'resource', 'key' => 'string', 'modifier' => 'float', ), - 'PDF_get_pdi_parameter' => + 'pdf_get_pdi_parameter' => array ( 0 => 'string', 'p' => 'resource', @@ -22610,7 +22610,7 @@ 'page' => 'int', 'reserved' => 'int', ), - 'PDF_get_pdi_value' => + 'pdf_get_pdi_value' => array ( 0 => 'float', 'p' => 'resource', @@ -22619,14 +22619,14 @@ 'page' => 'int', 'reserved' => 'int', ), - 'PDF_get_value' => + 'pdf_get_value' => array ( 0 => 'float', 'p' => 'resource', 'key' => 'string', 'modifier' => 'float', ), - 'PDF_info_font' => + 'pdf_info_font' => array ( 0 => 'float', 'pdfdoc' => 'resource', @@ -22634,7 +22634,7 @@ 'keyword' => 'string', 'optlist' => 'string', ), - 'PDF_info_matchbox' => + 'pdf_info_matchbox' => array ( 0 => 'float', 'pdfdoc' => 'resource', @@ -22642,21 +22642,21 @@ 'num' => 'int', 'keyword' => 'string', ), - 'PDF_info_table' => + 'pdf_info_table' => array ( 0 => 'float', 'pdfdoc' => 'resource', 'table' => 'int', 'keyword' => 'string', ), - 'PDF_info_textflow' => + 'pdf_info_textflow' => array ( 0 => 'float', 'pdfdoc' => 'resource', 'textflow' => 'int', 'keyword' => 'string', ), - 'PDF_info_textline' => + 'pdf_info_textline' => array ( 0 => 'float', 'pdfdoc' => 'resource', @@ -22664,26 +22664,26 @@ 'keyword' => 'string', 'optlist' => 'string', ), - 'PDF_initgraphics' => + 'pdf_initgraphics' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_lineto' => + 'pdf_lineto' => array ( 0 => 'bool', 'p' => 'resource', 'x' => 'float', 'y' => 'float', ), - 'PDF_load_3ddata' => + 'pdf_load_3ddata' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'filename' => 'string', 'optlist' => 'string', ), - 'PDF_load_font' => + 'pdf_load_font' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -22691,14 +22691,14 @@ 'encoding' => 'string', 'optlist' => 'string', ), - 'PDF_load_iccprofile' => + 'pdf_load_iccprofile' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'profilename' => 'string', 'optlist' => 'string', ), - 'PDF_load_image' => + 'pdf_load_image' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -22706,24 +22706,24 @@ 'filename' => 'string', 'optlist' => 'string', ), - 'PDF_makespotcolor' => + 'pdf_makespotcolor' => array ( 0 => 'int', 'p' => 'resource', 'spotname' => 'string', ), - 'PDF_moveto' => + 'pdf_moveto' => array ( 0 => 'bool', 'p' => 'resource', 'x' => 'float', 'y' => 'float', ), - 'PDF_new' => + 'pdf_new' => array ( 0 => 'resource', ), - 'PDF_open_ccitt' => + 'pdf_open_ccitt' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -22734,13 +22734,13 @@ 'k' => 'int', 'blackls1' => 'int', ), - 'PDF_open_file' => + 'pdf_open_file' => array ( 0 => 'bool', 'p' => 'resource', 'filename' => 'string', ), - 'PDF_open_image' => + 'pdf_open_image' => array ( 0 => 'int', 'p' => 'resource', @@ -22754,7 +22754,7 @@ 'bpc' => 'int', 'params' => 'string', ), - 'PDF_open_image_file' => + 'pdf_open_image_file' => array ( 0 => 'int', 'p' => 'resource', @@ -22763,13 +22763,13 @@ 'stringparam' => 'string', 'intparam' => 'int', ), - 'PDF_open_memory_image' => + 'pdf_open_memory_image' => array ( 0 => 'int', 'p' => 'resource', 'image' => 'resource', ), - 'PDF_open_pdi' => + 'pdf_open_pdi' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -22777,14 +22777,14 @@ 'optlist' => 'string', 'length' => 'int', ), - 'PDF_open_pdi_document' => + 'pdf_open_pdi_document' => array ( 0 => 'int', 'p' => 'resource', 'filename' => 'string', 'optlist' => 'string', ), - 'PDF_open_pdi_page' => + 'pdf_open_pdi_page' => array ( 0 => 'int', 'p' => 'resource', @@ -22792,14 +22792,14 @@ 'pagenumber' => 'int', 'optlist' => 'string', ), - 'PDF_pcos_get_number' => + 'pdf_pcos_get_number' => array ( 0 => 'float', 'p' => 'resource', 'doc' => 'int', 'path' => 'string', ), - 'PDF_pcos_get_stream' => + 'pdf_pcos_get_stream' => array ( 0 => 'string', 'p' => 'resource', @@ -22807,14 +22807,14 @@ 'optlist' => 'string', 'path' => 'string', ), - 'PDF_pcos_get_string' => + 'pdf_pcos_get_string' => array ( 0 => 'string', 'p' => 'resource', 'doc' => 'int', 'path' => 'string', ), - 'PDF_place_image' => + 'pdf_place_image' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22823,7 +22823,7 @@ 'y' => 'float', 'scale' => 'float', ), - 'PDF_place_pdi_page' => + 'pdf_place_pdi_page' => array ( 0 => 'bool', 'pdfdoc' => 'resource', @@ -22833,7 +22833,7 @@ 'sx' => 'float', 'sy' => 'float', ), - 'PDF_process_pdi' => + 'pdf_process_pdi' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -22841,7 +22841,7 @@ 'page' => 'int', 'optlist' => 'string', ), - 'PDF_rect' => + 'pdf_rect' => array ( 0 => 'bool', 'p' => 'resource', @@ -22850,36 +22850,36 @@ 'width' => 'float', 'height' => 'float', ), - 'PDF_restore' => + 'pdf_restore' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_resume_page' => + 'pdf_resume_page' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'optlist' => 'string', ), - 'PDF_rotate' => + 'pdf_rotate' => array ( 0 => 'bool', 'p' => 'resource', 'phi' => 'float', ), - 'PDF_save' => + 'pdf_save' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_scale' => + 'pdf_scale' => array ( 0 => 'bool', 'p' => 'resource', 'sx' => 'float', 'sy' => 'float', ), - 'PDF_set_border_color' => + 'pdf_set_border_color' => array ( 0 => 'bool', 'p' => 'resource', @@ -22887,62 +22887,62 @@ 'green' => 'float', 'blue' => 'float', ), - 'PDF_set_border_dash' => + 'pdf_set_border_dash' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'black' => 'float', 'white' => 'float', ), - 'PDF_set_border_style' => + 'pdf_set_border_style' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'style' => 'string', 'width' => 'float', ), - 'PDF_set_gstate' => + 'pdf_set_gstate' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'gstate' => 'int', ), - 'PDF_set_info' => + 'pdf_set_info' => array ( 0 => 'bool', 'p' => 'resource', 'key' => 'string', 'value' => 'string', ), - 'PDF_set_layer_dependency' => + 'pdf_set_layer_dependency' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'type' => 'string', 'optlist' => 'string', ), - 'PDF_set_parameter' => + 'pdf_set_parameter' => array ( 0 => 'bool', 'p' => 'resource', 'key' => 'string', 'value' => 'string', ), - 'PDF_set_text_pos' => + 'pdf_set_text_pos' => array ( 0 => 'bool', 'p' => 'resource', 'x' => 'float', 'y' => 'float', ), - 'PDF_set_value' => + 'pdf_set_value' => array ( 0 => 'bool', 'p' => 'resource', 'key' => 'string', 'value' => 'float', ), - 'PDF_setcolor' => + 'pdf_setcolor' => array ( 0 => 'bool', 'p' => 'resource', @@ -22953,69 +22953,69 @@ 'c3' => 'float', 'c4' => 'float', ), - 'PDF_setdash' => + 'pdf_setdash' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'b' => 'float', 'w' => 'float', ), - 'PDF_setdashpattern' => + 'pdf_setdashpattern' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'optlist' => 'string', ), - 'PDF_setflat' => + 'pdf_setflat' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'flatness' => 'float', ), - 'PDF_setfont' => + 'pdf_setfont' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'font' => 'int', 'fontsize' => 'float', ), - 'PDF_setgray' => + 'pdf_setgray' => array ( 0 => 'bool', 'p' => 'resource', 'g' => 'float', ), - 'PDF_setgray_fill' => + 'pdf_setgray_fill' => array ( 0 => 'bool', 'p' => 'resource', 'g' => 'float', ), - 'PDF_setgray_stroke' => + 'pdf_setgray_stroke' => array ( 0 => 'bool', 'p' => 'resource', 'g' => 'float', ), - 'PDF_setlinecap' => + 'pdf_setlinecap' => array ( 0 => 'bool', 'p' => 'resource', 'linecap' => 'int', ), - 'PDF_setlinejoin' => + 'pdf_setlinejoin' => array ( 0 => 'bool', 'p' => 'resource', 'value' => 'int', ), - 'PDF_setlinewidth' => + 'pdf_setlinewidth' => array ( 0 => 'bool', 'p' => 'resource', 'width' => 'float', ), - 'PDF_setmatrix' => + 'pdf_setmatrix' => array ( 0 => 'bool', 'p' => 'resource', @@ -23026,13 +23026,13 @@ 'e' => 'float', 'f' => 'float', ), - 'PDF_setmiterlimit' => + 'pdf_setmiterlimit' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'miter' => 'float', ), - 'PDF_setrgbcolor' => + 'pdf_setrgbcolor' => array ( 0 => 'bool', 'p' => 'resource', @@ -23040,7 +23040,7 @@ 'green' => 'float', 'blue' => 'float', ), - 'PDF_setrgbcolor_fill' => + 'pdf_setrgbcolor_fill' => array ( 0 => 'bool', 'p' => 'resource', @@ -23048,7 +23048,7 @@ 'green' => 'float', 'blue' => 'float', ), - 'PDF_setrgbcolor_stroke' => + 'pdf_setrgbcolor_stroke' => array ( 0 => 'bool', 'p' => 'resource', @@ -23056,7 +23056,7 @@ 'green' => 'float', 'blue' => 'float', ), - 'PDF_shading' => + 'pdf_shading' => array ( 0 => 'int', 'pdfdoc' => 'resource', @@ -23071,26 +23071,26 @@ 'c4' => 'float', 'optlist' => 'string', ), - 'PDF_shading_pattern' => + 'pdf_shading_pattern' => array ( 0 => 'int', 'pdfdoc' => 'resource', 'shading' => 'int', 'optlist' => 'string', ), - 'PDF_shfill' => + 'pdf_shfill' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'shading' => 'int', ), - 'PDF_show' => + 'pdf_show' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'text' => 'string', ), - 'PDF_show_boxed' => + 'pdf_show_boxed' => array ( 0 => 'int', 'p' => 'resource', @@ -23102,7 +23102,7 @@ 'mode' => 'string', 'feature' => 'string', ), - 'PDF_show_xy' => + 'pdf_show_xy' => array ( 0 => 'bool', 'p' => 'resource', @@ -23110,14 +23110,14 @@ 'x' => 'float', 'y' => 'float', ), - 'PDF_skew' => + 'pdf_skew' => array ( 0 => 'bool', 'p' => 'resource', 'alpha' => 'float', 'beta' => 'float', ), - 'PDF_stringwidth' => + 'pdf_stringwidth' => array ( 0 => 'float', 'p' => 'resource', @@ -23125,50 +23125,50 @@ 'font' => 'int', 'fontsize' => 'float', ), - 'PDF_stroke' => + 'pdf_stroke' => array ( 0 => 'bool', 'p' => 'resource', ), - 'PDF_suspend_page' => + 'pdf_suspend_page' => array ( 0 => 'bool', 'pdfdoc' => 'resource', 'optlist' => 'string', ), - 'PDF_translate' => + 'pdf_translate' => array ( 0 => 'bool', 'p' => 'resource', 'tx' => 'float', 'ty' => 'float', ), - 'PDF_utf16_to_utf8' => + 'pdf_utf16_to_utf8' => array ( 0 => 'string', 'pdfdoc' => 'resource', 'utf16string' => 'string', ), - 'PDF_utf32_to_utf16' => + 'pdf_utf32_to_utf16' => array ( 0 => 'string', 'pdfdoc' => 'resource', 'utf32string' => 'string', 'ordering' => 'string', ), - 'PDF_utf8_to_utf16' => + 'pdf_utf8_to_utf16' => array ( 0 => 'string', 'pdfdoc' => 'resource', 'utf8string' => 'string', 'ordering' => 'string', ), - 'PDFlib::activate_item' => + 'pdflib::activate_item' => array ( 0 => 'bool', 'id' => 'mixed', ), - 'PDFlib::add_launchlink' => + 'pdflib::add_launchlink' => array ( 0 => 'bool', 'llx' => 'float', @@ -23177,7 +23177,7 @@ 'ury' => 'float', 'filename' => 'string', ), - 'PDFlib::add_locallink' => + 'pdflib::add_locallink' => array ( 0 => 'bool', 'lowerleftx' => 'float', @@ -23187,13 +23187,13 @@ 'page' => 'int', 'dest' => 'string', ), - 'PDFlib::add_nameddest' => + 'pdflib::add_nameddest' => array ( 0 => 'bool', 'name' => 'string', 'optlist' => 'string', ), - 'PDFlib::add_note' => + 'pdflib::add_note' => array ( 0 => 'bool', 'llx' => 'float', @@ -23205,7 +23205,7 @@ 'icon' => 'string', 'open' => 'int', ), - 'PDFlib::add_pdflink' => + 'pdflib::add_pdflink' => array ( 0 => 'bool', 'bottom_left_x' => 'float', @@ -23216,7 +23216,7 @@ 'page' => 'int', 'dest' => 'string', ), - 'PDFlib::add_table_cell' => + 'pdflib::add_table_cell' => array ( 0 => 'int', 'table' => 'int', @@ -23225,19 +23225,19 @@ 'text' => 'string', 'optlist' => 'string', ), - 'PDFlib::add_textflow' => + 'pdflib::add_textflow' => array ( 0 => 'int', 'textflow' => 'int', 'text' => 'string', 'optlist' => 'string', ), - 'PDFlib::add_thumbnail' => + 'pdflib::add_thumbnail' => array ( 0 => 'bool', 'image' => 'int', ), - 'PDFlib::add_weblink' => + 'pdflib::add_weblink' => array ( 0 => 'bool', 'lowerleftx' => 'float', @@ -23246,7 +23246,7 @@ 'upperrighty' => 'float', 'url' => 'string', ), - 'PDFlib::arc' => + 'pdflib::arc' => array ( 0 => 'bool', 'x' => 'float', @@ -23255,7 +23255,7 @@ 'alpha' => 'float', 'beta' => 'float', ), - 'PDFlib::arcn' => + 'pdflib::arcn' => array ( 0 => 'bool', 'x' => 'float', @@ -23264,7 +23264,7 @@ 'alpha' => 'float', 'beta' => 'float', ), - 'PDFlib::attach_file' => + 'pdflib::attach_file' => array ( 0 => 'bool', 'llx' => 'float', @@ -23277,13 +23277,13 @@ 'mimetype' => 'string', 'icon' => 'string', ), - 'PDFlib::begin_document' => + 'pdflib::begin_document' => array ( 0 => 'int', 'filename' => 'string', 'optlist' => 'string', ), - 'PDFlib::begin_font' => + 'pdflib::begin_font' => array ( 0 => 'bool', 'filename' => 'string', @@ -23295,7 +23295,7 @@ 'f' => 'float', 'optlist' => 'string', ), - 'PDFlib::begin_glyph' => + 'pdflib::begin_glyph' => array ( 0 => 'bool', 'glyphname' => 'string', @@ -23305,31 +23305,31 @@ 'urx' => 'float', 'ury' => 'float', ), - 'PDFlib::begin_item' => + 'pdflib::begin_item' => array ( 0 => 'int', 'tag' => 'string', 'optlist' => 'string', ), - 'PDFlib::begin_layer' => + 'pdflib::begin_layer' => array ( 0 => 'bool', 'layer' => 'int', ), - 'PDFlib::begin_page' => + 'pdflib::begin_page' => array ( 0 => 'bool', 'width' => 'float', 'height' => 'float', ), - 'PDFlib::begin_page_ext' => + 'pdflib::begin_page_ext' => array ( 0 => 'bool', 'width' => 'float', 'height' => 'float', 'optlist' => 'string', ), - 'PDFlib::begin_pattern' => + 'pdflib::begin_pattern' => array ( 0 => 'int', 'width' => 'float', @@ -23338,62 +23338,62 @@ 'ystep' => 'float', 'painttype' => 'int', ), - 'PDFlib::begin_template' => + 'pdflib::begin_template' => array ( 0 => 'int', 'width' => 'float', 'height' => 'float', ), - 'PDFlib::begin_template_ext' => + 'pdflib::begin_template_ext' => array ( 0 => 'int', 'width' => 'float', 'height' => 'float', 'optlist' => 'string', ), - 'PDFlib::circle' => + 'pdflib::circle' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', 'r' => 'float', ), - 'PDFlib::clip' => + 'pdflib::clip' => array ( 0 => 'bool', ), - 'PDFlib::close' => + 'pdflib::close' => array ( 0 => 'bool', ), - 'PDFlib::close_image' => + 'pdflib::close_image' => array ( 0 => 'bool', 'image' => 'int', ), - 'PDFlib::close_pdi' => + 'pdflib::close_pdi' => array ( 0 => 'bool', 'doc' => 'int', ), - 'PDFlib::close_pdi_page' => + 'pdflib::close_pdi_page' => array ( 0 => 'bool', 'page' => 'int', ), - 'PDFlib::closepath' => + 'pdflib::closepath' => array ( 0 => 'bool', ), - 'PDFlib::closepath_fill_stroke' => + 'pdflib::closepath_fill_stroke' => array ( 0 => 'bool', ), - 'PDFlib::closepath_stroke' => + 'pdflib::closepath_stroke' => array ( 0 => 'bool', ), - 'PDFlib::concat' => + 'pdflib::concat' => array ( 0 => 'bool', 'a' => 'float', @@ -23403,24 +23403,24 @@ 'e' => 'float', 'f' => 'float', ), - 'PDFlib::continue_text' => + 'pdflib::continue_text' => array ( 0 => 'bool', 'text' => 'string', ), - 'PDFlib::create_3dview' => + 'pdflib::create_3dview' => array ( 0 => 'int', 'username' => 'string', 'optlist' => 'string', ), - 'PDFlib::create_action' => + 'pdflib::create_action' => array ( 0 => 'int', 'type' => 'string', 'optlist' => 'string', ), - 'PDFlib::create_annotation' => + 'pdflib::create_annotation' => array ( 0 => 'bool', 'llx' => 'float', @@ -23430,13 +23430,13 @@ 'type' => 'string', 'optlist' => 'string', ), - 'PDFlib::create_bookmark' => + 'pdflib::create_bookmark' => array ( 0 => 'int', 'text' => 'string', 'optlist' => 'string', ), - 'PDFlib::create_field' => + 'pdflib::create_field' => array ( 0 => 'bool', 'llx' => 'float', @@ -23447,31 +23447,31 @@ 'type' => 'string', 'optlist' => 'string', ), - 'PDFlib::create_fieldgroup' => + 'pdflib::create_fieldgroup' => array ( 0 => 'bool', 'name' => 'string', 'optlist' => 'string', ), - 'PDFlib::create_gstate' => + 'pdflib::create_gstate' => array ( 0 => 'int', 'optlist' => 'string', ), - 'PDFlib::create_pvf' => + 'pdflib::create_pvf' => array ( 0 => 'bool', 'filename' => 'string', 'data' => 'string', 'optlist' => 'string', ), - 'PDFlib::create_textflow' => + 'pdflib::create_textflow' => array ( 0 => 'int', 'text' => 'string', 'optlist' => 'string', ), - 'PDFlib::curveto' => + 'pdflib::curveto' => array ( 0 => 'bool', 'x1' => 'float', @@ -23481,33 +23481,33 @@ 'x3' => 'float', 'y3' => 'float', ), - 'PDFlib::define_layer' => + 'pdflib::define_layer' => array ( 0 => 'int', 'name' => 'string', 'optlist' => 'string', ), - 'PDFlib::delete' => + 'pdflib::delete' => array ( 0 => 'bool', ), - 'PDFlib::delete_pvf' => + 'pdflib::delete_pvf' => array ( 0 => 'int', 'filename' => 'string', ), - 'PDFlib::delete_table' => + 'pdflib::delete_table' => array ( 0 => 'bool', 'table' => 'int', 'optlist' => 'string', ), - 'PDFlib::delete_textflow' => + 'pdflib::delete_textflow' => array ( 0 => 'bool', 'textflow' => 'int', ), - 'PDFlib::encoding_set_char' => + 'pdflib::encoding_set_char' => array ( 0 => 'bool', 'encoding' => 'string', @@ -23515,58 +23515,58 @@ 'glyphname' => 'string', 'uv' => 'int', ), - 'PDFlib::end_document' => + 'pdflib::end_document' => array ( 0 => 'bool', 'optlist' => 'string', ), - 'PDFlib::end_font' => + 'pdflib::end_font' => array ( 0 => 'bool', ), - 'PDFlib::end_glyph' => + 'pdflib::end_glyph' => array ( 0 => 'bool', ), - 'PDFlib::end_item' => + 'pdflib::end_item' => array ( 0 => 'bool', 'id' => 'int', ), - 'PDFlib::end_layer' => + 'pdflib::end_layer' => array ( 0 => 'bool', ), - 'PDFlib::end_page' => + 'pdflib::end_page' => array ( 0 => 'bool', 'p' => 'mixed', ), - 'PDFlib::end_page_ext' => + 'pdflib::end_page_ext' => array ( 0 => 'bool', 'optlist' => 'string', ), - 'PDFlib::end_pattern' => + 'pdflib::end_pattern' => array ( 0 => 'bool', 'p' => 'mixed', ), - 'PDFlib::end_template' => + 'pdflib::end_template' => array ( 0 => 'bool', 'p' => 'mixed', ), - 'PDFlib::endpath' => + 'pdflib::endpath' => array ( 0 => 'bool', 'p' => 'mixed', ), - 'PDFlib::fill' => + 'pdflib::fill' => array ( 0 => 'bool', ), - 'PDFlib::fill_imageblock' => + 'pdflib::fill_imageblock' => array ( 0 => 'int', 'page' => 'int', @@ -23574,7 +23574,7 @@ 'image' => 'int', 'optlist' => 'string', ), - 'PDFlib::fill_pdfblock' => + 'pdflib::fill_pdfblock' => array ( 0 => 'int', 'page' => 'int', @@ -23582,11 +23582,11 @@ 'contents' => 'int', 'optlist' => 'string', ), - 'PDFlib::fill_stroke' => + 'pdflib::fill_stroke' => array ( 0 => 'bool', ), - 'PDFlib::fill_textblock' => + 'pdflib::fill_textblock' => array ( 0 => 'int', 'page' => 'int', @@ -23594,14 +23594,14 @@ 'text' => 'string', 'optlist' => 'string', ), - 'PDFlib::findfont' => + 'pdflib::findfont' => array ( 0 => 'int', 'fontname' => 'string', 'encoding' => 'string', 'embed' => 'int', ), - 'PDFlib::fit_image' => + 'pdflib::fit_image' => array ( 0 => 'bool', 'image' => 'int', @@ -23609,7 +23609,7 @@ 'y' => 'float', 'optlist' => 'string', ), - 'PDFlib::fit_pdi_page' => + 'pdflib::fit_pdi_page' => array ( 0 => 'bool', 'page' => 'int', @@ -23617,7 +23617,7 @@ 'y' => 'float', 'optlist' => 'string', ), - 'PDFlib::fit_table' => + 'pdflib::fit_table' => array ( 0 => 'string', 'table' => 'int', @@ -23627,7 +23627,7 @@ 'ury' => 'float', 'optlist' => 'string', ), - 'PDFlib::fit_textflow' => + 'pdflib::fit_textflow' => array ( 0 => 'string', 'textflow' => 'int', @@ -23637,7 +23637,7 @@ 'ury' => 'float', 'optlist' => 'string', ), - 'PDFlib::fit_textline' => + 'pdflib::fit_textline' => array ( 0 => 'bool', 'text' => 'string', @@ -23645,37 +23645,37 @@ 'y' => 'float', 'optlist' => 'string', ), - 'PDFlib::get_apiname' => + 'pdflib::get_apiname' => array ( 0 => 'string', ), - 'PDFlib::get_buffer' => + 'pdflib::get_buffer' => array ( 0 => 'string', ), - 'PDFlib::get_errmsg' => + 'pdflib::get_errmsg' => array ( 0 => 'string', ), - 'PDFlib::get_errnum' => + 'pdflib::get_errnum' => array ( 0 => 'int', ), - 'PDFlib::get_majorversion' => + 'pdflib::get_majorversion' => array ( 0 => 'int', ), - 'PDFlib::get_minorversion' => + 'pdflib::get_minorversion' => array ( 0 => 'int', ), - 'PDFlib::get_parameter' => + 'pdflib::get_parameter' => array ( 0 => 'string', 'key' => 'string', 'modifier' => 'float', ), - 'PDFlib::get_pdi_parameter' => + 'pdflib::get_pdi_parameter' => array ( 0 => 'string', 'key' => 'string', @@ -23683,7 +23683,7 @@ 'page' => 'int', 'reserved' => 'int', ), - 'PDFlib::get_pdi_value' => + 'pdflib::get_pdi_value' => array ( 0 => 'float', 'key' => 'string', @@ -23691,93 +23691,93 @@ 'page' => 'int', 'reserved' => 'int', ), - 'PDFlib::get_value' => + 'pdflib::get_value' => array ( 0 => 'float', 'key' => 'string', 'modifier' => 'float', ), - 'PDFlib::info_font' => + 'pdflib::info_font' => array ( 0 => 'float', 'font' => 'int', 'keyword' => 'string', 'optlist' => 'string', ), - 'PDFlib::info_matchbox' => + 'pdflib::info_matchbox' => array ( 0 => 'float', 'boxname' => 'string', 'num' => 'int', 'keyword' => 'string', ), - 'PDFlib::info_table' => + 'pdflib::info_table' => array ( 0 => 'float', 'table' => 'int', 'keyword' => 'string', ), - 'PDFlib::info_textflow' => + 'pdflib::info_textflow' => array ( 0 => 'float', 'textflow' => 'int', 'keyword' => 'string', ), - 'PDFlib::info_textline' => + 'pdflib::info_textline' => array ( 0 => 'float', 'text' => 'string', 'keyword' => 'string', 'optlist' => 'string', ), - 'PDFlib::initgraphics' => + 'pdflib::initgraphics' => array ( 0 => 'bool', ), - 'PDFlib::lineto' => + 'pdflib::lineto' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'PDFlib::load_3ddata' => + 'pdflib::load_3ddata' => array ( 0 => 'int', 'filename' => 'string', 'optlist' => 'string', ), - 'PDFlib::load_font' => + 'pdflib::load_font' => array ( 0 => 'int', 'fontname' => 'string', 'encoding' => 'string', 'optlist' => 'string', ), - 'PDFlib::load_iccprofile' => + 'pdflib::load_iccprofile' => array ( 0 => 'int', 'profilename' => 'string', 'optlist' => 'string', ), - 'PDFlib::load_image' => + 'pdflib::load_image' => array ( 0 => 'int', 'imagetype' => 'string', 'filename' => 'string', 'optlist' => 'string', ), - 'PDFlib::makespotcolor' => + 'pdflib::makespotcolor' => array ( 0 => 'int', 'spotname' => 'string', ), - 'PDFlib::moveto' => + 'pdflib::moveto' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'PDFlib::open_ccitt' => + 'pdflib::open_ccitt' => array ( 0 => 'int', 'filename' => 'string', @@ -23787,12 +23787,12 @@ 'k' => 'int', 'Blackls1' => 'int', ), - 'PDFlib::open_file' => + 'pdflib::open_file' => array ( 0 => 'bool', 'filename' => 'string', ), - 'PDFlib::open_image' => + 'pdflib::open_image' => array ( 0 => 'int', 'imagetype' => 'string', @@ -23805,7 +23805,7 @@ 'bpc' => 'int', 'params' => 'string', ), - 'PDFlib::open_image_file' => + 'pdflib::open_image_file' => array ( 0 => 'int', 'imagetype' => 'string', @@ -23813,51 +23813,51 @@ 'stringparam' => 'string', 'intparam' => 'int', ), - 'PDFlib::open_memory_image' => + 'pdflib::open_memory_image' => array ( 0 => 'int', 'image' => 'resource', ), - 'PDFlib::open_pdi' => + 'pdflib::open_pdi' => array ( 0 => 'int', 'filename' => 'string', 'optlist' => 'string', 'length' => 'int', ), - 'PDFlib::open_pdi_document' => + 'pdflib::open_pdi_document' => array ( 0 => 'int', 'filename' => 'string', 'optlist' => 'string', ), - 'PDFlib::open_pdi_page' => + 'pdflib::open_pdi_page' => array ( 0 => 'int', 'doc' => 'int', 'pagenumber' => 'int', 'optlist' => 'string', ), - 'PDFlib::pcos_get_number' => + 'pdflib::pcos_get_number' => array ( 0 => 'float', 'doc' => 'int', 'path' => 'string', ), - 'PDFlib::pcos_get_stream' => + 'pdflib::pcos_get_stream' => array ( 0 => 'string', 'doc' => 'int', 'optlist' => 'string', 'path' => 'string', ), - 'PDFlib::pcos_get_string' => + 'pdflib::pcos_get_string' => array ( 0 => 'string', 'doc' => 'int', 'path' => 'string', ), - 'PDFlib::place_image' => + 'pdflib::place_image' => array ( 0 => 'bool', 'image' => 'int', @@ -23865,7 +23865,7 @@ 'y' => 'float', 'scale' => 'float', ), - 'PDFlib::place_pdi_page' => + 'pdflib::place_pdi_page' => array ( 0 => 'bool', 'page' => 'int', @@ -23874,14 +23874,14 @@ 'sx' => 'float', 'sy' => 'float', ), - 'PDFlib::process_pdi' => + 'pdflib::process_pdi' => array ( 0 => 'int', 'doc' => 'int', 'page' => 'int', 'optlist' => 'string', ), - 'PDFlib::rect' => + 'pdflib::rect' => array ( 0 => 'bool', 'x' => 'float', @@ -23889,87 +23889,87 @@ 'width' => 'float', 'height' => 'float', ), - 'PDFlib::restore' => + 'pdflib::restore' => array ( 0 => 'bool', 'p' => 'mixed', ), - 'PDFlib::resume_page' => + 'pdflib::resume_page' => array ( 0 => 'bool', 'optlist' => 'string', ), - 'PDFlib::rotate' => + 'pdflib::rotate' => array ( 0 => 'bool', 'phi' => 'float', ), - 'PDFlib::save' => + 'pdflib::save' => array ( 0 => 'bool', 'p' => 'mixed', ), - 'PDFlib::scale' => + 'pdflib::scale' => array ( 0 => 'bool', 'sx' => 'float', 'sy' => 'float', ), - 'PDFlib::set_border_color' => + 'pdflib::set_border_color' => array ( 0 => 'bool', 'red' => 'float', 'green' => 'float', 'blue' => 'float', ), - 'PDFlib::set_border_dash' => + 'pdflib::set_border_dash' => array ( 0 => 'bool', 'black' => 'float', 'white' => 'float', ), - 'PDFlib::set_border_style' => + 'pdflib::set_border_style' => array ( 0 => 'bool', 'style' => 'string', 'width' => 'float', ), - 'PDFlib::set_gstate' => + 'pdflib::set_gstate' => array ( 0 => 'bool', 'gstate' => 'int', ), - 'PDFlib::set_info' => + 'pdflib::set_info' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'PDFlib::set_layer_dependency' => + 'pdflib::set_layer_dependency' => array ( 0 => 'bool', 'type' => 'string', 'optlist' => 'string', ), - 'PDFlib::set_parameter' => + 'pdflib::set_parameter' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'PDFlib::set_text_pos' => + 'pdflib::set_text_pos' => array ( 0 => 'bool', 'x' => 'float', 'y' => 'float', ), - 'PDFlib::set_value' => + 'pdflib::set_value' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'float', ), - 'PDFlib::setcolor' => + 'pdflib::setcolor' => array ( 0 => 'bool', 'fstype' => 'string', @@ -23979,59 +23979,59 @@ 'c3' => 'float', 'c4' => 'float', ), - 'PDFlib::setdash' => + 'pdflib::setdash' => array ( 0 => 'bool', 'b' => 'float', 'w' => 'float', ), - 'PDFlib::setdashpattern' => + 'pdflib::setdashpattern' => array ( 0 => 'bool', 'optlist' => 'string', ), - 'PDFlib::setflat' => + 'pdflib::setflat' => array ( 0 => 'bool', 'flatness' => 'float', ), - 'PDFlib::setfont' => + 'pdflib::setfont' => array ( 0 => 'bool', 'font' => 'int', 'fontsize' => 'float', ), - 'PDFlib::setgray' => + 'pdflib::setgray' => array ( 0 => 'bool', 'g' => 'float', ), - 'PDFlib::setgray_fill' => + 'pdflib::setgray_fill' => array ( 0 => 'bool', 'g' => 'float', ), - 'PDFlib::setgray_stroke' => + 'pdflib::setgray_stroke' => array ( 0 => 'bool', 'g' => 'float', ), - 'PDFlib::setlinecap' => + 'pdflib::setlinecap' => array ( 0 => 'bool', 'linecap' => 'int', ), - 'PDFlib::setlinejoin' => + 'pdflib::setlinejoin' => array ( 0 => 'bool', 'value' => 'int', ), - 'PDFlib::setlinewidth' => + 'pdflib::setlinewidth' => array ( 0 => 'bool', 'width' => 'float', ), - 'PDFlib::setmatrix' => + 'pdflib::setmatrix' => array ( 0 => 'bool', 'a' => 'float', @@ -24041,33 +24041,33 @@ 'e' => 'float', 'f' => 'float', ), - 'PDFlib::setmiterlimit' => + 'pdflib::setmiterlimit' => array ( 0 => 'bool', 'miter' => 'float', ), - 'PDFlib::setrgbcolor' => + 'pdflib::setrgbcolor' => array ( 0 => 'bool', 'red' => 'float', 'green' => 'float', 'blue' => 'float', ), - 'PDFlib::setrgbcolor_fill' => + 'pdflib::setrgbcolor_fill' => array ( 0 => 'bool', 'red' => 'float', 'green' => 'float', 'blue' => 'float', ), - 'PDFlib::setrgbcolor_stroke' => + 'pdflib::setrgbcolor_stroke' => array ( 0 => 'bool', 'red' => 'float', 'green' => 'float', 'blue' => 'float', ), - 'PDFlib::shading' => + 'pdflib::shading' => array ( 0 => 'int', 'shtype' => 'string', @@ -24081,23 +24081,23 @@ 'c4' => 'float', 'optlist' => 'string', ), - 'PDFlib::shading_pattern' => + 'pdflib::shading_pattern' => array ( 0 => 'int', 'shading' => 'int', 'optlist' => 'string', ), - 'PDFlib::shfill' => + 'pdflib::shfill' => array ( 0 => 'bool', 'shading' => 'int', ), - 'PDFlib::show' => + 'pdflib::show' => array ( 0 => 'bool', 'text' => 'string', ), - 'PDFlib::show_boxed' => + 'pdflib::show_boxed' => array ( 0 => 'int', 'text' => 'string', @@ -24108,60 +24108,60 @@ 'mode' => 'string', 'feature' => 'string', ), - 'PDFlib::show_xy' => + 'pdflib::show_xy' => array ( 0 => 'bool', 'text' => 'string', 'x' => 'float', 'y' => 'float', ), - 'PDFlib::skew' => + 'pdflib::skew' => array ( 0 => 'bool', 'alpha' => 'float', 'beta' => 'float', ), - 'PDFlib::stringwidth' => + 'pdflib::stringwidth' => array ( 0 => 'float', 'text' => 'string', 'font' => 'int', 'fontsize' => 'float', ), - 'PDFlib::stroke' => + 'pdflib::stroke' => array ( 0 => 'bool', 'p' => 'mixed', ), - 'PDFlib::suspend_page' => + 'pdflib::suspend_page' => array ( 0 => 'bool', 'optlist' => 'string', ), - 'PDFlib::translate' => + 'pdflib::translate' => array ( 0 => 'bool', 'tx' => 'float', 'ty' => 'float', ), - 'PDFlib::utf16_to_utf8' => + 'pdflib::utf16_to_utf8' => array ( 0 => 'string', 'utf16string' => 'string', ), - 'PDFlib::utf32_to_utf16' => + 'pdflib::utf32_to_utf16' => array ( 0 => 'string', 'utf32string' => 'string', 'ordering' => 'string', ), - 'PDFlib::utf8_to_utf16' => + 'pdflib::utf8_to_utf16' => array ( 0 => 'string', 'utf8string' => 'string', 'ordering' => 'string', ), - 'PDO::__construct' => + 'pdo::__construct' => array ( 0 => 'void', 'dsn' => 'string', @@ -24169,53 +24169,53 @@ 'password=' => 'null|string', 'options=' => 'array|null', ), - 'PDO::beginTransaction' => + 'pdo::begintransaction' => array ( 0 => 'bool', ), - 'PDO::commit' => + 'pdo::commit' => array ( 0 => 'bool', ), - 'PDO::cubrid_schema' => + 'pdo::cubrid_schema' => array ( 0 => 'array', 'schema_type' => 'int', 'table_name=' => 'string', 'col_name=' => 'string', ), - 'PDO::errorCode' => + 'pdo::errorcode' => array ( 0 => 'null|string', ), - 'PDO::errorInfo' => + 'pdo::errorinfo' => array ( 0 => 'array{0: null|string, 1: int|null, 2: null|string, 3?: mixed, 4?: mixed}', ), - 'PDO::exec' => + 'pdo::exec' => array ( 0 => 'false|int', 'statement' => 'string', ), - 'PDO::getAttribute' => + 'pdo::getattribute' => array ( 0 => 'mixed', 'attribute' => 'int', ), - 'PDO::getAvailableDrivers' => + 'pdo::getavailabledrivers' => array ( 0 => 'array', ), - 'PDO::inTransaction' => + 'pdo::intransaction' => array ( 0 => 'bool', ), - 'PDO::lastInsertId' => + 'pdo::lastinsertid' => array ( 0 => 'string', 'name=' => 'null|string', ), - 'PDO::pgsqlCopyFromArray' => + 'pdo::pgsqlcopyfromarray' => array ( 0 => 'bool', 'table_name' => 'string', @@ -24224,7 +24224,7 @@ 'null_as' => 'string', 'fields' => 'string', ), - 'PDO::pgsqlCopyFromFile' => + 'pdo::pgsqlcopyfromfile' => array ( 0 => 'bool', 'table_name' => 'string', @@ -24233,7 +24233,7 @@ 'null_as' => 'string', 'fields' => 'string', ), - 'PDO::pgsqlCopyToArray' => + 'pdo::pgsqlcopytoarray' => array ( 0 => 'array', 'table_name' => 'string', @@ -24241,7 +24241,7 @@ 'null_as' => 'string', 'fields' => 'string', ), - 'PDO::pgsqlCopyToFile' => + 'pdo::pgsqlcopytofile' => array ( 0 => 'bool', 'table_name' => 'string', @@ -24250,50 +24250,50 @@ 'null_as' => 'string', 'fields' => 'string', ), - 'PDO::pgsqlGetNotify' => + 'pdo::pgsqlgetnotify' => array ( 0 => 'array{message: string, payload?: string, pid: int}|false', 'result_type=' => 'PDO::FETCH_*', 'ms_timeout=' => 'int', ), - 'PDO::pgsqlGetPid' => + 'pdo::pgsqlgetpid' => array ( 0 => 'int', ), - 'PDO::pgsqlLOBCreate' => + 'pdo::pgsqllobcreate' => array ( 0 => 'string', ), - 'PDO::pgsqlLOBOpen' => + 'pdo::pgsqllobopen' => array ( 0 => 'resource', 'oid' => 'string', 'mode=' => 'string', ), - 'PDO::pgsqlLOBUnlink' => + 'pdo::pgsqllobunlink' => array ( 0 => 'bool', 'oid' => 'string', ), - 'PDO::prepare' => + 'pdo::prepare' => array ( 0 => 'PDOStatement|false', 'query' => 'string', 'options=' => 'array', ), - 'PDO::query' => + 'pdo::query' => array ( 0 => 'PDOStatement|false', 'query' => 'string', ), - 'PDO::query\'1' => + 'pdo::query\'1' => array ( 0 => 'PDOStatement|false', 'query' => 'string', 'fetch_column' => 'int', 'colno=' => 'int', ), - 'PDO::query\'2' => + 'pdo::query\'2' => array ( 0 => 'PDOStatement|false', 'query' => 'string', @@ -24301,30 +24301,30 @@ 'classname' => 'string', 'constructorArgs' => 'array', ), - 'PDO::query\'3' => + 'pdo::query\'3' => array ( 0 => 'PDOStatement|false', 'query' => 'string', 'fetch_into' => 'int', 'object' => 'object', ), - 'PDO::quote' => + 'pdo::quote' => array ( 0 => 'false|string', 'string' => 'string', 'type=' => 'int', ), - 'PDO::rollBack' => + 'pdo::rollback' => array ( 0 => 'bool', ), - 'PDO::setAttribute' => + 'pdo::setattribute' => array ( 0 => 'bool', 'attribute' => 'int', 'value' => 'mixed', ), - 'PDO::sqliteCreateAggregate' => + 'pdo::sqlitecreateaggregate' => array ( 0 => 'bool', 'function_name' => 'string', @@ -24332,48 +24332,48 @@ 'finalize_func' => 'callable', 'num_args=' => 'int', ), - 'PDO::sqliteCreateCollation' => + 'pdo::sqlitecreatecollation' => array ( 0 => 'bool', 'name' => 'string', 'callback' => 'callable', ), - 'PDO::sqliteCreateFunction' => + 'pdo::sqlitecreatefunction' => array ( 0 => 'bool', 'function_name' => 'string', 'callback' => 'callable', 'num_args=' => 'int', ), - 'PDOException::getCode' => + 'pdoexception::getcode' => array ( 0 => 'int|string', ), - 'PDOException::getFile' => + 'pdoexception::getfile' => array ( 0 => 'string', ), - 'PDOException::getLine' => + 'pdoexception::getline' => array ( 0 => 'int', ), - 'PDOException::getMessage' => + 'pdoexception::getmessage' => array ( 0 => 'string', ), - 'PDOException::getPrevious' => + 'pdoexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'PDOException::getTrace' => + 'pdoexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'PDOException::getTraceAsString' => + 'pdoexception::gettraceasstring' => array ( 0 => 'string', ), - 'PDOStatement::bindColumn' => + 'pdostatement::bindcolumn' => array ( 0 => 'bool', 'column' => 'int|string', @@ -24382,7 +24382,7 @@ 'maxLength=' => 'int', 'driverOptions=' => 'mixed', ), - 'PDOStatement::bindParam' => + 'pdostatement::bindparam' => array ( 0 => 'bool', 'param' => 'int|string', @@ -24391,710 +24391,710 @@ 'maxLength=' => 'int', 'driverOptions=' => 'mixed', ), - 'PDOStatement::bindValue' => + 'pdostatement::bindvalue' => array ( 0 => 'bool', 'param' => 'int|string', 'value' => 'mixed', 'type=' => 'int', ), - 'PDOStatement::closeCursor' => + 'pdostatement::closecursor' => array ( 0 => 'bool', ), - 'PDOStatement::columnCount' => + 'pdostatement::columncount' => array ( 0 => 'int', ), - 'PDOStatement::debugDumpParams' => + 'pdostatement::debugdumpparams' => array ( 0 => 'void', ), - 'PDOStatement::errorCode' => + 'pdostatement::errorcode' => array ( 0 => 'string', ), - 'PDOStatement::errorInfo' => + 'pdostatement::errorinfo' => array ( 0 => 'array{0: null|string, 1: int|null, 2: null|string, 3?: mixed, 4?: mixed}', ), - 'PDOStatement::execute' => + 'pdostatement::execute' => array ( 0 => 'bool', 'bound_input_params=' => 'array|null', ), - 'PDOStatement::fetch' => + 'pdostatement::fetch' => array ( 0 => 'mixed', 'how=' => 'int', 'orientation=' => 'int', 'offset=' => 'int', ), - 'PDOStatement::fetchAll' => + 'pdostatement::fetchall' => array ( 0 => 'array|false', 'how=' => 'int', 'fetch_argument=' => 'callable|int|string', 'ctor_args=' => 'array|null', ), - 'PDOStatement::fetchColumn' => + 'pdostatement::fetchcolumn' => array ( 0 => 'null|scalar', 'column_number=' => 'int', ), - 'PDOStatement::fetchObject' => + 'pdostatement::fetchobject' => array ( 0 => 'false|object', 'class=' => 'class-string|null', 'constructorArgs=' => 'array', ), - 'PDOStatement::getAttribute' => + 'pdostatement::getattribute' => array ( 0 => 'mixed', 'name' => 'int', ), - 'PDOStatement::getColumnMeta' => + 'pdostatement::getcolumnmeta' => array ( 0 => 'array|false', 'column' => 'int', ), - 'PDOStatement::nextRowset' => + 'pdostatement::nextrowset' => array ( 0 => 'bool', ), - 'PDOStatement::rowCount' => + 'pdostatement::rowcount' => array ( 0 => 'int', ), - 'PDOStatement::setAttribute' => + 'pdostatement::setattribute' => array ( 0 => 'bool', 'attribute' => 'int', 'value' => 'mixed', ), - 'PDOStatement::setFetchMode' => + 'pdostatement::setfetchmode' => array ( 0 => 'bool', 'mode' => 'int', ), - 'PDOStatement::setFetchMode\'1' => + 'pdostatement::setfetchmode\'1' => array ( 0 => 'bool', 'fetch_column' => 'int', 'colno' => 'int', ), - 'PDOStatement::setFetchMode\'2' => + 'pdostatement::setfetchmode\'2' => array ( 0 => 'bool', 'fetch_class' => 'int', 'classname' => 'string', 'ctorargs' => 'array', ), - 'PDOStatement::setFetchMode\'3' => + 'pdostatement::setfetchmode\'3' => array ( 0 => 'bool', 'fetch_into' => 'int', 'object' => 'object', ), - 'ParentIterator::__construct' => + 'parentiterator::__construct' => array ( 0 => 'void', 'iterator' => 'RecursiveIterator', ), - 'ParentIterator::accept' => + 'parentiterator::accept' => array ( 0 => 'bool', ), - 'ParentIterator::getChildren' => + 'parentiterator::getchildren' => array ( 0 => 'ParentIterator|null', ), - 'ParentIterator::hasChildren' => + 'parentiterator::haschildren' => array ( 0 => 'bool', ), - 'ParentIterator::next' => + 'parentiterator::next' => array ( 0 => 'void', ), - 'ParentIterator::rewind' => + 'parentiterator::rewind' => array ( 0 => 'void', ), - 'ParentIterator::valid' => + 'parentiterator::valid' => array ( 0 => 'bool', ), - 'Parle\\Lexer::advance' => + 'parle\\lexer::advance' => array ( 0 => 'void', ), - 'Parle\\Lexer::build' => + 'parle\\lexer::build' => array ( 0 => 'void', ), - 'Parle\\Lexer::callout' => + 'parle\\lexer::callout' => array ( 0 => 'void', 'id' => 'int', 'callback' => 'callable', ), - 'Parle\\Lexer::consume' => + 'parle\\lexer::consume' => array ( 0 => 'void', 'data' => 'string', ), - 'Parle\\Lexer::dump' => + 'parle\\lexer::dump' => array ( 0 => 'void', ), - 'Parle\\Lexer::getToken' => + 'parle\\lexer::gettoken' => array ( 0 => 'Parle\\Token', ), - 'Parle\\Lexer::insertMacro' => + 'parle\\lexer::insertmacro' => array ( 0 => 'void', 'name' => 'string', 'regex' => 'string', ), - 'Parle\\Lexer::push' => + 'parle\\lexer::push' => array ( 0 => 'void', 'regex' => 'string', 'id' => 'int', ), - 'Parle\\Lexer::reset' => + 'parle\\lexer::reset' => array ( 0 => 'void', 'pos' => 'int', ), - 'Parle\\Parser::advance' => + 'parle\\parser::advance' => array ( 0 => 'void', ), - 'Parle\\Parser::build' => + 'parle\\parser::build' => array ( 0 => 'void', ), - 'Parle\\Parser::consume' => + 'parle\\parser::consume' => array ( 0 => 'void', 'data' => 'string', 'lexer' => 'Parle\\Lexer', ), - 'Parle\\Parser::dump' => + 'parle\\parser::dump' => array ( 0 => 'void', ), - 'Parle\\Parser::errorInfo' => + 'parle\\parser::errorinfo' => array ( 0 => 'Parle\\ErrorInfo', ), - 'Parle\\Parser::left' => + 'parle\\parser::left' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\Parser::nonassoc' => + 'parle\\parser::nonassoc' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\Parser::precedence' => + 'parle\\parser::precedence' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\Parser::push' => + 'parle\\parser::push' => array ( 0 => 'int', 'name' => 'string', 'rule' => 'string', ), - 'Parle\\Parser::reset' => + 'parle\\parser::reset' => array ( 0 => 'void', 'tokenId' => 'int', ), - 'Parle\\Parser::right' => + 'parle\\parser::right' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\Parser::sigil' => + 'parle\\parser::sigil' => array ( 0 => 'string', 'idx' => 'array', ), - 'Parle\\Parser::token' => + 'parle\\parser::token' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\Parser::tokenId' => + 'parle\\parser::tokenid' => array ( 0 => 'int', 'token' => 'string', ), - 'Parle\\Parser::trace' => + 'parle\\parser::trace' => array ( 0 => 'string', ), - 'Parle\\Parser::validate' => + 'parle\\parser::validate' => array ( 0 => 'bool', 'data' => 'string', 'lexer' => 'Parle\\Lexer', ), - 'Parle\\RLexer::advance' => + 'parle\\rlexer::advance' => array ( 0 => 'void', ), - 'Parle\\RLexer::build' => + 'parle\\rlexer::build' => array ( 0 => 'void', ), - 'Parle\\RLexer::callout' => + 'parle\\rlexer::callout' => array ( 0 => 'void', 'id' => 'int', 'callback' => 'callable', ), - 'Parle\\RLexer::consume' => + 'parle\\rlexer::consume' => array ( 0 => 'void', 'data' => 'string', ), - 'Parle\\RLexer::dump' => + 'parle\\rlexer::dump' => array ( 0 => 'void', ), - 'Parle\\RLexer::getToken' => + 'parle\\rlexer::gettoken' => array ( 0 => 'Parle\\Token', ), - 'Parle\\RLexer::push' => + 'parle\\rlexer::push' => array ( 0 => 'void', 'state' => 'string', 'regex' => 'string', 'newState' => 'string', ), - 'Parle\\RLexer::pushState' => + 'parle\\rlexer::pushstate' => array ( 0 => 'int', 'state' => 'string', ), - 'Parle\\RLexer::reset' => + 'parle\\rlexer::reset' => array ( 0 => 'void', 'pos' => 'int', ), - 'Parle\\RParser::advance' => + 'parle\\rparser::advance' => array ( 0 => 'void', ), - 'Parle\\RParser::build' => + 'parle\\rparser::build' => array ( 0 => 'void', ), - 'Parle\\RParser::consume' => + 'parle\\rparser::consume' => array ( 0 => 'void', 'data' => 'string', 'lexer' => 'Parle\\Lexer', ), - 'Parle\\RParser::dump' => + 'parle\\rparser::dump' => array ( 0 => 'void', ), - 'Parle\\RParser::errorInfo' => + 'parle\\rparser::errorinfo' => array ( 0 => 'Parle\\ErrorInfo', ), - 'Parle\\RParser::left' => + 'parle\\rparser::left' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\RParser::nonassoc' => + 'parle\\rparser::nonassoc' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\RParser::precedence' => + 'parle\\rparser::precedence' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\RParser::push' => + 'parle\\rparser::push' => array ( 0 => 'int', 'name' => 'string', 'rule' => 'string', ), - 'Parle\\RParser::reset' => + 'parle\\rparser::reset' => array ( 0 => 'void', 'tokenId' => 'int', ), - 'Parle\\RParser::right' => + 'parle\\rparser::right' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\RParser::sigil' => + 'parle\\rparser::sigil' => array ( 0 => 'string', 'idx' => 'array', ), - 'Parle\\RParser::token' => + 'parle\\rparser::token' => array ( 0 => 'void', 'token' => 'string', ), - 'Parle\\RParser::tokenId' => + 'parle\\rparser::tokenid' => array ( 0 => 'int', 'token' => 'string', ), - 'Parle\\RParser::trace' => + 'parle\\rparser::trace' => array ( 0 => 'string', ), - 'Parle\\RParser::validate' => + 'parle\\rparser::validate' => array ( 0 => 'bool', 'data' => 'string', 'lexer' => 'Parle\\Lexer', ), - 'Parle\\Stack::pop' => + 'parle\\stack::pop' => array ( 0 => 'void', ), - 'Parle\\Stack::push' => + 'parle\\stack::push' => array ( 0 => 'void', 'item' => 'mixed', ), - 'ParseError::__clone' => + 'parseerror::__clone' => array ( 0 => 'void', ), - 'ParseError::__construct' => + 'parseerror::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'ParseError::__toString' => + 'parseerror::__tostring' => array ( 0 => 'string', ), - 'ParseError::getCode' => + 'parseerror::getcode' => array ( 0 => 'int', ), - 'ParseError::getFile' => + 'parseerror::getfile' => array ( 0 => 'string', ), - 'ParseError::getLine' => + 'parseerror::getline' => array ( 0 => 'int', ), - 'ParseError::getMessage' => + 'parseerror::getmessage' => array ( 0 => 'string', ), - 'ParseError::getPrevious' => + 'parseerror::getprevious' => array ( 0 => 'Throwable|null', ), - 'ParseError::getTrace' => + 'parseerror::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'ParseError::getTraceAsString' => + 'parseerror::gettraceasstring' => array ( 0 => 'string', ), - 'Phar::__construct' => + 'phar::__construct' => array ( 0 => 'void', 'filename' => 'string', 'flags=' => 'int', 'alias=' => 'null|string', ), - 'Phar::addEmptyDir' => + 'phar::addemptydir' => array ( 0 => 'void', 'directory' => 'string', ), - 'Phar::addFile' => + 'phar::addfile' => array ( 0 => 'void', 'filename' => 'string', 'localName=' => 'string', ), - 'Phar::addFromString' => + 'phar::addfromstring' => array ( 0 => 'void', 'localName' => 'string', 'contents' => 'string', ), - 'Phar::apiVersion' => + 'phar::apiversion' => array ( 0 => 'string', ), - 'Phar::buildFromDirectory' => + 'phar::buildfromdirectory' => array ( 0 => 'array|false', 'directory' => 'string', 'pattern=' => 'string', ), - 'Phar::buildFromIterator' => + 'phar::buildfromiterator' => array ( 0 => 'array|false', 'iterator' => 'Traversable', 'baseDirectory=' => 'string', ), - 'Phar::canCompress' => + 'phar::cancompress' => array ( 0 => 'bool', 'compression=' => 'int', ), - 'Phar::canWrite' => + 'phar::canwrite' => array ( 0 => 'bool', ), - 'Phar::compress' => + 'phar::compress' => array ( 0 => 'Phar|null', 'compression' => 'int', 'extension=' => 'string', ), - 'Phar::compressFiles' => + 'phar::compressfiles' => array ( 0 => 'void', 'compression' => 'int', ), - 'Phar::convertToData' => + 'phar::converttodata' => array ( 0 => 'PharData|null', 'format=' => 'int', 'compression=' => 'int', 'extension=' => 'string', ), - 'Phar::convertToExecutable' => + 'phar::converttoexecutable' => array ( 0 => 'Phar|null', 'format=' => 'int', 'compression=' => 'int', 'extension=' => 'string', ), - 'Phar::copy' => + 'phar::copy' => array ( 0 => 'bool', 'from' => 'string', 'to' => 'string', ), - 'Phar::count' => + 'phar::count' => array ( 0 => 'int', 'mode=' => 'int', ), - 'Phar::createDefaultStub' => + 'phar::createdefaultstub' => array ( 0 => 'string', 'index=' => 'string', 'webIndex=' => 'string', ), - 'Phar::decompress' => + 'phar::decompress' => array ( 0 => 'Phar|null', 'extension=' => 'string', ), - 'Phar::decompressFiles' => + 'phar::decompressfiles' => array ( 0 => 'bool', ), - 'Phar::delMetadata' => + 'phar::delmetadata' => array ( 0 => 'bool', ), - 'Phar::delete' => + 'phar::delete' => array ( 0 => 'bool', 'localName' => 'string', ), - 'Phar::extractTo' => + 'phar::extractto' => array ( 0 => 'bool', 'directory' => 'string', 'files=' => 'array|null|string', 'overwrite=' => 'bool', ), - 'Phar::getAlias' => + 'phar::getalias' => array ( 0 => 'null|string', ), - 'Phar::getMetadata' => + 'phar::getmetadata' => array ( 0 => 'mixed', ), - 'Phar::getModified' => + 'phar::getmodified' => array ( 0 => 'bool', ), - 'Phar::getPath' => + 'phar::getpath' => array ( 0 => 'string', ), - 'Phar::getSignature' => + 'phar::getsignature' => array ( 0 => 'array{hash: string, hash_type: string}', ), - 'Phar::getStub' => + 'phar::getstub' => array ( 0 => 'string', ), - 'Phar::getSupportedCompression' => + 'phar::getsupportedcompression' => array ( 0 => 'array', ), - 'Phar::getSupportedSignatures' => + 'phar::getsupportedsignatures' => array ( 0 => 'array', ), - 'Phar::getVersion' => + 'phar::getversion' => array ( 0 => 'string', ), - 'Phar::hasMetadata' => + 'phar::hasmetadata' => array ( 0 => 'bool', ), - 'Phar::interceptFileFuncs' => + 'phar::interceptfilefuncs' => array ( 0 => 'void', ), - 'Phar::isBuffering' => + 'phar::isbuffering' => array ( 0 => 'bool', ), - 'Phar::isCompressed' => + 'phar::iscompressed' => array ( 0 => 'false|int', ), - 'Phar::isFileFormat' => + 'phar::isfileformat' => array ( 0 => 'bool', 'format' => 'int', ), - 'Phar::isValidPharFilename' => + 'phar::isvalidpharfilename' => array ( 0 => 'bool', 'filename' => 'string', 'executable=' => 'bool', ), - 'Phar::isWritable' => + 'phar::iswritable' => array ( 0 => 'bool', ), - 'Phar::loadPhar' => + 'phar::loadphar' => array ( 0 => 'bool', 'filename' => 'string', 'alias=' => 'null|string', ), - 'Phar::mapPhar' => + 'phar::mapphar' => array ( 0 => 'bool', 'alias=' => 'null|string', 'offset=' => 'int', ), - 'Phar::mount' => + 'phar::mount' => array ( 0 => 'void', 'pharPath' => 'string', 'externalPath' => 'string', ), - 'Phar::mungServer' => + 'phar::mungserver' => array ( 0 => 'void', 'variables' => 'list', ), - 'Phar::offsetExists' => + 'phar::offsetexists' => array ( 0 => 'bool', 'localName' => 'string', ), - 'Phar::offsetGet' => + 'phar::offsetget' => array ( 0 => 'PharFileInfo', 'localName' => 'string', ), - 'Phar::offsetSet' => + 'phar::offsetset' => array ( 0 => 'void', 'localName' => 'string', 'value' => 'resource|string', ), - 'Phar::offsetUnset' => + 'phar::offsetunset' => array ( 0 => 'void', 'localName' => 'string', ), - 'Phar::running' => + 'phar::running' => array ( 0 => 'string', 'returnPhar=' => 'bool', ), - 'Phar::setAlias' => + 'phar::setalias' => array ( 0 => 'bool', 'alias' => 'string', ), - 'Phar::setDefaultStub' => + 'phar::setdefaultstub' => array ( 0 => 'bool', 'index=' => 'null|string', 'webIndex=' => 'string', ), - 'Phar::setMetadata' => + 'phar::setmetadata' => array ( 0 => 'void', 'metadata' => 'mixed', ), - 'Phar::setSignatureAlgorithm' => + 'phar::setsignaturealgorithm' => array ( 0 => 'void', 'algo' => 'int', 'privateKey=' => 'string', ), - 'Phar::setStub' => + 'phar::setstub' => array ( 0 => 'bool', 'stub' => 'string', 'length=' => 'int', ), - 'Phar::startBuffering' => + 'phar::startbuffering' => array ( 0 => 'void', ), - 'Phar::stopBuffering' => + 'phar::stopbuffering' => array ( 0 => 'void', ), - 'Phar::unlinkArchive' => + 'phar::unlinkarchive' => array ( 0 => 'bool', 'filename' => 'string', ), - 'Phar::webPhar' => + 'phar::webphar' => array ( 0 => 'void', 'alias=' => 'null|string', @@ -25103,7 +25103,7 @@ 'mimeTypes=' => 'array', 'rewrite=' => 'callable', ), - 'PharData::__construct' => + 'phardata::__construct' => array ( 0 => 'void', 'filename' => 'string', @@ -25111,632 +25111,632 @@ 'alias=' => 'null|string', 'format=' => 'int', ), - 'PharData::addEmptyDir' => + 'phardata::addemptydir' => array ( 0 => 'void', 'directory' => 'string', ), - 'PharData::addFile' => + 'phardata::addfile' => array ( 0 => 'void', 'filename' => 'string', 'localName=' => 'string', ), - 'PharData::addFromString' => + 'phardata::addfromstring' => array ( 0 => 'void', 'localName' => 'string', 'contents' => 'string', ), - 'PharData::buildFromDirectory' => + 'phardata::buildfromdirectory' => array ( 0 => 'array|false', 'directory' => 'string', 'pattern=' => 'string', ), - 'PharData::buildFromIterator' => + 'phardata::buildfromiterator' => array ( 0 => 'array|false', 'iterator' => 'Traversable', 'baseDirectory=' => 'string', ), - 'PharData::compress' => + 'phardata::compress' => array ( 0 => 'PharData|null', 'compression' => 'int', 'extension=' => 'string', ), - 'PharData::compressFiles' => + 'phardata::compressfiles' => array ( 0 => 'void', 'compression' => 'int', ), - 'PharData::convertToData' => + 'phardata::converttodata' => array ( 0 => 'PharData|null', 'format=' => 'int', 'compression=' => 'int', 'extension=' => 'string', ), - 'PharData::convertToExecutable' => + 'phardata::converttoexecutable' => array ( 0 => 'Phar|null', 'format=' => 'int', 'compression=' => 'int', 'extension=' => 'string', ), - 'PharData::copy' => + 'phardata::copy' => array ( 0 => 'bool', 'from' => 'string', 'to' => 'string', ), - 'PharData::decompress' => + 'phardata::decompress' => array ( 0 => 'PharData|null', 'extension=' => 'string', ), - 'PharData::decompressFiles' => + 'phardata::decompressfiles' => array ( 0 => 'bool', ), - 'PharData::delMetadata' => + 'phardata::delmetadata' => array ( 0 => 'bool', ), - 'PharData::delete' => + 'phardata::delete' => array ( 0 => 'bool', 'localName' => 'string', ), - 'PharData::extractTo' => + 'phardata::extractto' => array ( 0 => 'bool', 'directory' => 'string', 'files=' => 'array|null|string', 'overwrite=' => 'bool', ), - 'PharData::isWritable' => + 'phardata::iswritable' => array ( 0 => 'bool', ), - 'PharData::offsetExists' => + 'phardata::offsetexists' => array ( 0 => 'bool', 'localName' => 'string', ), - 'PharData::offsetGet' => + 'phardata::offsetget' => array ( 0 => 'PharFileInfo', 'localName' => 'string', ), - 'PharData::offsetSet' => + 'phardata::offsetset' => array ( 0 => 'void', 'localName' => 'string', 'value' => 'string', ), - 'PharData::offsetUnset' => + 'phardata::offsetunset' => array ( 0 => 'void', 'localName' => 'string', ), - 'PharData::setAlias' => + 'phardata::setalias' => array ( 0 => 'bool', 'alias' => 'string', ), - 'PharData::setDefaultStub' => + 'phardata::setdefaultstub' => array ( 0 => 'bool', 'index=' => 'null|string', 'webIndex=' => 'string', ), - 'PharData::setMetadata' => + 'phardata::setmetadata' => array ( 0 => 'void', 'metadata' => 'mixed', ), - 'PharData::setSignatureAlgorithm' => + 'phardata::setsignaturealgorithm' => array ( 0 => 'void', 'algo' => 'int', 'privateKey=' => 'string', ), - 'PharData::setStub' => + 'phardata::setstub' => array ( 0 => 'bool', 'stub' => 'string', 'length=' => 'int', ), - 'PharFileInfo::__construct' => + 'pharfileinfo::__construct' => array ( 0 => 'void', 'filename' => 'string', ), - 'PharFileInfo::chmod' => + 'pharfileinfo::chmod' => array ( 0 => 'void', 'perms' => 'int', ), - 'PharFileInfo::compress' => + 'pharfileinfo::compress' => array ( 0 => 'bool', 'compression' => 'int', ), - 'PharFileInfo::decompress' => + 'pharfileinfo::decompress' => array ( 0 => 'bool', ), - 'PharFileInfo::delMetadata' => + 'pharfileinfo::delmetadata' => array ( 0 => 'bool', ), - 'PharFileInfo::getCRC32' => + 'pharfileinfo::getcrc32' => array ( 0 => 'int', ), - 'PharFileInfo::getCompressedSize' => + 'pharfileinfo::getcompressedsize' => array ( 0 => 'int', ), - 'PharFileInfo::getContent' => + 'pharfileinfo::getcontent' => array ( 0 => 'string', ), - 'PharFileInfo::getMetadata' => + 'pharfileinfo::getmetadata' => array ( 0 => 'mixed', ), - 'PharFileInfo::getPharFlags' => + 'pharfileinfo::getpharflags' => array ( 0 => 'int', ), - 'PharFileInfo::hasMetadata' => + 'pharfileinfo::hasmetadata' => array ( 0 => 'bool', ), - 'PharFileInfo::isCRCChecked' => + 'pharfileinfo::iscrcchecked' => array ( 0 => 'bool', ), - 'PharFileInfo::isCompressed' => + 'pharfileinfo::iscompressed' => array ( 0 => 'bool', 'compression=' => 'int', ), - 'PharFileInfo::setMetadata' => + 'pharfileinfo::setmetadata' => array ( 0 => 'void', 'metadata' => 'mixed', ), - 'Pool::__construct' => + 'pool::__construct' => array ( 0 => 'void', 'size' => 'int', 'class' => 'string', 'ctor=' => 'array', ), - 'Pool::collect' => + 'pool::collect' => array ( 0 => 'int', 'collector=' => 'callable', ), - 'Pool::resize' => + 'pool::resize' => array ( 0 => 'void', 'size' => 'int', ), - 'Pool::shutdown' => + 'pool::shutdown' => array ( 0 => 'void', ), - 'Pool::submit' => + 'pool::submit' => array ( 0 => 'int', 'task' => 'Threaded', ), - 'Pool::submitTo' => + 'pool::submitto' => array ( 0 => 'int', 'worker' => 'int', 'task' => 'Threaded', ), - 'Postal\\Expand::expand_address' => + 'postal\\expand::expand_address' => array ( 0 => 'array', 'address' => 'string', 'options=' => 'array', ), - 'Postal\\Parser::parse_address' => + 'postal\\parser::parse_address' => array ( 0 => 'array', 'address' => 'string', 'options=' => 'array', ), - 'QuickHashIntHash::__construct' => + 'quickhashinthash::__construct' => array ( 0 => 'void', 'size' => 'int', 'options=' => 'int', ), - 'QuickHashIntHash::add' => + 'quickhashinthash::add' => array ( 0 => 'bool', 'key' => 'int', 'value=' => 'int', ), - 'QuickHashIntHash::delete' => + 'quickhashinthash::delete' => array ( 0 => 'bool', 'key' => 'int', ), - 'QuickHashIntHash::exists' => + 'quickhashinthash::exists' => array ( 0 => 'bool', 'key' => 'int', ), - 'QuickHashIntHash::get' => + 'quickhashinthash::get' => array ( 0 => 'int', 'key' => 'int', ), - 'QuickHashIntHash::getSize' => + 'quickhashinthash::getsize' => array ( 0 => 'int', ), - 'QuickHashIntHash::loadFromFile' => + 'quickhashinthash::loadfromfile' => array ( 0 => 'QuickHashIntHash', 'filename' => 'string', 'options=' => 'int', ), - 'QuickHashIntHash::loadFromString' => + 'quickhashinthash::loadfromstring' => array ( 0 => 'QuickHashIntHash', 'contents' => 'string', 'options=' => 'int', ), - 'QuickHashIntHash::saveToFile' => + 'quickhashinthash::savetofile' => array ( 0 => 'void', 'filename' => 'string', ), - 'QuickHashIntHash::saveToString' => + 'quickhashinthash::savetostring' => array ( 0 => 'string', ), - 'QuickHashIntHash::set' => + 'quickhashinthash::set' => array ( 0 => 'bool', 'key' => 'int', 'value' => 'int', ), - 'QuickHashIntHash::update' => + 'quickhashinthash::update' => array ( 0 => 'bool', 'key' => 'int', 'value' => 'int', ), - 'QuickHashIntSet::__construct' => + 'quickhashintset::__construct' => array ( 0 => 'void', 'size' => 'int', 'options=' => 'int', ), - 'QuickHashIntSet::add' => + 'quickhashintset::add' => array ( 0 => 'bool', 'key' => 'int', ), - 'QuickHashIntSet::delete' => + 'quickhashintset::delete' => array ( 0 => 'bool', 'key' => 'int', ), - 'QuickHashIntSet::exists' => + 'quickhashintset::exists' => array ( 0 => 'bool', 'key' => 'int', ), - 'QuickHashIntSet::getSize' => + 'quickhashintset::getsize' => array ( 0 => 'int', ), - 'QuickHashIntSet::loadFromFile' => + 'quickhashintset::loadfromfile' => array ( 0 => 'QuickHashIntSet', 'filename' => 'string', 'size=' => 'int', 'options=' => 'int', ), - 'QuickHashIntSet::loadFromString' => + 'quickhashintset::loadfromstring' => array ( 0 => 'QuickHashIntSet', 'contents' => 'string', 'size=' => 'int', 'options=' => 'int', ), - 'QuickHashIntSet::saveToFile' => + 'quickhashintset::savetofile' => array ( 0 => 'void', 'filename' => 'string', ), - 'QuickHashIntSet::saveToString' => + 'quickhashintset::savetostring' => array ( 0 => 'string', ), - 'QuickHashIntStringHash::__construct' => + 'quickhashintstringhash::__construct' => array ( 0 => 'void', 'size' => 'int', 'options=' => 'int', ), - 'QuickHashIntStringHash::add' => + 'quickhashintstringhash::add' => array ( 0 => 'bool', 'key' => 'int', 'value' => 'string', ), - 'QuickHashIntStringHash::delete' => + 'quickhashintstringhash::delete' => array ( 0 => 'bool', 'key' => 'int', ), - 'QuickHashIntStringHash::exists' => + 'quickhashintstringhash::exists' => array ( 0 => 'bool', 'key' => 'int', ), - 'QuickHashIntStringHash::get' => + 'quickhashintstringhash::get' => array ( 0 => 'mixed', 'key' => 'int', ), - 'QuickHashIntStringHash::getSize' => + 'quickhashintstringhash::getsize' => array ( 0 => 'int', ), - 'QuickHashIntStringHash::loadFromFile' => + 'quickhashintstringhash::loadfromfile' => array ( 0 => 'QuickHashIntStringHash', 'filename' => 'string', 'size=' => 'int', 'options=' => 'int', ), - 'QuickHashIntStringHash::loadFromString' => + 'quickhashintstringhash::loadfromstring' => array ( 0 => 'QuickHashIntStringHash', 'contents' => 'string', 'size=' => 'int', 'options=' => 'int', ), - 'QuickHashIntStringHash::saveToFile' => + 'quickhashintstringhash::savetofile' => array ( 0 => 'void', 'filename' => 'string', ), - 'QuickHashIntStringHash::saveToString' => + 'quickhashintstringhash::savetostring' => array ( 0 => 'string', ), - 'QuickHashIntStringHash::set' => + 'quickhashintstringhash::set' => array ( 0 => 'int', 'key' => 'int', 'value' => 'string', ), - 'QuickHashIntStringHash::update' => + 'quickhashintstringhash::update' => array ( 0 => 'bool', 'key' => 'int', 'value' => 'string', ), - 'QuickHashStringIntHash::__construct' => + 'quickhashstringinthash::__construct' => array ( 0 => 'void', 'size' => 'int', 'options=' => 'int', ), - 'QuickHashStringIntHash::add' => + 'quickhashstringinthash::add' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'int', ), - 'QuickHashStringIntHash::delete' => + 'quickhashstringinthash::delete' => array ( 0 => 'bool', 'key' => 'string', ), - 'QuickHashStringIntHash::exists' => + 'quickhashstringinthash::exists' => array ( 0 => 'bool', 'key' => 'string', ), - 'QuickHashStringIntHash::get' => + 'quickhashstringinthash::get' => array ( 0 => 'mixed', 'key' => 'string', ), - 'QuickHashStringIntHash::getSize' => + 'quickhashstringinthash::getsize' => array ( 0 => 'int', ), - 'QuickHashStringIntHash::loadFromFile' => + 'quickhashstringinthash::loadfromfile' => array ( 0 => 'QuickHashStringIntHash', 'filename' => 'string', 'size=' => 'int', 'options=' => 'int', ), - 'QuickHashStringIntHash::loadFromString' => + 'quickhashstringinthash::loadfromstring' => array ( 0 => 'QuickHashStringIntHash', 'contents' => 'string', 'size=' => 'int', 'options=' => 'int', ), - 'QuickHashStringIntHash::saveToFile' => + 'quickhashstringinthash::savetofile' => array ( 0 => 'void', 'filename' => 'string', ), - 'QuickHashStringIntHash::saveToString' => + 'quickhashstringinthash::savetostring' => array ( 0 => 'string', ), - 'QuickHashStringIntHash::set' => + 'quickhashstringinthash::set' => array ( 0 => 'int', 'key' => 'string', 'value' => 'int', ), - 'QuickHashStringIntHash::update' => + 'quickhashstringinthash::update' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'int', ), - 'RRDCreator::__construct' => + 'rrdcreator::__construct' => array ( 0 => 'void', 'path' => 'string', 'starttime=' => 'string', 'step=' => 'int', ), - 'RRDCreator::addArchive' => + 'rrdcreator::addarchive' => array ( 0 => 'void', 'description' => 'string', ), - 'RRDCreator::addDataSource' => + 'rrdcreator::adddatasource' => array ( 0 => 'void', 'description' => 'string', ), - 'RRDCreator::save' => + 'rrdcreator::save' => array ( 0 => 'bool', ), - 'RRDGraph::__construct' => + 'rrdgraph::__construct' => array ( 0 => 'void', 'path' => 'string', ), - 'RRDGraph::save' => + 'rrdgraph::save' => array ( 0 => 'array|false', ), - 'RRDGraph::saveVerbose' => + 'rrdgraph::saveverbose' => array ( 0 => 'array|false', ), - 'RRDGraph::setOptions' => + 'rrdgraph::setoptions' => array ( 0 => 'void', 'options' => 'array', ), - 'RRDUpdater::__construct' => + 'rrdupdater::__construct' => array ( 0 => 'void', 'path' => 'string', ), - 'RRDUpdater::update' => + 'rrdupdater::update' => array ( 0 => 'bool', 'values' => 'array', 'time=' => 'string', ), - 'RangeException::__clone' => + 'rangeexception::__clone' => array ( 0 => 'void', ), - 'RangeException::__construct' => + 'rangeexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'RangeException::__toString' => + 'rangeexception::__tostring' => array ( 0 => 'string', ), - 'RangeException::getCode' => + 'rangeexception::getcode' => array ( 0 => 'int', ), - 'RangeException::getFile' => + 'rangeexception::getfile' => array ( 0 => 'string', ), - 'RangeException::getLine' => + 'rangeexception::getline' => array ( 0 => 'int', ), - 'RangeException::getMessage' => + 'rangeexception::getmessage' => array ( 0 => 'string', ), - 'RangeException::getPrevious' => + 'rangeexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'RangeException::getTrace' => + 'rangeexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'RangeException::getTraceAsString' => + 'rangeexception::gettraceasstring' => array ( 0 => 'string', ), - 'RarArchive::__toString' => + 'rararchive::__tostring' => array ( 0 => 'string', ), - 'RarArchive::close' => + 'rararchive::close' => array ( 0 => 'bool', ), - 'RarArchive::getComment' => + 'rararchive::getcomment' => array ( 0 => 'null|string', ), - 'RarArchive::getEntries' => + 'rararchive::getentries' => array ( 0 => 'array|false', ), - 'RarArchive::getEntry' => + 'rararchive::getentry' => array ( 0 => 'RarEntry|false', 'entryname' => 'string', ), - 'RarArchive::isBroken' => + 'rararchive::isbroken' => array ( 0 => 'bool', ), - 'RarArchive::isSolid' => + 'rararchive::issolid' => array ( 0 => 'bool', ), - 'RarArchive::open' => + 'rararchive::open' => array ( 0 => 'RarArchive|false', 'filename' => 'string', 'password=' => 'string', 'volume_callback=' => 'callable', ), - 'RarArchive::setAllowBroken' => + 'rararchive::setallowbroken' => array ( 0 => 'bool', 'allow_broken' => 'bool', ), - 'RarEntry::__toString' => + 'rarentry::__tostring' => array ( 0 => 'string', ), - 'RarEntry::extract' => + 'rarentry::extract' => array ( 0 => 'bool', 'dir' => 'string', @@ -25744,669 +25744,669 @@ 'password=' => 'string', 'extended_data=' => 'bool', ), - 'RarEntry::getAttr' => + 'rarentry::getattr' => array ( 0 => 'false|int', ), - 'RarEntry::getCrc' => + 'rarentry::getcrc' => array ( 0 => 'false|string', ), - 'RarEntry::getFileTime' => + 'rarentry::getfiletime' => array ( 0 => 'false|string', ), - 'RarEntry::getHostOs' => + 'rarentry::gethostos' => array ( 0 => 'false|int', ), - 'RarEntry::getMethod' => + 'rarentry::getmethod' => array ( 0 => 'false|int', ), - 'RarEntry::getName' => + 'rarentry::getname' => array ( 0 => 'false|string', ), - 'RarEntry::getPackedSize' => + 'rarentry::getpackedsize' => array ( 0 => 'false|int', ), - 'RarEntry::getStream' => + 'rarentry::getstream' => array ( 0 => 'false|resource', 'password=' => 'string', ), - 'RarEntry::getUnpackedSize' => + 'rarentry::getunpackedsize' => array ( 0 => 'false|int', ), - 'RarEntry::getVersion' => + 'rarentry::getversion' => array ( 0 => 'false|int', ), - 'RarEntry::isDirectory' => + 'rarentry::isdirectory' => array ( 0 => 'bool', ), - 'RarEntry::isEncrypted' => + 'rarentry::isencrypted' => array ( 0 => 'bool', ), - 'RarException::getCode' => + 'rarexception::getcode' => array ( 0 => 'int', ), - 'RarException::getFile' => + 'rarexception::getfile' => array ( 0 => 'string', ), - 'RarException::getLine' => + 'rarexception::getline' => array ( 0 => 'int', ), - 'RarException::getMessage' => + 'rarexception::getmessage' => array ( 0 => 'string', ), - 'RarException::getPrevious' => + 'rarexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'RarException::getTrace' => + 'rarexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'RarException::getTraceAsString' => + 'rarexception::gettraceasstring' => array ( 0 => 'string', ), - 'RarException::isUsingExceptions' => + 'rarexception::isusingexceptions' => array ( 0 => 'bool', ), - 'RarException::setUsingExceptions' => + 'rarexception::setusingexceptions' => array ( 0 => 'RarEntry', 'using_exceptions' => 'bool', ), - 'RecursiveArrayIterator::__construct' => + 'recursivearrayiterator::__construct' => array ( 0 => 'void', 'array=' => 'array|object', 'flags=' => 'int', ), - 'RecursiveArrayIterator::append' => + 'recursivearrayiterator::append' => array ( 0 => 'void', 'value' => 'mixed', ), - 'RecursiveArrayIterator::asort' => + 'recursivearrayiterator::asort' => array ( 0 => 'true', 'flags=' => 'int', ), - 'RecursiveArrayIterator::count' => + 'recursivearrayiterator::count' => array ( 0 => 'int', ), - 'RecursiveArrayIterator::current' => + 'recursivearrayiterator::current' => array ( 0 => 'mixed', ), - 'RecursiveArrayIterator::getArrayCopy' => + 'recursivearrayiterator::getarraycopy' => array ( 0 => 'array', ), - 'RecursiveArrayIterator::getChildren' => + 'recursivearrayiterator::getchildren' => array ( 0 => 'RecursiveArrayIterator|null', ), - 'RecursiveArrayIterator::getFlags' => + 'recursivearrayiterator::getflags' => array ( 0 => 'int', ), - 'RecursiveArrayIterator::hasChildren' => + 'recursivearrayiterator::haschildren' => array ( 0 => 'bool', ), - 'RecursiveArrayIterator::key' => + 'recursivearrayiterator::key' => array ( 0 => 'int|null|string', ), - 'RecursiveArrayIterator::ksort' => + 'recursivearrayiterator::ksort' => array ( 0 => 'true', 'flags=' => 'int', ), - 'RecursiveArrayIterator::natcasesort' => + 'recursivearrayiterator::natcasesort' => array ( 0 => 'true', ), - 'RecursiveArrayIterator::natsort' => + 'recursivearrayiterator::natsort' => array ( 0 => 'true', ), - 'RecursiveArrayIterator::next' => + 'recursivearrayiterator::next' => array ( 0 => 'void', ), - 'RecursiveArrayIterator::offsetExists' => + 'recursivearrayiterator::offsetexists' => array ( 0 => 'bool', 'key' => 'int|string', ), - 'RecursiveArrayIterator::offsetGet' => + 'recursivearrayiterator::offsetget' => array ( 0 => 'mixed', 'key' => 'int|string', ), - 'RecursiveArrayIterator::offsetSet' => + 'recursivearrayiterator::offsetset' => array ( 0 => 'void', 'key' => 'int|null|string', 'value' => 'string', ), - 'RecursiveArrayIterator::offsetUnset' => + 'recursivearrayiterator::offsetunset' => array ( 0 => 'void', 'key' => 'int|string', ), - 'RecursiveArrayIterator::rewind' => + 'recursivearrayiterator::rewind' => array ( 0 => 'void', ), - 'RecursiveArrayIterator::seek' => + 'recursivearrayiterator::seek' => array ( 0 => 'void', 'offset' => 'int', ), - 'RecursiveArrayIterator::serialize' => + 'recursivearrayiterator::serialize' => array ( 0 => 'string', ), - 'RecursiveArrayIterator::setFlags' => + 'recursivearrayiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'RecursiveArrayIterator::uasort' => + 'recursivearrayiterator::uasort' => array ( 0 => 'true', 'callback' => 'callable(mixed, mixed):int', ), - 'RecursiveArrayIterator::uksort' => + 'recursivearrayiterator::uksort' => array ( 0 => 'true', 'callback' => 'callable(mixed, mixed):int', ), - 'RecursiveArrayIterator::unserialize' => + 'recursivearrayiterator::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'RecursiveArrayIterator::valid' => + 'recursivearrayiterator::valid' => array ( 0 => 'bool', ), - 'RecursiveCachingIterator::__construct' => + 'recursivecachingiterator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', 'flags=' => 'int', ), - 'RecursiveCachingIterator::__toString' => + 'recursivecachingiterator::__tostring' => array ( 0 => 'string', ), - 'RecursiveCachingIterator::count' => + 'recursivecachingiterator::count' => array ( 0 => 'int', ), - 'RecursiveCachingIterator::current' => + 'recursivecachingiterator::current' => array ( 0 => 'void', ), - 'RecursiveCachingIterator::getCache' => + 'recursivecachingiterator::getcache' => array ( 0 => 'array', ), - 'RecursiveCachingIterator::getChildren' => + 'recursivecachingiterator::getchildren' => array ( 0 => 'RecursiveCachingIterator|null', ), - 'RecursiveCachingIterator::getFlags' => + 'recursivecachingiterator::getflags' => array ( 0 => 'int', ), - 'RecursiveCachingIterator::getInnerIterator' => + 'recursivecachingiterator::getinneriterator' => array ( 0 => 'Iterator', ), - 'RecursiveCachingIterator::hasChildren' => + 'recursivecachingiterator::haschildren' => array ( 0 => 'bool', ), - 'RecursiveCachingIterator::hasNext' => + 'recursivecachingiterator::hasnext' => array ( 0 => 'bool', ), - 'RecursiveCachingIterator::key' => + 'recursivecachingiterator::key' => array ( 0 => 'scalar', ), - 'RecursiveCachingIterator::next' => + 'recursivecachingiterator::next' => array ( 0 => 'void', ), - 'RecursiveCachingIterator::offsetExists' => + 'recursivecachingiterator::offsetexists' => array ( 0 => 'bool', 'key' => 'string', ), - 'RecursiveCachingIterator::offsetGet' => + 'recursivecachingiterator::offsetget' => array ( 0 => 'string', 'key' => 'string', ), - 'RecursiveCachingIterator::offsetSet' => + 'recursivecachingiterator::offsetset' => array ( 0 => 'void', 'key' => 'string', 'value' => 'string', ), - 'RecursiveCachingIterator::offsetUnset' => + 'recursivecachingiterator::offsetunset' => array ( 0 => 'void', 'key' => 'string', ), - 'RecursiveCachingIterator::rewind' => + 'recursivecachingiterator::rewind' => array ( 0 => 'void', ), - 'RecursiveCachingIterator::setFlags' => + 'recursivecachingiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'RecursiveCachingIterator::valid' => + 'recursivecachingiterator::valid' => array ( 0 => 'bool', ), - 'RecursiveCallbackFilterIterator::__construct' => + 'recursivecallbackfilteriterator::__construct' => array ( 0 => 'void', 'iterator' => 'RecursiveIterator', 'callback' => 'callable(mixed, mixed=, mixed=):bool', ), - 'RecursiveCallbackFilterIterator::accept' => + 'recursivecallbackfilteriterator::accept' => array ( 0 => 'bool', ), - 'RecursiveCallbackFilterIterator::current' => + 'recursivecallbackfilteriterator::current' => array ( 0 => 'mixed', ), - 'RecursiveCallbackFilterIterator::getChildren' => + 'recursivecallbackfilteriterator::getchildren' => array ( 0 => 'RecursiveCallbackFilterIterator', ), - 'RecursiveCallbackFilterIterator::getInnerIterator' => + 'recursivecallbackfilteriterator::getinneriterator' => array ( 0 => 'Iterator', ), - 'RecursiveCallbackFilterIterator::hasChildren' => + 'recursivecallbackfilteriterator::haschildren' => array ( 0 => 'bool', ), - 'RecursiveCallbackFilterIterator::key' => + 'recursivecallbackfilteriterator::key' => array ( 0 => 'scalar', ), - 'RecursiveCallbackFilterIterator::next' => + 'recursivecallbackfilteriterator::next' => array ( 0 => 'void', ), - 'RecursiveCallbackFilterIterator::rewind' => + 'recursivecallbackfilteriterator::rewind' => array ( 0 => 'void', ), - 'RecursiveCallbackFilterIterator::valid' => + 'recursivecallbackfilteriterator::valid' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::__construct' => + 'recursivedirectoryiterator::__construct' => array ( 0 => 'void', 'directory' => 'string', 'flags=' => 'int', ), - 'RecursiveDirectoryIterator::__toString' => + 'recursivedirectoryiterator::__tostring' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::current' => + 'recursivedirectoryiterator::current' => array ( 0 => 'FilesystemIterator|SplFileInfo|string', ), - 'RecursiveDirectoryIterator::getATime' => + 'recursivedirectoryiterator::getatime' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getBasename' => + 'recursivedirectoryiterator::getbasename' => array ( 0 => 'string', 'suffix=' => 'string', ), - 'RecursiveDirectoryIterator::getCTime' => + 'recursivedirectoryiterator::getctime' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getChildren' => + 'recursivedirectoryiterator::getchildren' => array ( 0 => 'RecursiveDirectoryIterator', ), - 'RecursiveDirectoryIterator::getExtension' => + 'recursivedirectoryiterator::getextension' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::getFileInfo' => + 'recursivedirectoryiterator::getfileinfo' => array ( 0 => 'SplFileInfo', 'class=' => 'class-string', ), - 'RecursiveDirectoryIterator::getFilename' => + 'recursivedirectoryiterator::getfilename' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::getFlags' => + 'recursivedirectoryiterator::getflags' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getGroup' => + 'recursivedirectoryiterator::getgroup' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getInode' => + 'recursivedirectoryiterator::getinode' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getLinkTarget' => + 'recursivedirectoryiterator::getlinktarget' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::getMTime' => + 'recursivedirectoryiterator::getmtime' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getOwner' => + 'recursivedirectoryiterator::getowner' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getPath' => + 'recursivedirectoryiterator::getpath' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::getPathInfo' => + 'recursivedirectoryiterator::getpathinfo' => array ( 0 => 'SplFileInfo|null', 'class=' => 'class-string', ), - 'RecursiveDirectoryIterator::getPathname' => + 'recursivedirectoryiterator::getpathname' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::getPerms' => + 'recursivedirectoryiterator::getperms' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getRealPath' => + 'recursivedirectoryiterator::getrealpath' => array ( 0 => 'non-falsy-string', ), - 'RecursiveDirectoryIterator::getSize' => + 'recursivedirectoryiterator::getsize' => array ( 0 => 'int', ), - 'RecursiveDirectoryIterator::getSubPath' => + 'recursivedirectoryiterator::getsubpath' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::getSubPathname' => + 'recursivedirectoryiterator::getsubpathname' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::getType' => + 'recursivedirectoryiterator::gettype' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::hasChildren' => + 'recursivedirectoryiterator::haschildren' => array ( 0 => 'bool', 'allowLinks=' => 'bool', ), - 'RecursiveDirectoryIterator::isDir' => + 'recursivedirectoryiterator::isdir' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::isDot' => + 'recursivedirectoryiterator::isdot' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::isExecutable' => + 'recursivedirectoryiterator::isexecutable' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::isFile' => + 'recursivedirectoryiterator::isfile' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::isLink' => + 'recursivedirectoryiterator::islink' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::isReadable' => + 'recursivedirectoryiterator::isreadable' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::isWritable' => + 'recursivedirectoryiterator::iswritable' => array ( 0 => 'bool', ), - 'RecursiveDirectoryIterator::key' => + 'recursivedirectoryiterator::key' => array ( 0 => 'string', ), - 'RecursiveDirectoryIterator::next' => + 'recursivedirectoryiterator::next' => array ( 0 => 'void', ), - 'RecursiveDirectoryIterator::openFile' => + 'recursivedirectoryiterator::openfile' => array ( 0 => 'SplFileObject', 'mode=' => 'string', 'useIncludePath=' => 'bool', 'context=' => 'resource', ), - 'RecursiveDirectoryIterator::rewind' => + 'recursivedirectoryiterator::rewind' => array ( 0 => 'void', ), - 'RecursiveDirectoryIterator::seek' => + 'recursivedirectoryiterator::seek' => array ( 0 => 'void', 'offset' => 'int', ), - 'RecursiveDirectoryIterator::setFileClass' => + 'recursivedirectoryiterator::setfileclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'RecursiveDirectoryIterator::setFlags' => + 'recursivedirectoryiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'RecursiveDirectoryIterator::setInfoClass' => + 'recursivedirectoryiterator::setinfoclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'RecursiveDirectoryIterator::valid' => + 'recursivedirectoryiterator::valid' => array ( 0 => 'bool', ), - 'RecursiveFilterIterator::__construct' => + 'recursivefilteriterator::__construct' => array ( 0 => 'void', 'iterator' => 'RecursiveIterator', ), - 'RecursiveFilterIterator::accept' => + 'recursivefilteriterator::accept' => array ( 0 => 'bool', ), - 'RecursiveFilterIterator::current' => + 'recursivefilteriterator::current' => array ( 0 => 'mixed', ), - 'RecursiveFilterIterator::getChildren' => + 'recursivefilteriterator::getchildren' => array ( 0 => 'RecursiveFilterIterator|null', ), - 'RecursiveFilterIterator::getInnerIterator' => + 'recursivefilteriterator::getinneriterator' => array ( 0 => 'Iterator', ), - 'RecursiveFilterIterator::hasChildren' => + 'recursivefilteriterator::haschildren' => array ( 0 => 'bool', ), - 'RecursiveFilterIterator::key' => + 'recursivefilteriterator::key' => array ( 0 => 'mixed', ), - 'RecursiveFilterIterator::next' => + 'recursivefilteriterator::next' => array ( 0 => 'void', ), - 'RecursiveFilterIterator::rewind' => + 'recursivefilteriterator::rewind' => array ( 0 => 'void', ), - 'RecursiveFilterIterator::valid' => + 'recursivefilteriterator::valid' => array ( 0 => 'bool', ), - 'RecursiveIterator::__construct' => + 'recursiveiterator::__construct' => array ( 0 => 'void', ), - 'RecursiveIterator::current' => + 'recursiveiterator::current' => array ( 0 => 'mixed', ), - 'RecursiveIterator::getChildren' => + 'recursiveiterator::getchildren' => array ( 0 => 'RecursiveIterator|null', ), - 'RecursiveIterator::hasChildren' => + 'recursiveiterator::haschildren' => array ( 0 => 'bool', ), - 'RecursiveIterator::key' => + 'recursiveiterator::key' => array ( 0 => 'int|string', ), - 'RecursiveIterator::next' => + 'recursiveiterator::next' => array ( 0 => 'void', ), - 'RecursiveIterator::rewind' => + 'recursiveiterator::rewind' => array ( 0 => 'void', ), - 'RecursiveIterator::valid' => + 'recursiveiterator::valid' => array ( 0 => 'bool', ), - 'RecursiveIteratorIterator::__construct' => + 'recursiveiteratoriterator::__construct' => array ( 0 => 'void', 'iterator' => 'IteratorAggregate|RecursiveIterator', 'mode=' => 'int', 'flags=' => 'int', ), - 'RecursiveIteratorIterator::beginChildren' => + 'recursiveiteratoriterator::beginchildren' => array ( 0 => 'void', ), - 'RecursiveIteratorIterator::beginIteration' => + 'recursiveiteratoriterator::beginiteration' => array ( 0 => 'void', ), - 'RecursiveIteratorIterator::callGetChildren' => + 'recursiveiteratoriterator::callgetchildren' => array ( 0 => 'RecursiveIterator|null', ), - 'RecursiveIteratorIterator::callHasChildren' => + 'recursiveiteratoriterator::callhaschildren' => array ( 0 => 'bool', ), - 'RecursiveIteratorIterator::current' => + 'recursiveiteratoriterator::current' => array ( 0 => 'mixed', ), - 'RecursiveIteratorIterator::endChildren' => + 'recursiveiteratoriterator::endchildren' => array ( 0 => 'void', ), - 'RecursiveIteratorIterator::endIteration' => + 'recursiveiteratoriterator::enditeration' => array ( 0 => 'void', ), - 'RecursiveIteratorIterator::getDepth' => + 'recursiveiteratoriterator::getdepth' => array ( 0 => 'int', ), - 'RecursiveIteratorIterator::getInnerIterator' => + 'recursiveiteratoriterator::getinneriterator' => array ( 0 => 'RecursiveIterator', ), - 'RecursiveIteratorIterator::getMaxDepth' => + 'recursiveiteratoriterator::getmaxdepth' => array ( 0 => 'false|int', ), - 'RecursiveIteratorIterator::getSubIterator' => + 'recursiveiteratoriterator::getsubiterator' => array ( 0 => 'RecursiveIterator|null', 'level=' => 'int', ), - 'RecursiveIteratorIterator::key' => + 'recursiveiteratoriterator::key' => array ( 0 => 'mixed', ), - 'RecursiveIteratorIterator::next' => + 'recursiveiteratoriterator::next' => array ( 0 => 'void', ), - 'RecursiveIteratorIterator::nextElement' => + 'recursiveiteratoriterator::nextelement' => array ( 0 => 'void', ), - 'RecursiveIteratorIterator::rewind' => + 'recursiveiteratoriterator::rewind' => array ( 0 => 'void', ), - 'RecursiveIteratorIterator::setMaxDepth' => + 'recursiveiteratoriterator::setmaxdepth' => array ( 0 => 'void', 'maxDepth=' => 'int', ), - 'RecursiveIteratorIterator::valid' => + 'recursiveiteratoriterator::valid' => array ( 0 => 'bool', ), - 'RecursiveRegexIterator::__construct' => + 'recursiveregexiterator::__construct' => array ( 0 => 'void', 'iterator' => 'RecursiveIterator', @@ -26415,74 +26415,74 @@ 'flags=' => 'int', 'pregFlags=' => 'int', ), - 'RecursiveRegexIterator::accept' => + 'recursiveregexiterator::accept' => array ( 0 => 'bool', ), - 'RecursiveRegexIterator::current' => + 'recursiveregexiterator::current' => array ( 0 => 'mixed', ), - 'RecursiveRegexIterator::getChildren' => + 'recursiveregexiterator::getchildren' => array ( 0 => 'RecursiveRegexIterator', ), - 'RecursiveRegexIterator::getFlags' => + 'recursiveregexiterator::getflags' => array ( 0 => 'int', ), - 'RecursiveRegexIterator::getInnerIterator' => + 'recursiveregexiterator::getinneriterator' => array ( 0 => 'Iterator', ), - 'RecursiveRegexIterator::getMode' => + 'recursiveregexiterator::getmode' => array ( 0 => 'int', ), - 'RecursiveRegexIterator::getPregFlags' => + 'recursiveregexiterator::getpregflags' => array ( 0 => 'int', ), - 'RecursiveRegexIterator::getRegex' => + 'recursiveregexiterator::getregex' => array ( 0 => 'string', ), - 'RecursiveRegexIterator::hasChildren' => + 'recursiveregexiterator::haschildren' => array ( 0 => 'bool', ), - 'RecursiveRegexIterator::key' => + 'recursiveregexiterator::key' => array ( 0 => 'mixed', ), - 'RecursiveRegexIterator::next' => + 'recursiveregexiterator::next' => array ( 0 => 'void', ), - 'RecursiveRegexIterator::rewind' => + 'recursiveregexiterator::rewind' => array ( 0 => 'void', ), - 'RecursiveRegexIterator::setFlags' => + 'recursiveregexiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'RecursiveRegexIterator::setMode' => + 'recursiveregexiterator::setmode' => array ( 0 => 'void', 'mode' => 'int', ), - 'RecursiveRegexIterator::setPregFlags' => + 'recursiveregexiterator::setpregflags' => array ( 0 => 'void', 'pregFlags' => 'int', ), - 'RecursiveRegexIterator::valid' => + 'recursiveregexiterator::valid' => array ( 0 => 'bool', ), - 'RecursiveTreeIterator::__construct' => + 'recursivetreeiterator::__construct' => array ( 0 => 'void', 'iterator' => 'IteratorAggregate|RecursiveIterator', @@ -26490,147 +26490,147 @@ 'cachingIteratorFlags=' => 'int', 'mode=' => 'int', ), - 'RecursiveTreeIterator::beginChildren' => + 'recursivetreeiterator::beginchildren' => array ( 0 => 'void', ), - 'RecursiveTreeIterator::beginIteration' => + 'recursivetreeiterator::beginiteration' => array ( 0 => 'void', ), - 'RecursiveTreeIterator::callGetChildren' => + 'recursivetreeiterator::callgetchildren' => array ( 0 => 'RecursiveIterator|null', ), - 'RecursiveTreeIterator::callHasChildren' => + 'recursivetreeiterator::callhaschildren' => array ( 0 => 'bool', ), - 'RecursiveTreeIterator::current' => + 'recursivetreeiterator::current' => array ( 0 => 'string', ), - 'RecursiveTreeIterator::endChildren' => + 'recursivetreeiterator::endchildren' => array ( 0 => 'void', ), - 'RecursiveTreeIterator::endIteration' => + 'recursivetreeiterator::enditeration' => array ( 0 => 'void', ), - 'RecursiveTreeIterator::getDepth' => + 'recursivetreeiterator::getdepth' => array ( 0 => 'int', ), - 'RecursiveTreeIterator::getEntry' => + 'recursivetreeiterator::getentry' => array ( 0 => 'string', ), - 'RecursiveTreeIterator::getInnerIterator' => + 'recursivetreeiterator::getinneriterator' => array ( 0 => 'RecursiveIterator', ), - 'RecursiveTreeIterator::getMaxDepth' => + 'recursivetreeiterator::getmaxdepth' => array ( 0 => 'false|int', ), - 'RecursiveTreeIterator::getPostfix' => + 'recursivetreeiterator::getpostfix' => array ( 0 => 'string', ), - 'RecursiveTreeIterator::getPrefix' => + 'recursivetreeiterator::getprefix' => array ( 0 => 'string', ), - 'RecursiveTreeIterator::getSubIterator' => + 'recursivetreeiterator::getsubiterator' => array ( 0 => 'RecursiveIterator|null', 'level=' => 'int', ), - 'RecursiveTreeIterator::key' => + 'recursivetreeiterator::key' => array ( 0 => 'string', ), - 'RecursiveTreeIterator::next' => + 'recursivetreeiterator::next' => array ( 0 => 'void', ), - 'RecursiveTreeIterator::nextElement' => + 'recursivetreeiterator::nextelement' => array ( 0 => 'void', ), - 'RecursiveTreeIterator::rewind' => + 'recursivetreeiterator::rewind' => array ( 0 => 'void', ), - 'RecursiveTreeIterator::setMaxDepth' => + 'recursivetreeiterator::setmaxdepth' => array ( 0 => 'void', 'maxDepth=' => 'int', ), - 'RecursiveTreeIterator::setPostfix' => + 'recursivetreeiterator::setpostfix' => array ( 0 => 'void', 'postfix' => 'string', ), - 'RecursiveTreeIterator::setPrefixPart' => + 'recursivetreeiterator::setprefixpart' => array ( 0 => 'void', 'part' => 'int', 'value' => 'string', ), - 'RecursiveTreeIterator::valid' => + 'recursivetreeiterator::valid' => array ( 0 => 'bool', ), - 'Redis::__construct' => + 'redis::__construct' => array ( 0 => 'void', ), - 'Redis::__destruct' => + 'redis::__destruct' => array ( 0 => 'void', ), - 'Redis::_prefix' => + 'redis::_prefix' => array ( 0 => 'string', 'value' => 'mixed', ), - 'Redis::_serialize' => + 'redis::_serialize' => array ( 0 => 'mixed', 'value' => 'mixed', ), - 'Redis::_unserialize' => + 'redis::_unserialize' => array ( 0 => 'mixed', 'value' => 'string', ), - 'Redis::append' => + 'redis::append' => array ( 0 => 'int', 'key' => 'string', 'value' => 'string', ), - 'Redis::auth' => + 'redis::auth' => array ( 0 => 'bool', 'password' => 'string', ), - 'Redis::bgRewriteAOF' => + 'redis::bgrewriteaof' => array ( 0 => 'bool', ), - 'Redis::bgSave' => + 'redis::bgsave' => array ( 0 => 'bool', ), - 'Redis::bitCount' => + 'redis::bitcount' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::bitOp' => + 'redis::bitop' => array ( 0 => 'int', 'operation' => 'string', @@ -26638,7 +26638,7 @@ 'key' => 'string', '...other_keys=' => 'string', ), - 'Redis::bitpos' => + 'redis::bitpos' => array ( 0 => 'int', 'key' => 'string', @@ -26646,66 +26646,66 @@ 'start=' => 'int', 'end=' => 'int', ), - 'Redis::blPop' => + 'redis::blpop' => array ( 0 => 'array', 'keys' => 'array', 'timeout' => 'int', ), - 'Redis::blPop\'1' => + 'redis::blpop\'1' => array ( 0 => 'array', 'key' => 'string', 'timeout_or_key' => 'int|string', '...extra_args' => 'int|string', ), - 'Redis::brPop' => + 'redis::brpop' => array ( 0 => 'array', 'keys' => 'array', 'timeout' => 'int', ), - 'Redis::brPop\'1' => + 'redis::brpop\'1' => array ( 0 => 'array', 'key' => 'string', 'timeout_or_key' => 'int|string', '...extra_args' => 'int|string', ), - 'Redis::brpoplpush' => + 'redis::brpoplpush' => array ( 0 => 'false|string', 'srcKey' => 'string', 'dstKey' => 'string', 'timeout' => 'int', ), - 'Redis::clearLastError' => + 'redis::clearlasterror' => array ( 0 => 'bool', ), - 'Redis::client' => + 'redis::client' => array ( 0 => 'mixed', 'command' => 'string', 'arg=' => 'string', ), - 'Redis::close' => + 'redis::close' => array ( 0 => 'bool', ), - 'Redis::command' => + 'redis::command' => array ( 0 => 'mixed', '...args' => 'mixed', ), - 'Redis::config' => + 'redis::config' => array ( 0 => 'string', 'operation' => 'string', 'key' => 'string', 'value=' => 'string', ), - 'Redis::connect' => + 'redis::connect' => array ( 0 => 'bool', 'host' => 'string', @@ -26715,133 +26715,133 @@ 'retry_interval=' => 'int|null', 'read_timeout=' => 'float', ), - 'Redis::dbSize' => + 'redis::dbsize' => array ( 0 => 'int', ), - 'Redis::debug' => + 'redis::debug' => array ( 0 => 'mixed', 'key' => 'mixed', ), - 'Redis::decr' => + 'redis::decr' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::decrBy' => + 'redis::decrby' => array ( 0 => 'int', 'key' => 'string', 'value' => 'int', ), - 'Redis::decrByFloat' => + 'redis::decrbyfloat' => array ( 0 => 'float', 'key' => 'string', 'value' => 'float', ), - 'Redis::del' => + 'redis::del' => array ( 0 => 'int', 'key' => 'string', '...args' => 'string', ), - 'Redis::del\'1' => + 'redis::del\'1' => array ( 0 => 'int', 'key' => 'array', ), - 'Redis::delete' => + 'redis::delete' => array ( 0 => 'int', 'key' => 'string', '...args' => 'string', ), - 'Redis::delete\'1' => + 'redis::delete\'1' => array ( 0 => 'int', 'key' => 'array', ), - 'Redis::discard' => + 'redis::discard' => array ( 0 => 'mixed', ), - 'Redis::dump' => + 'redis::dump' => array ( 0 => 'false|string', 'key' => 'string', ), - 'Redis::echo' => + 'redis::echo' => array ( 0 => 'string', 'message' => 'string', ), - 'Redis::eval' => + 'redis::eval' => array ( 0 => 'mixed', 'script' => 'mixed', 'args=' => 'mixed', 'numKeys=' => 'mixed', ), - 'Redis::evalSha' => + 'redis::evalsha' => array ( 0 => 'mixed', 'scriptSha' => 'string', 'args=' => 'array', 'numKeys=' => 'int', ), - 'Redis::evaluate' => + 'redis::evaluate' => array ( 0 => 'mixed', 'script' => 'string', 'args=' => 'array', 'numKeys=' => 'int', ), - 'Redis::evaluateSha' => + 'redis::evaluatesha' => array ( 0 => 'mixed', 'scriptSha' => 'string', 'args=' => 'array', 'numKeys=' => 'int', ), - 'Redis::exec' => + 'redis::exec' => array ( 0 => 'array', ), - 'Redis::exists' => + 'redis::exists' => array ( 0 => 'int', 'keys' => 'array|string', ), - 'Redis::exists\'1' => + 'redis::exists\'1' => array ( 0 => 'int', '...keys' => 'string', ), - 'Redis::expire' => + 'redis::expire' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', ), - 'Redis::expireAt' => + 'redis::expireat' => array ( 0 => 'bool', 'key' => 'string', 'expiry' => 'int', ), - 'Redis::flushAll' => + 'redis::flushall' => array ( 0 => 'bool', 'async=' => 'bool', ), - 'Redis::flushDb' => + 'redis::flushdb' => array ( 0 => 'bool', 'async=' => 'bool', ), - 'Redis::geoAdd' => + 'redis::geoadd' => array ( 0 => 'int', 'key' => 'string', @@ -26850,7 +26850,7 @@ 'member' => 'string', '...other_triples=' => 'float|int|string', ), - 'Redis::geoDist' => + 'redis::geodist' => array ( 0 => 'float', 'key' => 'string', @@ -26858,21 +26858,21 @@ 'member2' => 'string', 'unit=' => 'string', ), - 'Redis::geoHash' => + 'redis::geohash' => array ( 0 => 'array', 'key' => 'string', 'member' => 'string', '...other_members=' => 'string', ), - 'Redis::geoPos' => + 'redis::geopos' => array ( 0 => 'array', 'key' => 'string', 'member' => 'string', '...members=' => 'string', ), - 'Redis::geoRadius' => + 'redis::georadius' => array ( 0 => 'array|int', 'key' => 'string', @@ -26882,7 +26882,7 @@ 'unit' => 'float', 'options=' => 'array', ), - 'Redis::geoRadiusByMember' => + 'redis::georadiusbymember' => array ( 0 => 'array|int', 'key' => 'string', @@ -26891,142 +26891,142 @@ 'units' => 'string', 'options=' => 'array', ), - 'Redis::get' => + 'redis::get' => array ( 0 => 'false|string', 'key' => 'string', ), - 'Redis::getAuth' => + 'redis::getauth' => array ( 0 => 'false|null|string', ), - 'Redis::getBit' => + 'redis::getbit' => array ( 0 => 'int', 'key' => 'string', 'offset' => 'int', ), - 'Redis::getDBNum' => + 'redis::getdbnum' => array ( 0 => 'false|int', ), - 'Redis::getHost' => + 'redis::gethost' => array ( 0 => 'false|string', ), - 'Redis::getKeys' => + 'redis::getkeys' => array ( 0 => 'array', 'pattern' => 'string', ), - 'Redis::getLastError' => + 'redis::getlasterror' => array ( 0 => 'null|string', ), - 'Redis::getMode' => + 'redis::getmode' => array ( 0 => 'int', ), - 'Redis::getMultiple' => + 'redis::getmultiple' => array ( 0 => 'array', 'keys' => 'array', ), - 'Redis::getOption' => + 'redis::getoption' => array ( 0 => 'int', 'name' => 'int', ), - 'Redis::getPersistentID' => + 'redis::getpersistentid' => array ( 0 => 'false|null|string', ), - 'Redis::getPort' => + 'redis::getport' => array ( 0 => 'false|int', ), - 'Redis::getRange' => + 'redis::getrange' => array ( 0 => 'int', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'Redis::getReadTimeout' => + 'redis::getreadtimeout' => array ( 0 => 'false|float', ), - 'Redis::getSet' => + 'redis::getset' => array ( 0 => 'string', 'key' => 'string', 'string' => 'string', ), - 'Redis::getTimeout' => + 'redis::gettimeout' => array ( 0 => 'false|float', ), - 'Redis::hDel' => + 'redis::hdel' => array ( 0 => 'false|int', 'key' => 'string', 'hashKey1' => 'string', '...otherHashKeys=' => 'string', ), - 'Redis::hExists' => + 'redis::hexists' => array ( 0 => 'bool', 'key' => 'string', 'hashKey' => 'string', ), - 'Redis::hGet' => + 'redis::hget' => array ( 0 => 'false|string', 'key' => 'string', 'hashKey' => 'string', ), - 'Redis::hGetAll' => + 'redis::hgetall' => array ( 0 => 'array', 'key' => 'string', ), - 'Redis::hIncrBy' => + 'redis::hincrby' => array ( 0 => 'int', 'key' => 'string', 'hashKey' => 'string', 'value' => 'int', ), - 'Redis::hIncrByFloat' => + 'redis::hincrbyfloat' => array ( 0 => 'float', 'key' => 'string', 'field' => 'string', 'increment' => 'float', ), - 'Redis::hKeys' => + 'redis::hkeys' => array ( 0 => 'array', 'key' => 'string', ), - 'Redis::hLen' => + 'redis::hlen' => array ( 0 => 'false|int', 'key' => 'string', ), - 'Redis::hMGet' => + 'redis::hmget' => array ( 0 => 'array', 'key' => 'string', 'hashKeys' => 'array', ), - 'Redis::hMSet' => + 'redis::hmset' => array ( 0 => 'bool', 'key' => 'string', 'hashKeys' => 'array', ), - 'Redis::hScan' => + 'redis::hscan' => array ( 0 => 'array', 'key' => 'string', @@ -27034,82 +27034,82 @@ 'pattern=' => 'string', 'count=' => 'int', ), - 'Redis::hSet' => + 'redis::hset' => array ( 0 => 'false|int', 'key' => 'string', 'hashKey' => 'string', 'value' => 'string', ), - 'Redis::hSetNx' => + 'redis::hsetnx' => array ( 0 => 'bool', 'key' => 'string', 'hashKey' => 'string', 'value' => 'string', ), - 'Redis::hStrLen' => + 'redis::hstrlen' => array ( 0 => 'mixed', 'key' => 'mixed', 'member' => 'mixed', ), - 'Redis::hVals' => + 'redis::hvals' => array ( 0 => 'array', 'key' => 'string', ), - 'Redis::incr' => + 'redis::incr' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::incrBy' => + 'redis::incrby' => array ( 0 => 'int', 'key' => 'string', 'value' => 'int', ), - 'Redis::incrByFloat' => + 'redis::incrbyfloat' => array ( 0 => 'float', 'key' => 'string', 'value' => 'float', ), - 'Redis::info' => + 'redis::info' => array ( 0 => 'array', 'option=' => 'string', ), - 'Redis::isConnected' => + 'redis::isconnected' => array ( 0 => 'bool', ), - 'Redis::keys' => + 'redis::keys' => array ( 0 => 'array', 'pattern' => 'string', ), - 'Redis::lGet' => + 'redis::lget' => array ( 0 => 'string', 'key' => 'string', 'index' => 'int', ), - 'Redis::lGetRange' => + 'redis::lgetrange' => array ( 0 => 'array', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'Redis::lIndex' => + 'redis::lindex' => array ( 0 => 'false|string', 'key' => 'string', 'index' => 'int', ), - 'Redis::lInsert' => + 'redis::linsert' => array ( 0 => 'int', 'key' => 'string', @@ -27117,17 +27117,17 @@ 'pivot' => 'string', 'value' => 'string', ), - 'Redis::lLen' => + 'redis::llen' => array ( 0 => 'false|int', 'key' => 'string', ), - 'Redis::lPop' => + 'redis::lpop' => array ( 0 => 'false|string', 'key' => 'string', ), - 'Redis::lPush' => + 'redis::lpush' => array ( 0 => 'false|int', 'key' => 'string', @@ -27135,79 +27135,79 @@ 'value2=' => 'string', 'valueN=' => 'string', ), - 'Redis::lPushx' => + 'redis::lpushx' => array ( 0 => 'false|int', 'key' => 'string', 'value' => 'string', ), - 'Redis::lRange' => + 'redis::lrange' => array ( 0 => 'array', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'Redis::lRem' => + 'redis::lrem' => array ( 0 => 'false|int', 'key' => 'string', 'value' => 'string', 'count' => 'int', ), - 'Redis::lRemove' => + 'redis::lremove' => array ( 0 => 'int', 'key' => 'string', 'value' => 'string', 'count' => 'int', ), - 'Redis::lSet' => + 'redis::lset' => array ( 0 => 'bool', 'key' => 'string', 'index' => 'int', 'value' => 'string', ), - 'Redis::lSize' => + 'redis::lsize' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::lTrim' => + 'redis::ltrim' => array ( 0 => 'array|false', 'key' => 'string', 'start' => 'int', 'stop' => 'int', ), - 'Redis::lastSave' => + 'redis::lastsave' => array ( 0 => 'int', ), - 'Redis::listTrim' => + 'redis::listtrim' => array ( 0 => 'mixed', 'key' => 'string', 'start' => 'int', 'stop' => 'int', ), - 'Redis::mGet' => + 'redis::mget' => array ( 0 => 'array', 'keys' => 'array', ), - 'Redis::mSet' => + 'redis::mset' => array ( 0 => 'bool', 'pairs' => 'array', ), - 'Redis::mSetNx' => + 'redis::msetnx' => array ( 0 => 'bool', 'pairs' => 'array', ), - 'Redis::migrate' => + 'redis::migrate' => array ( 0 => 'bool', 'host' => 'string', @@ -27218,24 +27218,24 @@ 'copy=' => 'bool', 'replace=' => 'bool', ), - 'Redis::move' => + 'redis::move' => array ( 0 => 'bool', 'key' => 'string', 'dbindex' => 'int', ), - 'Redis::multi' => + 'redis::multi' => array ( 0 => 'Redis', 'mode=' => 'int', ), - 'Redis::object' => + 'redis::object' => array ( 0 => 'false|long|string', 'info' => 'string', 'key' => 'string', ), - 'Redis::open' => + 'redis::open' => array ( 0 => 'bool', 'host' => 'string', @@ -27245,13 +27245,13 @@ 'retry_interval=' => 'int|null', 'read_timeout=' => 'float', ), - 'Redis::pExpire' => + 'redis::pexpire' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', ), - 'Redis::pconnect' => + 'redis::pconnect' => array ( 0 => 'bool', 'host' => 'string', @@ -27260,43 +27260,43 @@ 'persistent_id=' => 'string', 'retry_interval=' => 'int|null', ), - 'Redis::persist' => + 'redis::persist' => array ( 0 => 'bool', 'key' => 'string', ), - 'Redis::pexpireAt' => + 'redis::pexpireat' => array ( 0 => 'bool', 'key' => 'string', 'expiry' => 'int', ), - 'Redis::pfAdd' => + 'redis::pfadd' => array ( 0 => 'bool', 'key' => 'string', 'elements' => 'array', ), - 'Redis::pfCount' => + 'redis::pfcount' => array ( 0 => 'int', 'key' => 'array|string', ), - 'Redis::pfMerge' => + 'redis::pfmerge' => array ( 0 => 'bool', 'destkey' => 'string', 'sourcekeys' => 'array', ), - 'Redis::ping' => + 'redis::ping' => array ( 0 => 'string', ), - 'Redis::pipeline' => + 'redis::pipeline' => array ( 0 => 'Redis', ), - 'Redis::popen' => + 'redis::popen' => array ( 0 => 'bool', 'host' => 'string', @@ -27305,48 +27305,48 @@ 'persistent_id=' => 'string', 'retry_interval=' => 'int|null', ), - 'Redis::psetex' => + 'redis::psetex' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', 'value' => 'string', ), - 'Redis::psubscribe' => + 'redis::psubscribe' => array ( 0 => 'mixed', 'patterns' => 'array', 'callback' => 'array|string', ), - 'Redis::pttl' => + 'redis::pttl' => array ( 0 => 'false|int', 'key' => 'string', ), - 'Redis::publish' => + 'redis::publish' => array ( 0 => 'int', 'channel' => 'string', 'message' => 'string', ), - 'Redis::pubsub' => + 'redis::pubsub' => array ( 0 => 'array|int', 'keyword' => 'string', 'argument=' => 'array|string', ), - 'Redis::punsubscribe' => + 'redis::punsubscribe' => array ( 0 => 'mixed', 'pattern' => 'string', '...other_patterns=' => 'string', ), - 'Redis::rPop' => + 'redis::rpop' => array ( 0 => 'false|string', 'key' => 'string', ), - 'Redis::rPush' => + 'redis::rpush' => array ( 0 => 'false|int', 'key' => 'string', @@ -27354,63 +27354,63 @@ 'value2=' => 'string', 'valueN=' => 'string', ), - 'Redis::rPushx' => + 'redis::rpushx' => array ( 0 => 'false|int', 'key' => 'string', 'value' => 'string', ), - 'Redis::randomKey' => + 'redis::randomkey' => array ( 0 => 'string', ), - 'Redis::rawCommand' => + 'redis::rawcommand' => array ( 0 => 'mixed', 'command' => 'string', '...arguments=' => 'mixed', ), - 'Redis::rename' => + 'redis::rename' => array ( 0 => 'bool', 'srckey' => 'string', 'dstkey' => 'string', ), - 'Redis::renameKey' => + 'redis::renamekey' => array ( 0 => 'bool', 'srckey' => 'string', 'dstkey' => 'string', ), - 'Redis::renameNx' => + 'redis::renamenx' => array ( 0 => 'bool', 'srckey' => 'string', 'dstkey' => 'string', ), - 'Redis::resetStat' => + 'redis::resetstat' => array ( 0 => 'bool', ), - 'Redis::restore' => + 'redis::restore' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', 'value' => 'string', ), - 'Redis::role' => + 'redis::role' => array ( 0 => 'array', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'Redis::rpoplpush' => + 'redis::rpoplpush' => array ( 0 => 'string', 'srcKey' => 'string', 'dstKey' => 'string', ), - 'Redis::sAdd' => + 'redis::sadd' => array ( 0 => 'false|int', 'key' => 'string', @@ -27418,98 +27418,98 @@ 'value2=' => 'string', 'valueN=' => 'string', ), - 'Redis::sAddArray' => + 'redis::saddarray' => array ( 0 => 'bool', 'key' => 'string', 'values' => 'array', ), - 'Redis::sCard' => + 'redis::scard' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::sContains' => + 'redis::scontains' => array ( 0 => 'mixed', 'key' => 'string', 'value' => 'string', ), - 'Redis::sDiff' => + 'redis::sdiff' => array ( 0 => 'array', 'key1' => 'string', '...other_keys=' => 'string', ), - 'Redis::sDiffStore' => + 'redis::sdiffstore' => array ( 0 => 'false|int', 'dstKey' => 'string', 'key' => 'string', '...other_keys=' => 'string', ), - 'Redis::sGetMembers' => + 'redis::sgetmembers' => array ( 0 => 'mixed', 'key' => 'string', ), - 'Redis::sInter' => + 'redis::sinter' => array ( 0 => 'array|false', 'key' => 'string', '...other_keys=' => 'string', ), - 'Redis::sInterStore' => + 'redis::sinterstore' => array ( 0 => 'false|int', 'dstKey' => 'string', 'key' => 'string', '...other_keys=' => 'string', ), - 'Redis::sIsMember' => + 'redis::sismember' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'Redis::sMembers' => + 'redis::smembers' => array ( 0 => 'array', 'key' => 'string', ), - 'Redis::sMove' => + 'redis::smove' => array ( 0 => 'bool', 'srcKey' => 'string', 'dstKey' => 'string', 'member' => 'string', ), - 'Redis::sPop' => + 'redis::spop' => array ( 0 => 'false|string', 'key' => 'string', ), - 'Redis::sRandMember' => + 'redis::srandmember' => array ( 0 => 'array|false|string', 'key' => 'string', 'count=' => 'int', ), - 'Redis::sRem' => + 'redis::srem' => array ( 0 => 'int', 'key' => 'string', 'member1' => 'string', '...other_members=' => 'string', ), - 'Redis::sRemove' => + 'redis::sremove' => array ( 0 => 'int', 'key' => 'string', 'member1' => 'string', '...other_members=' => 'string', ), - 'Redis::sScan' => + 'redis::sscan' => array ( 0 => 'array|bool', 'key' => 'string', @@ -27517,135 +27517,135 @@ 'pattern=' => 'string', 'count=' => 'int', ), - 'Redis::sSize' => + 'redis::ssize' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::sUnion' => + 'redis::sunion' => array ( 0 => 'array', 'key' => 'string', '...other_keys=' => 'string', ), - 'Redis::sUnionStore' => + 'redis::sunionstore' => array ( 0 => 'int', 'dstKey' => 'string', 'key' => 'string', '...other_keys=' => 'string', ), - 'Redis::save' => + 'redis::save' => array ( 0 => 'bool', ), - 'Redis::scan' => + 'redis::scan' => array ( 0 => 'array|false', '&rw_iterator' => 'int|null', 'pattern=' => 'null|string', 'count=' => 'int|null', ), - 'Redis::script' => + 'redis::script' => array ( 0 => 'mixed', 'command' => 'string', '...args=' => 'mixed', ), - 'Redis::select' => + 'redis::select' => array ( 0 => 'bool', 'dbindex' => 'int', ), - 'Redis::sendEcho' => + 'redis::sendecho' => array ( 0 => 'string', 'msg' => 'string', ), - 'Redis::set' => + 'redis::set' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'mixed', 'options=' => 'array', ), - 'Redis::set\'1' => + 'redis::set\'1' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'mixed', 'timeout=' => 'int', ), - 'Redis::setBit' => + 'redis::setbit' => array ( 0 => 'int', 'key' => 'string', 'offset' => 'int', 'value' => 'int', ), - 'Redis::setEx' => + 'redis::setex' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', 'value' => 'string', ), - 'Redis::setNx' => + 'redis::setnx' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'Redis::setOption' => + 'redis::setoption' => array ( 0 => 'bool', 'name' => 'int', 'value' => 'mixed', ), - 'Redis::setRange' => + 'redis::setrange' => array ( 0 => 'int', 'key' => 'string', 'offset' => 'int', 'end' => 'int', ), - 'Redis::setTimeout' => + 'redis::settimeout' => array ( 0 => 'mixed', 'key' => 'string', 'ttl' => 'int', ), - 'Redis::slave' => + 'redis::slave' => array ( 0 => 'bool', 'host' => 'string', 'port' => 'int', ), - 'Redis::slave\'1' => + 'redis::slave\'1' => array ( 0 => 'bool', 'host' => 'string', 'port' => 'int', ), - 'Redis::slaveof' => + 'redis::slaveof' => array ( 0 => 'bool', 'host=' => 'string', 'port=' => 'int', ), - 'Redis::slowLog' => + 'redis::slowlog' => array ( 0 => 'mixed', 'operation' => 'string', 'length=' => 'int', ), - 'Redis::sort' => + 'redis::sort' => array ( 0 => 'array|int', 'key' => 'string', 'options=' => 'array', ), - 'Redis::sortAsc' => + 'redis::sortasc' => array ( 0 => 'array', 'key' => 'string', @@ -27655,7 +27655,7 @@ 'end=' => 'int', 'getList=' => 'bool', ), - 'Redis::sortAscAlpha' => + 'redis::sortascalpha' => array ( 0 => 'array', 'key' => 'string', @@ -27665,7 +27665,7 @@ 'end=' => 'int', 'getList=' => 'bool', ), - 'Redis::sortDesc' => + 'redis::sortdesc' => array ( 0 => 'array', 'key' => 'string', @@ -27675,7 +27675,7 @@ 'end=' => 'int', 'getList=' => 'bool', ), - 'Redis::sortDescAlpha' => + 'redis::sortdescalpha' => array ( 0 => 'array', 'key' => 'string', @@ -27685,85 +27685,85 @@ 'end=' => 'int', 'getList=' => 'bool', ), - 'Redis::strLen' => + 'redis::strlen' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::subscribe' => + 'redis::subscribe' => array ( 0 => 'mixed|null', 'channels' => 'array', 'callback' => 'array|string', ), - 'Redis::substr' => + 'redis::substr' => array ( 0 => 'mixed', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'Redis::swapdb' => + 'redis::swapdb' => array ( 0 => 'bool', 'srcdb' => 'int', 'dstdb' => 'int', ), - 'Redis::time' => + 'redis::time' => array ( 0 => 'array', ), - 'Redis::ttl' => + 'redis::ttl' => array ( 0 => 'false|int', 'key' => 'string', ), - 'Redis::type' => + 'redis::type' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::unlink' => + 'redis::unlink' => array ( 0 => 'int', 'key' => 'string', '...args' => 'string', ), - 'Redis::unlink\'1' => + 'redis::unlink\'1' => array ( 0 => 'int', 'key' => 'array', ), - 'Redis::unsubscribe' => + 'redis::unsubscribe' => array ( 0 => 'mixed', 'channel' => 'string', '...other_channels=' => 'string', ), - 'Redis::unwatch' => + 'redis::unwatch' => array ( 0 => 'mixed', ), - 'Redis::wait' => + 'redis::wait' => array ( 0 => 'int', 'numSlaves' => 'int', 'timeout' => 'int', ), - 'Redis::watch' => + 'redis::watch' => array ( 0 => 'void', 'key' => 'string', '...other_keys=' => 'string', ), - 'Redis::xack' => + 'redis::xack' => array ( 0 => 'mixed', 'str_key' => 'string', 'str_group' => 'string', 'arr_ids' => 'array', ), - 'Redis::xadd' => + 'redis::xadd' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -27772,7 +27772,7 @@ 'i_maxlen=' => 'mixed', 'boo_approximate=' => 'mixed', ), - 'Redis::xclaim' => + 'redis::xclaim' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -27782,13 +27782,13 @@ 'arr_ids' => 'array', 'arr_opts=' => 'array', ), - 'Redis::xdel' => + 'redis::xdel' => array ( 0 => 'mixed', 'str_key' => 'string', 'arr_ids' => 'array', ), - 'Redis::xgroup' => + 'redis::xgroup' => array ( 0 => 'mixed', 'str_operation' => 'string', @@ -27797,19 +27797,19 @@ 'str_arg2=' => 'mixed', 'str_arg3=' => 'mixed', ), - 'Redis::xinfo' => + 'redis::xinfo' => array ( 0 => 'mixed', 'str_cmd' => 'string', 'str_key=' => 'string', 'str_group=' => 'string', ), - 'Redis::xlen' => + 'redis::xlen' => array ( 0 => 'mixed', 'key' => 'mixed', ), - 'Redis::xpending' => + 'redis::xpending' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -27819,7 +27819,7 @@ 'i_count=' => 'mixed', 'str_consumer=' => 'string', ), - 'Redis::xrange' => + 'redis::xrange' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -27827,14 +27827,14 @@ 'str_end' => 'mixed', 'i_count=' => 'mixed', ), - 'Redis::xread' => + 'redis::xread' => array ( 0 => 'mixed', 'arr_streams' => 'array', 'i_count=' => 'mixed', 'i_block=' => 'mixed', ), - 'Redis::xreadgroup' => + 'redis::xreadgroup' => array ( 0 => 'mixed', 'str_group' => 'string', @@ -27843,7 +27843,7 @@ 'i_count=' => 'mixed', 'i_block=' => 'mixed', ), - 'Redis::xrevrange' => + 'redis::xrevrange' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -27851,14 +27851,14 @@ 'str_end' => 'mixed', 'i_count=' => 'mixed', ), - 'Redis::xtrim' => + 'redis::xtrim' => array ( 0 => 'mixed', 'str_key' => 'string', 'i_maxlen' => 'mixed', 'boo_approximate=' => 'mixed', ), - 'Redis::zAdd' => + 'redis::zadd' => array ( 0 => 'int', 'key' => 'string', @@ -27869,7 +27869,7 @@ 'scoreN=' => 'float', 'valueN=' => 'string', ), - 'Redis::zAdd\'1' => + 'redis::zadd\'1' => array ( 0 => 'int', 'options' => 'array', @@ -27881,47 +27881,47 @@ 'scoreN=' => 'float', 'valueN=' => 'string', ), - 'Redis::zCard' => + 'redis::zcard' => array ( 0 => 'int', 'key' => 'string', ), - 'Redis::zCount' => + 'redis::zcount' => array ( 0 => 'int', 'key' => 'string', 'start' => 'string', 'end' => 'string', ), - 'Redis::zDelete' => + 'redis::zdelete' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', '...other_members=' => 'string', ), - 'Redis::zDeleteRangeByRank' => + 'redis::zdeleterangebyrank' => array ( 0 => 'mixed', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'Redis::zDeleteRangeByScore' => + 'redis::zdeleterangebyscore' => array ( 0 => 'mixed', 'key' => 'string', 'start' => 'float', 'end' => 'float', ), - 'Redis::zIncrBy' => + 'redis::zincrby' => array ( 0 => 'float', 'key' => 'string', 'value' => 'float', 'member' => 'string', ), - 'Redis::zInter' => + 'redis::zinter' => array ( 0 => 'int', 'Output' => 'string', @@ -27929,7 +27929,7 @@ 'Weights=' => 'array|null', 'aggregateFunction=' => 'string', ), - 'Redis::zInterStore' => + 'redis::zinterstore' => array ( 0 => 'int', 'Output' => 'string', @@ -27937,14 +27937,14 @@ 'Weights=' => 'array|null', 'aggregateFunction=' => 'string', ), - 'Redis::zLexCount' => + 'redis::zlexcount' => array ( 0 => 'int', 'key' => 'string', 'min' => 'string', 'max' => 'string', ), - 'Redis::zRange' => + 'redis::zrange' => array ( 0 => 'array', 'key' => 'string', @@ -27952,7 +27952,7 @@ 'end' => 'int', 'withscores=' => 'bool', ), - 'Redis::zRangeByLex' => + 'redis::zrangebylex' => array ( 0 => 'array|false', 'key' => 'string', @@ -27961,7 +27961,7 @@ 'offset=' => 'int', 'limit=' => 'int', ), - 'Redis::zRangeByScore' => + 'redis::zrangebyscore' => array ( 0 => 'array', 'key' => 'string', @@ -27969,62 +27969,62 @@ 'end' => 'int|string', 'options=' => 'array', ), - 'Redis::zRank' => + 'redis::zrank' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', ), - 'Redis::zRem' => + 'redis::zrem' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', '...other_members=' => 'string', ), - 'Redis::zRemRangeByLex' => + 'redis::zremrangebylex' => array ( 0 => 'int', 'key' => 'string', 'min' => 'string', 'max' => 'string', ), - 'Redis::zRemRangeByRank' => + 'redis::zremrangebyrank' => array ( 0 => 'int', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'Redis::zRemRangeByScore' => + 'redis::zremrangebyscore' => array ( 0 => 'int', 'key' => 'string', 'start' => 'float|string', 'end' => 'float|string', ), - 'Redis::zRemove' => + 'redis::zremove' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', '...other_members=' => 'string', ), - 'Redis::zRemoveRangeByRank' => + 'redis::zremoverangebyrank' => array ( 0 => 'int', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'Redis::zRemoveRangeByScore' => + 'redis::zremoverangebyscore' => array ( 0 => 'int', 'key' => 'string', 'start' => 'float|string', 'end' => 'float|string', ), - 'Redis::zRevRange' => + 'redis::zrevrange' => array ( 0 => 'array', 'key' => 'string', @@ -28032,7 +28032,7 @@ 'end' => 'int', 'withscore=' => 'bool', ), - 'Redis::zRevRangeByLex' => + 'redis::zrevrangebylex' => array ( 0 => 'array', 'key' => 'string', @@ -28041,7 +28041,7 @@ 'offset=' => 'int', 'limit=' => 'int', ), - 'Redis::zRevRangeByScore' => + 'redis::zrevrangebyscore' => array ( 0 => 'array', 'key' => 'string', @@ -28049,13 +28049,13 @@ 'end' => 'string', 'options=' => 'array', ), - 'Redis::zRevRank' => + 'redis::zrevrank' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', ), - 'Redis::zReverseRange' => + 'redis::zreverserange' => array ( 0 => 'array', 'key' => 'string', @@ -28063,7 +28063,7 @@ 'end' => 'int', 'withscore=' => 'bool', ), - 'Redis::zScan' => + 'redis::zscan' => array ( 0 => 'array|bool', 'key' => 'string', @@ -28071,18 +28071,18 @@ 'pattern=' => 'string', 'count=' => 'int', ), - 'Redis::zScore' => + 'redis::zscore' => array ( 0 => 'false|float', 'key' => 'string', 'member' => 'string', ), - 'Redis::zSize' => + 'redis::zsize' => array ( 0 => 'mixed', 'key' => 'string', ), - 'Redis::zUnion' => + 'redis::zunion' => array ( 0 => 'int', 'Output' => 'string', @@ -28090,7 +28090,7 @@ 'Weights=' => 'array|null', 'aggregateFunction=' => 'string', ), - 'Redis::zUnionStore' => + 'redis::zunionstore' => array ( 0 => 'int', 'Output' => 'string', @@ -28098,159 +28098,159 @@ 'Weights=' => 'array|null', 'aggregateFunction=' => 'string', ), - 'RedisArray::__call' => + 'redisarray::__call' => array ( 0 => 'mixed', 'function_name' => 'string', 'arguments' => 'array', ), - 'RedisArray::__construct' => + 'redisarray::__construct' => array ( 0 => 'void', 'name=' => 'string', 'hosts=' => 'array|null', 'opts=' => 'array|null', ), - 'RedisArray::_continuum' => + 'redisarray::_continuum' => array ( 0 => 'mixed', ), - 'RedisArray::_distributor' => + 'redisarray::_distributor' => array ( 0 => 'mixed', ), - 'RedisArray::_function' => + 'redisarray::_function' => array ( 0 => 'string', ), - 'RedisArray::_hosts' => + 'redisarray::_hosts' => array ( 0 => 'array', ), - 'RedisArray::_instance' => + 'redisarray::_instance' => array ( 0 => 'mixed', 'host' => 'mixed', ), - 'RedisArray::_rehash' => + 'redisarray::_rehash' => array ( 0 => 'mixed', 'callable=' => 'callable', ), - 'RedisArray::_target' => + 'redisarray::_target' => array ( 0 => 'string', 'key' => 'string', ), - 'RedisArray::bgsave' => + 'redisarray::bgsave' => array ( 0 => 'mixed', ), - 'RedisArray::del' => + 'redisarray::del' => array ( 0 => 'bool', 'key' => 'string', '...args' => 'string', ), - 'RedisArray::delete' => + 'redisarray::delete' => array ( 0 => 'bool', 'key' => 'string', '...args' => 'string', ), - 'RedisArray::delete\'1' => + 'redisarray::delete\'1' => array ( 0 => 'bool', 'key' => 'array', ), - 'RedisArray::discard' => + 'redisarray::discard' => array ( 0 => 'mixed', ), - 'RedisArray::exec' => + 'redisarray::exec' => array ( 0 => 'array', ), - 'RedisArray::flushAll' => + 'redisarray::flushall' => array ( 0 => 'bool', 'async=' => 'bool', ), - 'RedisArray::flushDb' => + 'redisarray::flushdb' => array ( 0 => 'bool', 'async=' => 'bool', ), - 'RedisArray::getMultiple' => + 'redisarray::getmultiple' => array ( 0 => 'mixed', 'keys' => 'mixed', ), - 'RedisArray::getOption' => + 'redisarray::getoption' => array ( 0 => 'mixed', 'opt' => 'mixed', ), - 'RedisArray::info' => + 'redisarray::info' => array ( 0 => 'array', ), - 'RedisArray::keys' => + 'redisarray::keys' => array ( 0 => 'array', 'pattern' => 'mixed', ), - 'RedisArray::mGet' => + 'redisarray::mget' => array ( 0 => 'array', 'keys' => 'array', ), - 'RedisArray::mSet' => + 'redisarray::mset' => array ( 0 => 'bool', 'pairs' => 'array', ), - 'RedisArray::multi' => + 'redisarray::multi' => array ( 0 => 'RedisArray', 'host' => 'string', 'mode=' => 'int', ), - 'RedisArray::ping' => + 'redisarray::ping' => array ( 0 => 'string', ), - 'RedisArray::save' => + 'redisarray::save' => array ( 0 => 'bool', ), - 'RedisArray::select' => + 'redisarray::select' => array ( 0 => 'mixed', 'index' => 'mixed', ), - 'RedisArray::setOption' => + 'redisarray::setoption' => array ( 0 => 'mixed', 'opt' => 'mixed', 'value' => 'mixed', ), - 'RedisArray::unlink' => + 'redisarray::unlink' => array ( 0 => 'int', 'key' => 'string', '...other_keys=' => 'string', ), - 'RedisArray::unlink\'1' => + 'redisarray::unlink\'1' => array ( 0 => 'int', 'key' => 'array', ), - 'RedisArray::unwatch' => + 'redisarray::unwatch' => array ( 0 => 'mixed', ), - 'RedisCluster::__construct' => + 'rediscluster::__construct' => array ( 0 => 'void', 'name' => 'null|string', @@ -28260,51 +28260,51 @@ 'persistent=' => 'bool', 'auth=' => 'null|string', ), - 'RedisCluster::_masters' => + 'rediscluster::_masters' => array ( 0 => 'array', ), - 'RedisCluster::_prefix' => + 'rediscluster::_prefix' => array ( 0 => 'string', 'value' => 'mixed', ), - 'RedisCluster::_redir' => + 'rediscluster::_redir' => array ( 0 => 'mixed', ), - 'RedisCluster::_serialize' => + 'rediscluster::_serialize' => array ( 0 => 'mixed', 'value' => 'mixed', ), - 'RedisCluster::_unserialize' => + 'rediscluster::_unserialize' => array ( 0 => 'mixed', 'value' => 'string', ), - 'RedisCluster::append' => + 'rediscluster::append' => array ( 0 => 'int', 'key' => 'string', 'value' => 'string', ), - 'RedisCluster::bgrewriteaof' => + 'rediscluster::bgrewriteaof' => array ( 0 => 'bool', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'RedisCluster::bgsave' => + 'rediscluster::bgsave' => array ( 0 => 'bool', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'RedisCluster::bitCount' => + 'rediscluster::bitcount' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::bitOp' => + 'rediscluster::bitop' => array ( 0 => 'int', 'operation' => 'string', @@ -28312,7 +28312,7 @@ 'key1' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::bitpos' => + 'rediscluster::bitpos' => array ( 0 => 'int', 'key' => 'string', @@ -28320,52 +28320,52 @@ 'start=' => 'int', 'end=' => 'int', ), - 'RedisCluster::blPop' => + 'rediscluster::blpop' => array ( 0 => 'array', 'keys' => 'array', 'timeout' => 'int', ), - 'RedisCluster::brPop' => + 'rediscluster::brpop' => array ( 0 => 'array', 'keys' => 'array', 'timeout' => 'int', ), - 'RedisCluster::brpoplpush' => + 'rediscluster::brpoplpush' => array ( 0 => 'false|string', 'srcKey' => 'string', 'dstKey' => 'string', 'timeout' => 'int', ), - 'RedisCluster::clearLastError' => + 'rediscluster::clearlasterror' => array ( 0 => 'bool', ), - 'RedisCluster::client' => + 'rediscluster::client' => array ( 0 => 'mixed', 'nodeParams' => 'array{0: string, 1: int}|string', 'subCmd=' => 'string', '...args=' => 'mixed', ), - 'RedisCluster::close' => + 'rediscluster::close' => array ( 0 => 'mixed', ), - 'RedisCluster::cluster' => + 'rediscluster::cluster' => array ( 0 => 'mixed', 'nodeParams' => 'array{0: string, 1: int}|string', 'command' => 'string', 'arguments=' => 'mixed', ), - 'RedisCluster::command' => + 'rediscluster::command' => array ( 0 => 'array|bool', ), - 'RedisCluster::config' => + 'rediscluster::config' => array ( 0 => 'array|bool', 'nodeParams' => 'array{0: string, 1: int}|string', @@ -28373,96 +28373,96 @@ 'key' => 'string', 'value=' => 'string', ), - 'RedisCluster::dbSize' => + 'rediscluster::dbsize' => array ( 0 => 'int', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'RedisCluster::decr' => + 'rediscluster::decr' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::decrBy' => + 'rediscluster::decrby' => array ( 0 => 'int', 'key' => 'string', 'value' => 'int', ), - 'RedisCluster::del' => + 'rediscluster::del' => array ( 0 => 'int', 'key' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::del\'1' => + 'rediscluster::del\'1' => array ( 0 => 'int', 'key' => 'array', ), - 'RedisCluster::discard' => + 'rediscluster::discard' => array ( 0 => 'mixed', ), - 'RedisCluster::dump' => + 'rediscluster::dump' => array ( 0 => 'false|string', 'key' => 'string', ), - 'RedisCluster::echo' => + 'rediscluster::echo' => array ( 0 => 'string', 'nodeParams' => 'array{0: string, 1: int}|string', 'msg' => 'string', ), - 'RedisCluster::eval' => + 'rediscluster::eval' => array ( 0 => 'mixed', 'script' => 'mixed', 'args=' => 'mixed', 'numKeys=' => 'mixed', ), - 'RedisCluster::evalSha' => + 'rediscluster::evalsha' => array ( 0 => 'mixed', 'scriptSha' => 'string', 'args=' => 'array', 'numKeys=' => 'int', ), - 'RedisCluster::exec' => + 'rediscluster::exec' => array ( 0 => 'array|null', ), - 'RedisCluster::exists' => + 'rediscluster::exists' => array ( 0 => 'bool', 'key' => 'string', ), - 'RedisCluster::expire' => + 'rediscluster::expire' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', ), - 'RedisCluster::expireAt' => + 'rediscluster::expireat' => array ( 0 => 'bool', 'key' => 'string', 'timestamp' => 'int', ), - 'RedisCluster::flushAll' => + 'rediscluster::flushall' => array ( 0 => 'bool', 'nodeParams' => 'array{0: string, 1: int}|string', 'async=' => 'bool', ), - 'RedisCluster::flushDB' => + 'rediscluster::flushdb' => array ( 0 => 'bool', 'nodeParams' => 'array{0: string, 1: int}|string', 'async=' => 'bool', ), - 'RedisCluster::geoAdd' => + 'rediscluster::geoadd' => array ( 0 => 'int', 'key' => 'string', @@ -28471,7 +28471,7 @@ 'member' => 'string', '...other_members=' => 'float|string', ), - 'RedisCluster::geoDist' => + 'rediscluster::geodist' => array ( 0 => 'mixed', 'key' => 'string', @@ -28479,7 +28479,7 @@ 'member2' => 'string', 'unit=' => 'string', ), - 'RedisCluster::geoRadius' => + 'rediscluster::georadius' => array ( 0 => 'mixed', 'key' => 'string', @@ -28489,7 +28489,7 @@ 'radiusUnit' => 'string', 'options=' => 'array', ), - 'RedisCluster::geoRadiusByMember' => + 'rediscluster::georadiusbymember' => array ( 0 => 'array', 'key' => 'string', @@ -28498,118 +28498,118 @@ 'radiusUnit' => 'string', 'options=' => 'array', ), - 'RedisCluster::geohash' => + 'rediscluster::geohash' => array ( 0 => 'array', 'key' => 'string', 'member' => 'string', '...other_members=' => 'string', ), - 'RedisCluster::geopos' => + 'rediscluster::geopos' => array ( 0 => 'array', 'key' => 'string', 'member' => 'string', '...other_members=' => 'string', ), - 'RedisCluster::get' => + 'rediscluster::get' => array ( 0 => 'false|string', 'key' => 'string', ), - 'RedisCluster::getBit' => + 'rediscluster::getbit' => array ( 0 => 'int', 'key' => 'string', 'offset' => 'int', ), - 'RedisCluster::getLastError' => + 'rediscluster::getlasterror' => array ( 0 => 'null|string', ), - 'RedisCluster::getMode' => + 'rediscluster::getmode' => array ( 0 => 'int', ), - 'RedisCluster::getOption' => + 'rediscluster::getoption' => array ( 0 => 'int', 'option' => 'int', ), - 'RedisCluster::getRange' => + 'rediscluster::getrange' => array ( 0 => 'string', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'RedisCluster::getSet' => + 'rediscluster::getset' => array ( 0 => 'string', 'key' => 'string', 'value' => 'string', ), - 'RedisCluster::hDel' => + 'rediscluster::hdel' => array ( 0 => 'false|int', 'key' => 'string', 'hashKey' => 'string', '...other_hashKeys=' => 'array', ), - 'RedisCluster::hExists' => + 'rediscluster::hexists' => array ( 0 => 'bool', 'key' => 'string', 'hashKey' => 'string', ), - 'RedisCluster::hGet' => + 'rediscluster::hget' => array ( 0 => 'false|string', 'key' => 'string', 'hashKey' => 'string', ), - 'RedisCluster::hGetAll' => + 'rediscluster::hgetall' => array ( 0 => 'array', 'key' => 'string', ), - 'RedisCluster::hIncrBy' => + 'rediscluster::hincrby' => array ( 0 => 'int', 'key' => 'string', 'hashKey' => 'string', 'value' => 'int', ), - 'RedisCluster::hIncrByFloat' => + 'rediscluster::hincrbyfloat' => array ( 0 => 'float', 'key' => 'string', 'field' => 'string', 'increment' => 'float', ), - 'RedisCluster::hKeys' => + 'rediscluster::hkeys' => array ( 0 => 'array', 'key' => 'string', ), - 'RedisCluster::hLen' => + 'rediscluster::hlen' => array ( 0 => 'false|int', 'key' => 'string', ), - 'RedisCluster::hMGet' => + 'rediscluster::hmget' => array ( 0 => 'array', 'key' => 'string', 'hashKeys' => 'array', ), - 'RedisCluster::hMSet' => + 'rediscluster::hmset' => array ( 0 => 'bool', 'key' => 'string', 'hashKeys' => 'array', ), - 'RedisCluster::hScan' => + 'rediscluster::hscan' => array ( 0 => 'array', 'key' => 'string', @@ -28617,72 +28617,72 @@ 'pattern=' => 'string', 'count=' => 'int', ), - 'RedisCluster::hSet' => + 'rediscluster::hset' => array ( 0 => 'int', 'key' => 'string', 'hashKey' => 'string', 'value' => 'string', ), - 'RedisCluster::hSetNx' => + 'rediscluster::hsetnx' => array ( 0 => 'bool', 'key' => 'string', 'hashKey' => 'string', 'value' => 'string', ), - 'RedisCluster::hStrlen' => + 'rediscluster::hstrlen' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', ), - 'RedisCluster::hVals' => + 'rediscluster::hvals' => array ( 0 => 'array', 'key' => 'string', ), - 'RedisCluster::incr' => + 'rediscluster::incr' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::incrBy' => + 'rediscluster::incrby' => array ( 0 => 'int', 'key' => 'string', 'value' => 'int', ), - 'RedisCluster::incrByFloat' => + 'rediscluster::incrbyfloat' => array ( 0 => 'float', 'key' => 'string', 'increment' => 'float', ), - 'RedisCluster::info' => + 'rediscluster::info' => array ( 0 => 'array', 'nodeParams' => 'array{0: string, 1: int}|string', 'option=' => 'string', ), - 'RedisCluster::keys' => + 'rediscluster::keys' => array ( 0 => 'array', 'pattern' => 'string', ), - 'RedisCluster::lGet' => + 'rediscluster::lget' => array ( 0 => 'mixed', 'key' => 'string', 'index' => 'int', ), - 'RedisCluster::lIndex' => + 'rediscluster::lindex' => array ( 0 => 'false|string', 'key' => 'string', 'index' => 'int', ), - 'RedisCluster::lInsert' => + 'rediscluster::linsert' => array ( 0 => 'int', 'key' => 'string', @@ -28690,17 +28690,17 @@ 'pivot' => 'string', 'value' => 'string', ), - 'RedisCluster::lLen' => + 'rediscluster::llen' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::lPop' => + 'rediscluster::lpop' => array ( 0 => 'false|string', 'key' => 'string', ), - 'RedisCluster::lPush' => + 'rediscluster::lpush' => array ( 0 => 'false|int', 'key' => 'string', @@ -28708,153 +28708,153 @@ 'value2=' => 'string', 'valueN=' => 'string', ), - 'RedisCluster::lPushx' => + 'rediscluster::lpushx' => array ( 0 => 'false|int', 'key' => 'string', 'value' => 'string', ), - 'RedisCluster::lRange' => + 'rediscluster::lrange' => array ( 0 => 'array', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'RedisCluster::lRem' => + 'rediscluster::lrem' => array ( 0 => 'false|int', 'key' => 'string', 'value' => 'string', 'count' => 'int', ), - 'RedisCluster::lSet' => + 'rediscluster::lset' => array ( 0 => 'bool', 'key' => 'string', 'index' => 'int', 'value' => 'string', ), - 'RedisCluster::lTrim' => + 'rediscluster::ltrim' => array ( 0 => 'array|false', 'key' => 'string', 'start' => 'int', 'stop' => 'int', ), - 'RedisCluster::lastSave' => + 'rediscluster::lastsave' => array ( 0 => 'int', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'RedisCluster::mget' => + 'rediscluster::mget' => array ( 0 => 'array', 'array' => 'array', ), - 'RedisCluster::mset' => + 'rediscluster::mset' => array ( 0 => 'bool', 'array' => 'array', ), - 'RedisCluster::msetnx' => + 'rediscluster::msetnx' => array ( 0 => 'int', 'array' => 'array', ), - 'RedisCluster::multi' => + 'rediscluster::multi' => array ( 0 => 'Redis', 'mode=' => 'int', ), - 'RedisCluster::object' => + 'rediscluster::object' => array ( 0 => 'false|int|string', 'string' => 'string', 'key' => 'string', ), - 'RedisCluster::pExpire' => + 'rediscluster::pexpire' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', ), - 'RedisCluster::pExpireAt' => + 'rediscluster::pexpireat' => array ( 0 => 'bool', 'key' => 'string', 'timestamp' => 'int', ), - 'RedisCluster::persist' => + 'rediscluster::persist' => array ( 0 => 'bool', 'key' => 'string', ), - 'RedisCluster::pfAdd' => + 'rediscluster::pfadd' => array ( 0 => 'bool', 'key' => 'string', 'elements' => 'array', ), - 'RedisCluster::pfCount' => + 'rediscluster::pfcount' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::pfMerge' => + 'rediscluster::pfmerge' => array ( 0 => 'bool', 'destKey' => 'string', 'sourceKeys' => 'array', ), - 'RedisCluster::ping' => + 'rediscluster::ping' => array ( 0 => 'string', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'RedisCluster::psetex' => + 'rediscluster::psetex' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', 'value' => 'string', ), - 'RedisCluster::psubscribe' => + 'rediscluster::psubscribe' => array ( 0 => 'mixed', 'patterns' => 'array', 'callback' => 'string', ), - 'RedisCluster::pttl' => + 'rediscluster::pttl' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::publish' => + 'rediscluster::publish' => array ( 0 => 'int', 'channel' => 'string', 'message' => 'string', ), - 'RedisCluster::pubsub' => + 'rediscluster::pubsub' => array ( 0 => 'array', 'nodeParams' => 'string', 'keyword' => 'string', '...argument=' => 'string', ), - 'RedisCluster::punSubscribe' => + 'rediscluster::punsubscribe' => array ( 0 => 'mixed', 'channels' => 'mixed', 'callback' => 'mixed', ), - 'RedisCluster::rPop' => + 'rediscluster::rpop' => array ( 0 => 'false|string', 'key' => 'string', ), - 'RedisCluster::rPush' => + 'rediscluster::rpush' => array ( 0 => 'false|int', 'key' => 'string', @@ -28862,54 +28862,54 @@ 'value2=' => 'string', 'valueN=' => 'string', ), - 'RedisCluster::rPushx' => + 'rediscluster::rpushx' => array ( 0 => 'false|int', 'key' => 'string', 'value' => 'string', ), - 'RedisCluster::randomKey' => + 'rediscluster::randomkey' => array ( 0 => 'string', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'RedisCluster::rawCommand' => + 'rediscluster::rawcommand' => array ( 0 => 'mixed', 'nodeParams' => 'array{0: string, 1: int}|string', 'command' => 'string', 'arguments=' => 'mixed', ), - 'RedisCluster::rename' => + 'rediscluster::rename' => array ( 0 => 'bool', 'srcKey' => 'string', 'dstKey' => 'string', ), - 'RedisCluster::renameNx' => + 'rediscluster::renamenx' => array ( 0 => 'bool', 'srcKey' => 'string', 'dstKey' => 'string', ), - 'RedisCluster::restore' => + 'rediscluster::restore' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', 'value' => 'string', ), - 'RedisCluster::role' => + 'rediscluster::role' => array ( 0 => 'array', ), - 'RedisCluster::rpoplpush' => + 'rediscluster::rpoplpush' => array ( 0 => 'false|string', 'srcKey' => 'string', 'dstKey' => 'string', ), - 'RedisCluster::sAdd' => + 'rediscluster::sadd' => array ( 0 => 'false|int', 'key' => 'string', @@ -28917,81 +28917,81 @@ 'value2=' => 'string', 'valueN=' => 'string', ), - 'RedisCluster::sAddArray' => + 'rediscluster::saddarray' => array ( 0 => 'false|int', 'key' => 'string', 'valueArray' => 'array', ), - 'RedisCluster::sCard' => + 'rediscluster::scard' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::sDiff' => + 'rediscluster::sdiff' => array ( 0 => 'list', 'key1' => 'string', 'key2' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::sDiffStore' => + 'rediscluster::sdiffstore' => array ( 0 => 'int', 'dstKey' => 'string', 'key1' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::sInter' => + 'rediscluster::sinter' => array ( 0 => 'list', 'key' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::sInterStore' => + 'rediscluster::sinterstore' => array ( 0 => 'int', 'dstKey' => 'string', 'key' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::sIsMember' => + 'rediscluster::sismember' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'RedisCluster::sMembers' => + 'rediscluster::smembers' => array ( 0 => 'list', 'key' => 'string', ), - 'RedisCluster::sMove' => + 'rediscluster::smove' => array ( 0 => 'bool', 'srcKey' => 'string', 'dstKey' => 'string', 'member' => 'string', ), - 'RedisCluster::sPop' => + 'rediscluster::spop' => array ( 0 => 'string', 'key' => 'string', ), - 'RedisCluster::sRandMember' => + 'rediscluster::srandmember' => array ( 0 => 'array|string', 'key' => 'string', 'count=' => 'int', ), - 'RedisCluster::sRem' => + 'rediscluster::srem' => array ( 0 => 'int', 'key' => 'string', 'member1' => 'string', '...other_members=' => 'string', ), - 'RedisCluster::sScan' => + 'rediscluster::sscan' => array ( 0 => 'array|false', 'key' => 'string', @@ -28999,30 +28999,30 @@ 'pattern=' => 'null', 'count=' => 'int', ), - 'RedisCluster::sUnion' => + 'rediscluster::sunion' => array ( 0 => 'list', 'key1' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::sUnion\'1' => + 'rediscluster::sunion\'1' => array ( 0 => 'list', 'keys' => 'array', ), - 'RedisCluster::sUnionStore' => + 'rediscluster::sunionstore' => array ( 0 => 'int', 'dstKey' => 'string', 'key1' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::save' => + 'rediscluster::save' => array ( 0 => 'bool', 'nodeParams' => 'array{0: string, 1: int}|string', ), - 'RedisCluster::scan' => + 'rediscluster::scan' => array ( 0 => 'array|false', '&iterator' => 'int', @@ -29030,7 +29030,7 @@ 'pattern=' => 'string', 'count=' => 'int', ), - 'RedisCluster::script' => + 'rediscluster::script' => array ( 0 => 'array|bool|string', 'nodeParams' => 'array{0: string, 1: int}|string', @@ -29038,114 +29038,114 @@ 'script=' => 'string', '...other_scripts=' => 'array', ), - 'RedisCluster::set' => + 'rediscluster::set' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', 'timeout=' => 'array|int', ), - 'RedisCluster::setBit' => + 'rediscluster::setbit' => array ( 0 => 'int', 'key' => 'string', 'offset' => 'int', 'value' => 'bool|int', ), - 'RedisCluster::setOption' => + 'rediscluster::setoption' => array ( 0 => 'bool', 'option' => 'int', 'value' => 'int|string', ), - 'RedisCluster::setRange' => + 'rediscluster::setrange' => array ( 0 => 'string', 'key' => 'string', 'offset' => 'int', 'value' => 'string', ), - 'RedisCluster::setex' => + 'rediscluster::setex' => array ( 0 => 'bool', 'key' => 'string', 'ttl' => 'int', 'value' => 'string', ), - 'RedisCluster::setnx' => + 'rediscluster::setnx' => array ( 0 => 'bool', 'key' => 'string', 'value' => 'string', ), - 'RedisCluster::slowLog' => + 'rediscluster::slowlog' => array ( 0 => 'array|bool|int', 'nodeParams' => 'array{0: string, 1: int}|string', 'command' => 'string', 'length=' => 'int', ), - 'RedisCluster::sort' => + 'rediscluster::sort' => array ( 0 => 'array', 'key' => 'string', 'option=' => 'array', ), - 'RedisCluster::strlen' => + 'rediscluster::strlen' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::subscribe' => + 'rediscluster::subscribe' => array ( 0 => 'mixed', 'channels' => 'array', 'callback' => 'string', ), - 'RedisCluster::time' => + 'rediscluster::time' => array ( 0 => 'array', ), - 'RedisCluster::ttl' => + 'rediscluster::ttl' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::type' => + 'rediscluster::type' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::unSubscribe' => + 'rediscluster::unsubscribe' => array ( 0 => 'mixed', 'channels' => 'mixed', '...other_channels=' => 'mixed', ), - 'RedisCluster::unlink' => + 'rediscluster::unlink' => array ( 0 => 'int', 'key' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::unwatch' => + 'rediscluster::unwatch' => array ( 0 => 'mixed', ), - 'RedisCluster::watch' => + 'rediscluster::watch' => array ( 0 => 'void', 'key' => 'string', '...other_keys=' => 'string', ), - 'RedisCluster::xack' => + 'rediscluster::xack' => array ( 0 => 'mixed', 'str_key' => 'string', 'str_group' => 'string', 'arr_ids' => 'array', ), - 'RedisCluster::xadd' => + 'rediscluster::xadd' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -29154,7 +29154,7 @@ 'i_maxlen=' => 'mixed', 'boo_approximate=' => 'mixed', ), - 'RedisCluster::xclaim' => + 'rediscluster::xclaim' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -29164,13 +29164,13 @@ 'arr_ids' => 'array', 'arr_opts=' => 'array', ), - 'RedisCluster::xdel' => + 'rediscluster::xdel' => array ( 0 => 'mixed', 'str_key' => 'string', 'arr_ids' => 'array', ), - 'RedisCluster::xgroup' => + 'rediscluster::xgroup' => array ( 0 => 'mixed', 'str_operation' => 'string', @@ -29179,19 +29179,19 @@ 'str_arg2=' => 'mixed', 'str_arg3=' => 'mixed', ), - 'RedisCluster::xinfo' => + 'rediscluster::xinfo' => array ( 0 => 'mixed', 'str_cmd' => 'string', 'str_key=' => 'string', 'str_group=' => 'string', ), - 'RedisCluster::xlen' => + 'rediscluster::xlen' => array ( 0 => 'mixed', 'key' => 'mixed', ), - 'RedisCluster::xpending' => + 'rediscluster::xpending' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -29201,7 +29201,7 @@ 'i_count=' => 'mixed', 'str_consumer=' => 'string', ), - 'RedisCluster::xrange' => + 'rediscluster::xrange' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -29209,14 +29209,14 @@ 'str_end' => 'mixed', 'i_count=' => 'mixed', ), - 'RedisCluster::xread' => + 'rediscluster::xread' => array ( 0 => 'mixed', 'arr_streams' => 'array', 'i_count=' => 'mixed', 'i_block=' => 'mixed', ), - 'RedisCluster::xreadgroup' => + 'rediscluster::xreadgroup' => array ( 0 => 'mixed', 'str_group' => 'string', @@ -29225,7 +29225,7 @@ 'i_count=' => 'mixed', 'i_block=' => 'mixed', ), - 'RedisCluster::xrevrange' => + 'rediscluster::xrevrange' => array ( 0 => 'mixed', 'str_key' => 'string', @@ -29233,14 +29233,14 @@ 'str_end' => 'mixed', 'i_count=' => 'mixed', ), - 'RedisCluster::xtrim' => + 'rediscluster::xtrim' => array ( 0 => 'mixed', 'str_key' => 'string', 'i_maxlen' => 'mixed', 'boo_approximate=' => 'mixed', ), - 'RedisCluster::zAdd' => + 'rediscluster::zadd' => array ( 0 => 'int', 'key' => 'string', @@ -29251,26 +29251,26 @@ 'scoreN=' => 'float', 'valueN=' => 'string', ), - 'RedisCluster::zCard' => + 'rediscluster::zcard' => array ( 0 => 'int', 'key' => 'string', ), - 'RedisCluster::zCount' => + 'rediscluster::zcount' => array ( 0 => 'int', 'key' => 'string', 'start' => 'string', 'end' => 'string', ), - 'RedisCluster::zIncrBy' => + 'rediscluster::zincrby' => array ( 0 => 'float', 'key' => 'string', 'value' => 'float', 'member' => 'string', ), - 'RedisCluster::zInterStore' => + 'rediscluster::zinterstore' => array ( 0 => 'int', 'Output' => 'string', @@ -29278,14 +29278,14 @@ 'Weights=' => 'array|null', 'aggregateFunction=' => 'string', ), - 'RedisCluster::zLexCount' => + 'rediscluster::zlexcount' => array ( 0 => 'int', 'key' => 'string', 'min' => 'int', 'max' => 'int', ), - 'RedisCluster::zRange' => + 'rediscluster::zrange' => array ( 0 => 'array', 'key' => 'string', @@ -29293,7 +29293,7 @@ 'end' => 'int', 'withscores=' => 'bool', ), - 'RedisCluster::zRangeByLex' => + 'rediscluster::zrangebylex' => array ( 0 => 'array', 'key' => 'string', @@ -29302,7 +29302,7 @@ 'offset=' => 'int', 'limit=' => 'int', ), - 'RedisCluster::zRangeByScore' => + 'rediscluster::zrangebyscore' => array ( 0 => 'array', 'key' => 'string', @@ -29310,41 +29310,41 @@ 'end' => 'int', 'options=' => 'array', ), - 'RedisCluster::zRank' => + 'rediscluster::zrank' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', ), - 'RedisCluster::zRem' => + 'rediscluster::zrem' => array ( 0 => 'int', 'key' => 'string', 'member1' => 'string', '...other_members=' => 'string', ), - 'RedisCluster::zRemRangeByLex' => + 'rediscluster::zremrangebylex' => array ( 0 => 'array', 'key' => 'string', 'min' => 'int', 'max' => 'int', ), - 'RedisCluster::zRemRangeByRank' => + 'rediscluster::zremrangebyrank' => array ( 0 => 'int', 'key' => 'string', 'start' => 'int', 'end' => 'int', ), - 'RedisCluster::zRemRangeByScore' => + 'rediscluster::zremrangebyscore' => array ( 0 => 'int', 'key' => 'string', 'start' => 'float|string', 'end' => 'float|string', ), - 'RedisCluster::zRevRange' => + 'rediscluster::zrevrange' => array ( 0 => 'array', 'key' => 'string', @@ -29352,7 +29352,7 @@ 'end' => 'int', 'withscore=' => 'bool', ), - 'RedisCluster::zRevRangeByLex' => + 'rediscluster::zrevrangebylex' => array ( 0 => 'array', 'key' => 'string', @@ -29361,7 +29361,7 @@ 'offset=' => 'int', 'limit=' => 'int', ), - 'RedisCluster::zRevRangeByScore' => + 'rediscluster::zrevrangebyscore' => array ( 0 => 'array', 'key' => 'string', @@ -29369,13 +29369,13 @@ 'end' => 'int', 'options=' => 'array', ), - 'RedisCluster::zRevRank' => + 'rediscluster::zrevrank' => array ( 0 => 'int', 'key' => 'string', 'member' => 'string', ), - 'RedisCluster::zScan' => + 'rediscluster::zscan' => array ( 0 => 'array|false', 'key' => 'string', @@ -29383,13 +29383,13 @@ 'pattern=' => 'string', 'count=' => 'int', ), - 'RedisCluster::zScore' => + 'rediscluster::zscore' => array ( 0 => 'float', 'key' => 'string', 'member' => 'string', ), - 'RedisCluster::zUnionStore' => + 'rediscluster::zunionstore' => array ( 0 => 'int', 'Output' => 'string', @@ -29397,1322 +29397,1322 @@ 'Weights=' => 'array|null', 'aggregateFunction=' => 'string', ), - 'Reflection::export' => + 'reflection::export' => array ( 0 => 'null|string', 'r' => 'reflector', 'return=' => 'bool', ), - 'Reflection::getModifierNames' => + 'reflection::getmodifiernames' => array ( 0 => 'list', 'modifiers' => 'int', ), - 'ReflectionClass::__clone' => + 'reflectionclass::__clone' => array ( 0 => 'void', ), - 'ReflectionClass::__construct' => + 'reflectionclass::__construct' => array ( 0 => 'void', 'objectOrClass' => 'class-string|object', ), - 'ReflectionClass::__toString' => + 'reflectionclass::__tostring' => array ( 0 => 'string', ), - 'ReflectionClass::export' => + 'reflectionclass::export' => array ( 0 => 'null|string', 'argument' => 'object|string', 'return=' => 'bool', ), - 'ReflectionClass::getConstant' => + 'reflectionclass::getconstant' => array ( 0 => 'mixed', 'name' => 'string', ), - 'ReflectionClass::getConstants' => + 'reflectionclass::getconstants' => array ( 0 => 'array', ), - 'ReflectionClass::getConstructor' => + 'reflectionclass::getconstructor' => array ( 0 => 'ReflectionMethod|null', ), - 'ReflectionClass::getDefaultProperties' => + 'reflectionclass::getdefaultproperties' => array ( 0 => 'array', ), - 'ReflectionClass::getDocComment' => + 'reflectionclass::getdoccomment' => array ( 0 => 'false|string', ), - 'ReflectionClass::getEndLine' => + 'reflectionclass::getendline' => array ( 0 => 'false|int', ), - 'ReflectionClass::getExtension' => + 'reflectionclass::getextension' => array ( 0 => 'ReflectionExtension|null', ), - 'ReflectionClass::getExtensionName' => + 'reflectionclass::getextensionname' => array ( 0 => 'false|string', ), - 'ReflectionClass::getFileName' => + 'reflectionclass::getfilename' => array ( 0 => 'false|string', ), - 'ReflectionClass::getInterfaceNames' => + 'reflectionclass::getinterfacenames' => array ( 0 => 'list', ), - 'ReflectionClass::getInterfaces' => + 'reflectionclass::getinterfaces' => array ( 0 => 'array', ), - 'ReflectionClass::getMethod' => + 'reflectionclass::getmethod' => array ( 0 => 'ReflectionMethod', 'name' => 'string', ), - 'ReflectionClass::getMethods' => + 'reflectionclass::getmethods' => array ( 0 => 'list', 'filter=' => 'int', ), - 'ReflectionClass::getModifiers' => + 'reflectionclass::getmodifiers' => array ( 0 => 'int', ), - 'ReflectionClass::getName' => + 'reflectionclass::getname' => array ( 0 => 'class-string', ), - 'ReflectionClass::getNamespaceName' => + 'reflectionclass::getnamespacename' => array ( 0 => 'string', ), - 'ReflectionClass::getParentClass' => + 'reflectionclass::getparentclass' => array ( 0 => 'ReflectionClass|false', ), - 'ReflectionClass::getProperties' => + 'reflectionclass::getproperties' => array ( 0 => 'list', 'filter=' => 'int', ), - 'ReflectionClass::getProperty' => + 'reflectionclass::getproperty' => array ( 0 => 'ReflectionProperty', 'name' => 'string', ), - 'ReflectionClass::getReflectionConstant' => + 'reflectionclass::getreflectionconstant' => array ( 0 => 'ReflectionClassConstant|false', 'name' => 'string', ), - 'ReflectionClass::getReflectionConstants' => + 'reflectionclass::getreflectionconstants' => array ( 0 => 'list', ), - 'ReflectionClass::getShortName' => + 'reflectionclass::getshortname' => array ( 0 => 'string', ), - 'ReflectionClass::getStartLine' => + 'reflectionclass::getstartline' => array ( 0 => 'false|int', ), - 'ReflectionClass::getStaticProperties' => + 'reflectionclass::getstaticproperties' => array ( 0 => 'array', ), - 'ReflectionClass::getStaticPropertyValue' => + 'reflectionclass::getstaticpropertyvalue' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'mixed', ), - 'ReflectionClass::getTraitAliases' => + 'reflectionclass::gettraitaliases' => array ( 0 => 'array', ), - 'ReflectionClass::getTraitNames' => + 'reflectionclass::gettraitnames' => array ( 0 => 'list', ), - 'ReflectionClass::getTraits' => + 'reflectionclass::gettraits' => array ( 0 => 'array', ), - 'ReflectionClass::hasConstant' => + 'reflectionclass::hasconstant' => array ( 0 => 'bool', 'name' => 'string', ), - 'ReflectionClass::hasMethod' => + 'reflectionclass::hasmethod' => array ( 0 => 'bool', 'name' => 'string', ), - 'ReflectionClass::hasProperty' => + 'reflectionclass::hasproperty' => array ( 0 => 'bool', 'name' => 'string', ), - 'ReflectionClass::implementsInterface' => + 'reflectionclass::implementsinterface' => array ( 0 => 'bool', 'interface' => 'ReflectionClass|class-string', ), - 'ReflectionClass::inNamespace' => + 'reflectionclass::innamespace' => array ( 0 => 'bool', ), - 'ReflectionClass::isAbstract' => + 'reflectionclass::isabstract' => array ( 0 => 'bool', ), - 'ReflectionClass::isAnonymous' => + 'reflectionclass::isanonymous' => array ( 0 => 'bool', ), - 'ReflectionClass::isCloneable' => + 'reflectionclass::iscloneable' => array ( 0 => 'bool', ), - 'ReflectionClass::isFinal' => + 'reflectionclass::isfinal' => array ( 0 => 'bool', ), - 'ReflectionClass::isInstance' => + 'reflectionclass::isinstance' => array ( 0 => 'bool', 'object' => 'object', ), - 'ReflectionClass::isInstantiable' => + 'reflectionclass::isinstantiable' => array ( 0 => 'bool', ), - 'ReflectionClass::isInterface' => + 'reflectionclass::isinterface' => array ( 0 => 'bool', ), - 'ReflectionClass::isInternal' => + 'reflectionclass::isinternal' => array ( 0 => 'bool', ), - 'ReflectionClass::isIterateable' => + 'reflectionclass::isiterateable' => array ( 0 => 'bool', ), - 'ReflectionClass::isSubclassOf' => + 'reflectionclass::issubclassof' => array ( 0 => 'bool', 'class' => 'ReflectionClass|class-string', ), - 'ReflectionClass::isTrait' => + 'reflectionclass::istrait' => array ( 0 => 'bool', ), - 'ReflectionClass::isUserDefined' => + 'reflectionclass::isuserdefined' => array ( 0 => 'bool', ), - 'ReflectionClass::newInstance' => + 'reflectionclass::newinstance' => array ( 0 => 'object', '...args=' => 'mixed', ), - 'ReflectionClass::newInstanceArgs' => + 'reflectionclass::newinstanceargs' => array ( 0 => 'object', 'args=' => 'list', ), - 'ReflectionClass::newInstanceWithoutConstructor' => + 'reflectionclass::newinstancewithoutconstructor' => array ( 0 => 'object', ), - 'ReflectionClass::setStaticPropertyValue' => + 'reflectionclass::setstaticpropertyvalue' => array ( 0 => 'void', 'name' => 'string', 'value' => 'mixed', ), - 'ReflectionClassConstant::__construct' => + 'reflectionclassconstant::__construct' => array ( 0 => 'void', 'class' => 'class-string|object', 'constant' => 'string', ), - 'ReflectionClassConstant::__toString' => + 'reflectionclassconstant::__tostring' => array ( 0 => 'string', ), - 'ReflectionClassConstant::export' => + 'reflectionclassconstant::export' => array ( 0 => 'string', 'class' => 'mixed', 'name' => 'string', 'return=' => 'bool', ), - 'ReflectionClassConstant::getDeclaringClass' => + 'reflectionclassconstant::getdeclaringclass' => array ( 0 => 'ReflectionClass', ), - 'ReflectionClassConstant::getDocComment' => + 'reflectionclassconstant::getdoccomment' => array ( 0 => 'false|string', ), - 'ReflectionClassConstant::getModifiers' => + 'reflectionclassconstant::getmodifiers' => array ( 0 => 'int', ), - 'ReflectionClassConstant::getName' => + 'reflectionclassconstant::getname' => array ( 0 => 'string', ), - 'ReflectionClassConstant::getValue' => + 'reflectionclassconstant::getvalue' => array ( 0 => 'array|null|scalar', ), - 'ReflectionClassConstant::isPrivate' => + 'reflectionclassconstant::isprivate' => array ( 0 => 'bool', ), - 'ReflectionClassConstant::isProtected' => + 'reflectionclassconstant::isprotected' => array ( 0 => 'bool', ), - 'ReflectionClassConstant::isPublic' => + 'reflectionclassconstant::ispublic' => array ( 0 => 'bool', ), - 'ReflectionExtension::__clone' => + 'reflectionextension::__clone' => array ( 0 => 'void', ), - 'ReflectionExtension::__construct' => + 'reflectionextension::__construct' => array ( 0 => 'void', 'name' => 'string', ), - 'ReflectionExtension::__toString' => + 'reflectionextension::__tostring' => array ( 0 => 'string', ), - 'ReflectionExtension::export' => + 'reflectionextension::export' => array ( 0 => 'null|string', 'name' => 'string', 'return=' => 'bool', ), - 'ReflectionExtension::getClassNames' => + 'reflectionextension::getclassnames' => array ( 0 => 'list', ), - 'ReflectionExtension::getClasses' => + 'reflectionextension::getclasses' => array ( 0 => 'array', ), - 'ReflectionExtension::getConstants' => + 'reflectionextension::getconstants' => array ( 0 => 'array', ), - 'ReflectionExtension::getDependencies' => + 'reflectionextension::getdependencies' => array ( 0 => 'array', ), - 'ReflectionExtension::getFunctions' => + 'reflectionextension::getfunctions' => array ( 0 => 'array', ), - 'ReflectionExtension::getINIEntries' => + 'reflectionextension::getinientries' => array ( 0 => 'array', ), - 'ReflectionExtension::getName' => + 'reflectionextension::getname' => array ( 0 => 'string', ), - 'ReflectionExtension::getVersion' => + 'reflectionextension::getversion' => array ( 0 => 'null|string', ), - 'ReflectionExtension::info' => + 'reflectionextension::info' => array ( 0 => 'void', ), - 'ReflectionExtension::isPersistent' => + 'reflectionextension::ispersistent' => array ( 0 => 'bool', ), - 'ReflectionExtension::isTemporary' => + 'reflectionextension::istemporary' => array ( 0 => 'bool', ), - 'ReflectionFunction::__construct' => + 'reflectionfunction::__construct' => array ( 0 => 'void', 'function' => 'Closure|callable-string', ), - 'ReflectionFunction::__toString' => + 'reflectionfunction::__tostring' => array ( 0 => 'string', ), - 'ReflectionFunction::export' => + 'reflectionfunction::export' => array ( 0 => 'null|string', 'name' => 'string', 'return=' => 'bool', ), - 'ReflectionFunction::getClosure' => + 'reflectionfunction::getclosure' => array ( 0 => 'Closure', ), - 'ReflectionFunction::getClosureScopeClass' => + 'reflectionfunction::getclosurescopeclass' => array ( 0 => 'ReflectionClass', ), - 'ReflectionFunction::getClosureThis' => + 'reflectionfunction::getclosurethis' => array ( 0 => 'object', ), - 'ReflectionFunction::getDocComment' => + 'reflectionfunction::getdoccomment' => array ( 0 => 'false|string', ), - 'ReflectionFunction::getEndLine' => + 'reflectionfunction::getendline' => array ( 0 => 'false|int', ), - 'ReflectionFunction::getExtension' => + 'reflectionfunction::getextension' => array ( 0 => 'ReflectionExtension|null', ), - 'ReflectionFunction::getExtensionName' => + 'reflectionfunction::getextensionname' => array ( 0 => 'false|string', ), - 'ReflectionFunction::getFileName' => + 'reflectionfunction::getfilename' => array ( 0 => 'false|string', ), - 'ReflectionFunction::getName' => + 'reflectionfunction::getname' => array ( 0 => 'callable-string', ), - 'ReflectionFunction::getNamespaceName' => + 'reflectionfunction::getnamespacename' => array ( 0 => 'string', ), - 'ReflectionFunction::getNumberOfParameters' => + 'reflectionfunction::getnumberofparameters' => array ( 0 => 'int', ), - 'ReflectionFunction::getNumberOfRequiredParameters' => + 'reflectionfunction::getnumberofrequiredparameters' => array ( 0 => 'int', ), - 'ReflectionFunction::getParameters' => + 'reflectionfunction::getparameters' => array ( 0 => 'list', ), - 'ReflectionFunction::getReturnType' => + 'reflectionfunction::getreturntype' => array ( 0 => 'ReflectionType|null', ), - 'ReflectionFunction::getShortName' => + 'reflectionfunction::getshortname' => array ( 0 => 'string', ), - 'ReflectionFunction::getStartLine' => + 'reflectionfunction::getstartline' => array ( 0 => 'false|int', ), - 'ReflectionFunction::getStaticVariables' => + 'reflectionfunction::getstaticvariables' => array ( 0 => 'array', ), - 'ReflectionFunction::hasReturnType' => + 'reflectionfunction::hasreturntype' => array ( 0 => 'bool', ), - 'ReflectionFunction::inNamespace' => + 'reflectionfunction::innamespace' => array ( 0 => 'bool', ), - 'ReflectionFunction::invoke' => + 'reflectionfunction::invoke' => array ( 0 => 'mixed', '...args=' => 'mixed', ), - 'ReflectionFunction::invokeArgs' => + 'reflectionfunction::invokeargs' => array ( 0 => 'mixed', 'args' => 'array', ), - 'ReflectionFunction::isClosure' => + 'reflectionfunction::isclosure' => array ( 0 => 'bool', ), - 'ReflectionFunction::isDeprecated' => + 'reflectionfunction::isdeprecated' => array ( 0 => 'bool', ), - 'ReflectionFunction::isDisabled' => + 'reflectionfunction::isdisabled' => array ( 0 => 'bool', ), - 'ReflectionFunction::isGenerator' => + 'reflectionfunction::isgenerator' => array ( 0 => 'bool', ), - 'ReflectionFunction::isInternal' => + 'reflectionfunction::isinternal' => array ( 0 => 'bool', ), - 'ReflectionFunction::isUserDefined' => + 'reflectionfunction::isuserdefined' => array ( 0 => 'bool', ), - 'ReflectionFunction::isVariadic' => + 'reflectionfunction::isvariadic' => array ( 0 => 'bool', ), - 'ReflectionFunction::returnsReference' => + 'reflectionfunction::returnsreference' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::__clone' => + 'reflectionfunctionabstract::__clone' => array ( 0 => 'void', ), - 'ReflectionFunctionAbstract::__toString' => + 'reflectionfunctionabstract::__tostring' => array ( 0 => 'string', ), - 'ReflectionFunctionAbstract::export' => + 'reflectionfunctionabstract::export' => array ( 0 => 'null|string', ), - 'ReflectionFunctionAbstract::getClosureScopeClass' => + 'reflectionfunctionabstract::getclosurescopeclass' => array ( 0 => 'ReflectionClass|null', ), - 'ReflectionFunctionAbstract::getClosureThis' => + 'reflectionfunctionabstract::getclosurethis' => array ( 0 => 'null|object', ), - 'ReflectionFunctionAbstract::getDocComment' => + 'reflectionfunctionabstract::getdoccomment' => array ( 0 => 'false|string', ), - 'ReflectionFunctionAbstract::getEndLine' => + 'reflectionfunctionabstract::getendline' => array ( 0 => 'false|int', ), - 'ReflectionFunctionAbstract::getExtension' => + 'reflectionfunctionabstract::getextension' => array ( 0 => 'ReflectionExtension|null', ), - 'ReflectionFunctionAbstract::getExtensionName' => + 'reflectionfunctionabstract::getextensionname' => array ( 0 => 'false|string', ), - 'ReflectionFunctionAbstract::getFileName' => + 'reflectionfunctionabstract::getfilename' => array ( 0 => 'false|string', ), - 'ReflectionFunctionAbstract::getName' => + 'reflectionfunctionabstract::getname' => array ( 0 => 'string', ), - 'ReflectionFunctionAbstract::getNamespaceName' => + 'reflectionfunctionabstract::getnamespacename' => array ( 0 => 'string', ), - 'ReflectionFunctionAbstract::getNumberOfParameters' => + 'reflectionfunctionabstract::getnumberofparameters' => array ( 0 => 'int', ), - 'ReflectionFunctionAbstract::getNumberOfRequiredParameters' => + 'reflectionfunctionabstract::getnumberofrequiredparameters' => array ( 0 => 'int', ), - 'ReflectionFunctionAbstract::getParameters' => + 'reflectionfunctionabstract::getparameters' => array ( 0 => 'list', ), - 'ReflectionFunctionAbstract::getReturnType' => + 'reflectionfunctionabstract::getreturntype' => array ( 0 => 'ReflectionType|null', ), - 'ReflectionFunctionAbstract::getShortName' => + 'reflectionfunctionabstract::getshortname' => array ( 0 => 'string', ), - 'ReflectionFunctionAbstract::getStartLine' => + 'reflectionfunctionabstract::getstartline' => array ( 0 => 'false|int', ), - 'ReflectionFunctionAbstract::getStaticVariables' => + 'reflectionfunctionabstract::getstaticvariables' => array ( 0 => 'array', ), - 'ReflectionFunctionAbstract::hasReturnType' => + 'reflectionfunctionabstract::hasreturntype' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::inNamespace' => + 'reflectionfunctionabstract::innamespace' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::isClosure' => + 'reflectionfunctionabstract::isclosure' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::isDeprecated' => + 'reflectionfunctionabstract::isdeprecated' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::isGenerator' => + 'reflectionfunctionabstract::isgenerator' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::isInternal' => + 'reflectionfunctionabstract::isinternal' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::isUserDefined' => + 'reflectionfunctionabstract::isuserdefined' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::isVariadic' => + 'reflectionfunctionabstract::isvariadic' => array ( 0 => 'bool', ), - 'ReflectionFunctionAbstract::returnsReference' => + 'reflectionfunctionabstract::returnsreference' => array ( 0 => 'bool', ), - 'ReflectionGenerator::__construct' => + 'reflectiongenerator::__construct' => array ( 0 => 'void', 'generator' => 'Generator', ), - 'ReflectionGenerator::getExecutingFile' => + 'reflectiongenerator::getexecutingfile' => array ( 0 => 'string', ), - 'ReflectionGenerator::getExecutingGenerator' => + 'reflectiongenerator::getexecutinggenerator' => array ( 0 => 'Generator', ), - 'ReflectionGenerator::getExecutingLine' => + 'reflectiongenerator::getexecutingline' => array ( 0 => 'int', ), - 'ReflectionGenerator::getFunction' => + 'reflectiongenerator::getfunction' => array ( 0 => 'ReflectionFunctionAbstract', ), - 'ReflectionGenerator::getThis' => + 'reflectiongenerator::getthis' => array ( 0 => 'null|object', ), - 'ReflectionGenerator::getTrace' => + 'reflectiongenerator::gettrace' => array ( 0 => 'array', 'options=' => 'int', ), - 'ReflectionMethod::__construct' => + 'reflectionmethod::__construct' => array ( 0 => 'void', 'class' => 'class-string|object', 'name' => 'string', ), - 'ReflectionMethod::__construct\'1' => + 'reflectionmethod::__construct\'1' => array ( 0 => 'void', 'class_method' => 'string', ), - 'ReflectionMethod::__toString' => + 'reflectionmethod::__tostring' => array ( 0 => 'string', ), - 'ReflectionMethod::export' => + 'reflectionmethod::export' => array ( 0 => 'null|string', 'class' => 'string', 'name' => 'string', 'return=' => 'bool', ), - 'ReflectionMethod::getClosure' => + 'reflectionmethod::getclosure' => array ( 0 => 'Closure|null', 'object=' => 'object', ), - 'ReflectionMethod::getClosureScopeClass' => + 'reflectionmethod::getclosurescopeclass' => array ( 0 => 'ReflectionClass', ), - 'ReflectionMethod::getClosureThis' => + 'reflectionmethod::getclosurethis' => array ( 0 => 'object', ), - 'ReflectionMethod::getDeclaringClass' => + 'reflectionmethod::getdeclaringclass' => array ( 0 => 'ReflectionClass', ), - 'ReflectionMethod::getDocComment' => + 'reflectionmethod::getdoccomment' => array ( 0 => 'false|string', ), - 'ReflectionMethod::getEndLine' => + 'reflectionmethod::getendline' => array ( 0 => 'false|int', ), - 'ReflectionMethod::getExtension' => + 'reflectionmethod::getextension' => array ( 0 => 'ReflectionExtension|null', ), - 'ReflectionMethod::getExtensionName' => + 'reflectionmethod::getextensionname' => array ( 0 => 'false|string', ), - 'ReflectionMethod::getFileName' => + 'reflectionmethod::getfilename' => array ( 0 => 'false|string', ), - 'ReflectionMethod::getModifiers' => + 'reflectionmethod::getmodifiers' => array ( 0 => 'int', ), - 'ReflectionMethod::getName' => + 'reflectionmethod::getname' => array ( 0 => 'string', ), - 'ReflectionMethod::getNamespaceName' => + 'reflectionmethod::getnamespacename' => array ( 0 => 'string', ), - 'ReflectionMethod::getNumberOfParameters' => + 'reflectionmethod::getnumberofparameters' => array ( 0 => 'int', ), - 'ReflectionMethod::getNumberOfRequiredParameters' => + 'reflectionmethod::getnumberofrequiredparameters' => array ( 0 => 'int', ), - 'ReflectionMethod::getParameters' => + 'reflectionmethod::getparameters' => array ( 0 => 'list', ), - 'ReflectionMethod::getPrototype' => + 'reflectionmethod::getprototype' => array ( 0 => 'ReflectionMethod', ), - 'ReflectionMethod::getReturnType' => + 'reflectionmethod::getreturntype' => array ( 0 => 'ReflectionType|null', ), - 'ReflectionMethod::getShortName' => + 'reflectionmethod::getshortname' => array ( 0 => 'string', ), - 'ReflectionMethod::getStartLine' => + 'reflectionmethod::getstartline' => array ( 0 => 'false|int', ), - 'ReflectionMethod::getStaticVariables' => + 'reflectionmethod::getstaticvariables' => array ( 0 => 'array', ), - 'ReflectionMethod::hasReturnType' => + 'reflectionmethod::hasreturntype' => array ( 0 => 'bool', ), - 'ReflectionMethod::inNamespace' => + 'reflectionmethod::innamespace' => array ( 0 => 'bool', ), - 'ReflectionMethod::invoke' => + 'reflectionmethod::invoke' => array ( 0 => 'mixed', 'object' => 'null|object', '...args=' => 'mixed', ), - 'ReflectionMethod::invokeArgs' => + 'reflectionmethod::invokeargs' => array ( 0 => 'mixed', 'object' => 'null|object', 'args' => 'array', ), - 'ReflectionMethod::isAbstract' => + 'reflectionmethod::isabstract' => array ( 0 => 'bool', ), - 'ReflectionMethod::isClosure' => + 'reflectionmethod::isclosure' => array ( 0 => 'bool', ), - 'ReflectionMethod::isConstructor' => + 'reflectionmethod::isconstructor' => array ( 0 => 'bool', ), - 'ReflectionMethod::isDeprecated' => + 'reflectionmethod::isdeprecated' => array ( 0 => 'bool', ), - 'ReflectionMethod::isDestructor' => + 'reflectionmethod::isdestructor' => array ( 0 => 'bool', ), - 'ReflectionMethod::isFinal' => + 'reflectionmethod::isfinal' => array ( 0 => 'bool', ), - 'ReflectionMethod::isGenerator' => + 'reflectionmethod::isgenerator' => array ( 0 => 'bool', ), - 'ReflectionMethod::isInternal' => + 'reflectionmethod::isinternal' => array ( 0 => 'bool', ), - 'ReflectionMethod::isPrivate' => + 'reflectionmethod::isprivate' => array ( 0 => 'bool', ), - 'ReflectionMethod::isProtected' => + 'reflectionmethod::isprotected' => array ( 0 => 'bool', ), - 'ReflectionMethod::isPublic' => + 'reflectionmethod::ispublic' => array ( 0 => 'bool', ), - 'ReflectionMethod::isStatic' => + 'reflectionmethod::isstatic' => array ( 0 => 'bool', ), - 'ReflectionMethod::isUserDefined' => + 'reflectionmethod::isuserdefined' => array ( 0 => 'bool', ), - 'ReflectionMethod::isVariadic' => + 'reflectionmethod::isvariadic' => array ( 0 => 'bool', ), - 'ReflectionMethod::returnsReference' => + 'reflectionmethod::returnsreference' => array ( 0 => 'bool', ), - 'ReflectionMethod::setAccessible' => + 'reflectionmethod::setaccessible' => array ( 0 => 'void', 'accessible' => 'bool', ), - 'ReflectionNamedType::__clone' => + 'reflectionnamedtype::__clone' => array ( 0 => 'void', ), - 'ReflectionNamedType::__toString' => + 'reflectionnamedtype::__tostring' => array ( 0 => 'string', ), - 'ReflectionNamedType::allowsNull' => + 'reflectionnamedtype::allowsnull' => array ( 0 => 'bool', ), - 'ReflectionNamedType::getName' => + 'reflectionnamedtype::getname' => array ( 0 => 'string', ), - 'ReflectionNamedType::isBuiltin' => + 'reflectionnamedtype::isbuiltin' => array ( 0 => 'bool', ), - 'ReflectionObject::__clone' => + 'reflectionobject::__clone' => array ( 0 => 'void', ), - 'ReflectionObject::__construct' => + 'reflectionobject::__construct' => array ( 0 => 'void', 'object' => 'object', ), - 'ReflectionObject::__toString' => + 'reflectionobject::__tostring' => array ( 0 => 'string', ), - 'ReflectionObject::export' => + 'reflectionobject::export' => array ( 0 => 'null|string', 'argument' => 'object', 'return=' => 'bool', ), - 'ReflectionObject::getConstant' => + 'reflectionobject::getconstant' => array ( 0 => 'mixed', 'name' => 'string', ), - 'ReflectionObject::getConstants' => + 'reflectionobject::getconstants' => array ( 0 => 'array', ), - 'ReflectionObject::getConstructor' => + 'reflectionobject::getconstructor' => array ( 0 => 'ReflectionMethod|null', ), - 'ReflectionObject::getDefaultProperties' => + 'reflectionobject::getdefaultproperties' => array ( 0 => 'array', ), - 'ReflectionObject::getDocComment' => + 'reflectionobject::getdoccomment' => array ( 0 => 'false|string', ), - 'ReflectionObject::getEndLine' => + 'reflectionobject::getendline' => array ( 0 => 'false|int', ), - 'ReflectionObject::getExtension' => + 'reflectionobject::getextension' => array ( 0 => 'ReflectionExtension|null', ), - 'ReflectionObject::getExtensionName' => + 'reflectionobject::getextensionname' => array ( 0 => 'false|string', ), - 'ReflectionObject::getFileName' => + 'reflectionobject::getfilename' => array ( 0 => 'false|string', ), - 'ReflectionObject::getInterfaceNames' => + 'reflectionobject::getinterfacenames' => array ( 0 => 'array', ), - 'ReflectionObject::getInterfaces' => + 'reflectionobject::getinterfaces' => array ( 0 => 'array', ), - 'ReflectionObject::getMethod' => + 'reflectionobject::getmethod' => array ( 0 => 'ReflectionMethod', 'name' => 'string', ), - 'ReflectionObject::getMethods' => + 'reflectionobject::getmethods' => array ( 0 => 'array', 'filter=' => 'int', ), - 'ReflectionObject::getModifiers' => + 'reflectionobject::getmodifiers' => array ( 0 => 'int', ), - 'ReflectionObject::getName' => + 'reflectionobject::getname' => array ( 0 => 'string', ), - 'ReflectionObject::getNamespaceName' => + 'reflectionobject::getnamespacename' => array ( 0 => 'string', ), - 'ReflectionObject::getParentClass' => + 'reflectionobject::getparentclass' => array ( 0 => 'ReflectionClass|false', ), - 'ReflectionObject::getProperties' => + 'reflectionobject::getproperties' => array ( 0 => 'array', 'filter=' => 'int', ), - 'ReflectionObject::getProperty' => + 'reflectionobject::getproperty' => array ( 0 => 'ReflectionProperty', 'name' => 'string', ), - 'ReflectionObject::getReflectionConstant' => + 'reflectionobject::getreflectionconstant' => array ( 0 => 'ReflectionClassConstant', 'name' => 'string', ), - 'ReflectionObject::getReflectionConstants' => + 'reflectionobject::getreflectionconstants' => array ( 0 => 'list', ), - 'ReflectionObject::getShortName' => + 'reflectionobject::getshortname' => array ( 0 => 'string', ), - 'ReflectionObject::getStartLine' => + 'reflectionobject::getstartline' => array ( 0 => 'false|int', ), - 'ReflectionObject::getStaticProperties' => + 'reflectionobject::getstaticproperties' => array ( 0 => 'array', ), - 'ReflectionObject::getStaticPropertyValue' => + 'reflectionobject::getstaticpropertyvalue' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'mixed', ), - 'ReflectionObject::getTraitAliases' => + 'reflectionobject::gettraitaliases' => array ( 0 => 'array', ), - 'ReflectionObject::getTraitNames' => + 'reflectionobject::gettraitnames' => array ( 0 => 'list', ), - 'ReflectionObject::getTraits' => + 'reflectionobject::gettraits' => array ( 0 => 'array', ), - 'ReflectionObject::hasConstant' => + 'reflectionobject::hasconstant' => array ( 0 => 'bool', 'name' => 'string', ), - 'ReflectionObject::hasMethod' => + 'reflectionobject::hasmethod' => array ( 0 => 'bool', 'name' => 'string', ), - 'ReflectionObject::hasProperty' => + 'reflectionobject::hasproperty' => array ( 0 => 'bool', 'name' => 'string', ), - 'ReflectionObject::implementsInterface' => + 'reflectionobject::implementsinterface' => array ( 0 => 'bool', 'interface' => 'ReflectionClass|class-string', ), - 'ReflectionObject::inNamespace' => + 'reflectionobject::innamespace' => array ( 0 => 'bool', ), - 'ReflectionObject::isAbstract' => + 'reflectionobject::isabstract' => array ( 0 => 'bool', ), - 'ReflectionObject::isAnonymous' => + 'reflectionobject::isanonymous' => array ( 0 => 'bool', ), - 'ReflectionObject::isCloneable' => + 'reflectionobject::iscloneable' => array ( 0 => 'bool', ), - 'ReflectionObject::isFinal' => + 'reflectionobject::isfinal' => array ( 0 => 'bool', ), - 'ReflectionObject::isInstance' => + 'reflectionobject::isinstance' => array ( 0 => 'bool', 'object' => 'object', ), - 'ReflectionObject::isInstantiable' => + 'reflectionobject::isinstantiable' => array ( 0 => 'bool', ), - 'ReflectionObject::isInterface' => + 'reflectionobject::isinterface' => array ( 0 => 'bool', ), - 'ReflectionObject::isInternal' => + 'reflectionobject::isinternal' => array ( 0 => 'bool', ), - 'ReflectionObject::isIterable' => + 'reflectionobject::isiterable' => array ( 0 => 'bool', ), - 'ReflectionObject::isIterateable' => + 'reflectionobject::isiterateable' => array ( 0 => 'bool', ), - 'ReflectionObject::isSubclassOf' => + 'reflectionobject::issubclassof' => array ( 0 => 'bool', 'class' => 'ReflectionClass|string', ), - 'ReflectionObject::isTrait' => + 'reflectionobject::istrait' => array ( 0 => 'bool', ), - 'ReflectionObject::isUserDefined' => + 'reflectionobject::isuserdefined' => array ( 0 => 'bool', ), - 'ReflectionObject::newInstance' => + 'reflectionobject::newinstance' => array ( 0 => 'object', 'args=' => 'mixed', '...args=' => 'array', ), - 'ReflectionObject::newInstanceArgs' => + 'reflectionobject::newinstanceargs' => array ( 0 => 'object', 'args=' => 'list', ), - 'ReflectionObject::newInstanceWithoutConstructor' => + 'reflectionobject::newinstancewithoutconstructor' => array ( 0 => 'object', ), - 'ReflectionObject::setStaticPropertyValue' => + 'reflectionobject::setstaticpropertyvalue' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'ReflectionParameter::__clone' => + 'reflectionparameter::__clone' => array ( 0 => 'void', ), - 'ReflectionParameter::__construct' => + 'reflectionparameter::__construct' => array ( 0 => 'void', 'function' => 'array|object|string', 'param' => 'int|string', ), - 'ReflectionParameter::__toString' => + 'reflectionparameter::__tostring' => array ( 0 => 'string', ), - 'ReflectionParameter::allowsNull' => + 'reflectionparameter::allowsnull' => array ( 0 => 'bool', ), - 'ReflectionParameter::canBePassedByValue' => + 'reflectionparameter::canbepassedbyvalue' => array ( 0 => 'bool', ), - 'ReflectionParameter::export' => + 'reflectionparameter::export' => array ( 0 => 'null|string', 'function' => 'string', 'parameter' => 'string', 'return=' => 'bool', ), - 'ReflectionParameter::getClass' => + 'reflectionparameter::getclass' => array ( 0 => 'ReflectionClass|null', ), - 'ReflectionParameter::getDeclaringClass' => + 'reflectionparameter::getdeclaringclass' => array ( 0 => 'ReflectionClass|null', ), - 'ReflectionParameter::getDeclaringFunction' => + 'reflectionparameter::getdeclaringfunction' => array ( 0 => 'ReflectionFunctionAbstract', ), - 'ReflectionParameter::getDefaultValue' => + 'reflectionparameter::getdefaultvalue' => array ( 0 => 'mixed', ), - 'ReflectionParameter::getDefaultValueConstantName' => + 'reflectionparameter::getdefaultvalueconstantname' => array ( 0 => 'null|string', ), - 'ReflectionParameter::getName' => + 'reflectionparameter::getname' => array ( 0 => 'non-empty-string', ), - 'ReflectionParameter::getPosition' => + 'reflectionparameter::getposition' => array ( 0 => 'int<0, max>', ), - 'ReflectionParameter::getType' => + 'reflectionparameter::gettype' => array ( 0 => 'ReflectionType|null', ), - 'ReflectionParameter::hasType' => + 'reflectionparameter::hastype' => array ( 0 => 'bool', ), - 'ReflectionParameter::isArray' => + 'reflectionparameter::isarray' => array ( 0 => 'bool', ), - 'ReflectionParameter::isCallable' => + 'reflectionparameter::iscallable' => array ( 0 => 'bool', ), - 'ReflectionParameter::isDefaultValueAvailable' => + 'reflectionparameter::isdefaultvalueavailable' => array ( 0 => 'bool', ), - 'ReflectionParameter::isDefaultValueConstant' => + 'reflectionparameter::isdefaultvalueconstant' => array ( 0 => 'bool', ), - 'ReflectionParameter::isOptional' => + 'reflectionparameter::isoptional' => array ( 0 => 'bool', ), - 'ReflectionParameter::isPassedByReference' => + 'reflectionparameter::ispassedbyreference' => array ( 0 => 'bool', ), - 'ReflectionParameter::isVariadic' => + 'reflectionparameter::isvariadic' => array ( 0 => 'bool', ), - 'ReflectionProperty::__clone' => + 'reflectionproperty::__clone' => array ( 0 => 'void', ), - 'ReflectionProperty::__construct' => + 'reflectionproperty::__construct' => array ( 0 => 'void', 'class' => 'class-string|object', 'property' => 'string', ), - 'ReflectionProperty::__toString' => + 'reflectionproperty::__tostring' => array ( 0 => 'string', ), - 'ReflectionProperty::export' => + 'reflectionproperty::export' => array ( 0 => 'null|string', 'class' => 'mixed', 'name' => 'string', 'return=' => 'bool', ), - 'ReflectionProperty::getDeclaringClass' => + 'reflectionproperty::getdeclaringclass' => array ( 0 => 'ReflectionClass', ), - 'ReflectionProperty::getDocComment' => + 'reflectionproperty::getdoccomment' => array ( 0 => 'false|string', ), - 'ReflectionProperty::getModifiers' => + 'reflectionproperty::getmodifiers' => array ( 0 => 'int', ), - 'ReflectionProperty::getName' => + 'reflectionproperty::getname' => array ( 0 => 'string', ), - 'ReflectionProperty::getValue' => + 'reflectionproperty::getvalue' => array ( 0 => 'mixed', 'object=' => 'object', ), - 'ReflectionProperty::hasType' => + 'reflectionproperty::hastype' => array ( 0 => 'bool', ), - 'ReflectionProperty::isDefault' => + 'reflectionproperty::isdefault' => array ( 0 => 'bool', ), - 'ReflectionProperty::isPrivate' => + 'reflectionproperty::isprivate' => array ( 0 => 'bool', ), - 'ReflectionProperty::isProtected' => + 'reflectionproperty::isprotected' => array ( 0 => 'bool', ), - 'ReflectionProperty::isPublic' => + 'reflectionproperty::ispublic' => array ( 0 => 'bool', ), - 'ReflectionProperty::isStatic' => + 'reflectionproperty::isstatic' => array ( 0 => 'bool', ), - 'ReflectionProperty::setAccessible' => + 'reflectionproperty::setaccessible' => array ( 0 => 'void', 'accessible' => 'bool', ), - 'ReflectionProperty::setValue' => + 'reflectionproperty::setvalue' => array ( 0 => 'void', 'object' => 'null|object', 'value' => 'mixed', ), - 'ReflectionProperty::setValue\'1' => + 'reflectionproperty::setvalue\'1' => array ( 0 => 'void', 'value' => 'mixed', ), - 'ReflectionType::__clone' => + 'reflectiontype::__clone' => array ( 0 => 'void', ), - 'ReflectionType::__toString' => + 'reflectiontype::__tostring' => array ( 0 => 'string', ), - 'ReflectionType::allowsNull' => + 'reflectiontype::allowsnull' => array ( 0 => 'bool', ), - 'ReflectionType::isBuiltin' => + 'reflectiontype::isbuiltin' => array ( 0 => 'bool', ), - 'ReflectionZendExtension::__clone' => + 'reflectionzendextension::__clone' => array ( 0 => 'void', ), - 'ReflectionZendExtension::__construct' => + 'reflectionzendextension::__construct' => array ( 0 => 'void', 'name' => 'string', ), - 'ReflectionZendExtension::__toString' => + 'reflectionzendextension::__tostring' => array ( 0 => 'string', ), - 'ReflectionZendExtension::export' => + 'reflectionzendextension::export' => array ( 0 => 'null|string', 'name' => 'string', 'return=' => 'bool', ), - 'ReflectionZendExtension::getAuthor' => + 'reflectionzendextension::getauthor' => array ( 0 => 'string', ), - 'ReflectionZendExtension::getCopyright' => + 'reflectionzendextension::getcopyright' => array ( 0 => 'string', ), - 'ReflectionZendExtension::getName' => + 'reflectionzendextension::getname' => array ( 0 => 'string', ), - 'ReflectionZendExtension::getURL' => + 'reflectionzendextension::geturl' => array ( 0 => 'string', ), - 'ReflectionZendExtension::getVersion' => + 'reflectionzendextension::getversion' => array ( 0 => 'string', ), - 'Reflector::__toString' => + 'reflector::__tostring' => array ( 0 => 'string', ), - 'Reflector::export' => + 'reflector::export' => array ( 0 => 'null|string', ), - 'RegexIterator::__construct' => + 'regexiterator::__construct' => array ( 0 => 'void', 'iterator' => 'Iterator', @@ -30721,300 +30721,300 @@ 'flags=' => 'int', 'pregFlags=' => 'int', ), - 'RegexIterator::accept' => + 'regexiterator::accept' => array ( 0 => 'bool', ), - 'RegexIterator::current' => + 'regexiterator::current' => array ( 0 => 'mixed', ), - 'RegexIterator::getFlags' => + 'regexiterator::getflags' => array ( 0 => 'int', ), - 'RegexIterator::getInnerIterator' => + 'regexiterator::getinneriterator' => array ( 0 => 'Iterator', ), - 'RegexIterator::getMode' => + 'regexiterator::getmode' => array ( 0 => 'int', ), - 'RegexIterator::getPregFlags' => + 'regexiterator::getpregflags' => array ( 0 => 'int', ), - 'RegexIterator::getRegex' => + 'regexiterator::getregex' => array ( 0 => 'string', ), - 'RegexIterator::key' => + 'regexiterator::key' => array ( 0 => 'mixed', ), - 'RegexIterator::next' => + 'regexiterator::next' => array ( 0 => 'void', ), - 'RegexIterator::rewind' => + 'regexiterator::rewind' => array ( 0 => 'void', ), - 'RegexIterator::setFlags' => + 'regexiterator::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'RegexIterator::setMode' => + 'regexiterator::setmode' => array ( 0 => 'void', 'mode' => 'int', ), - 'RegexIterator::setPregFlags' => + 'regexiterator::setpregflags' => array ( 0 => 'void', 'pregFlags' => 'int', ), - 'RegexIterator::valid' => + 'regexiterator::valid' => array ( 0 => 'bool', ), - 'ResourceBundle::__construct' => + 'resourcebundle::__construct' => array ( 0 => 'void', 'locale' => 'null|string', 'bundle' => 'null|string', 'fallback=' => 'bool', ), - 'ResourceBundle::count' => + 'resourcebundle::count' => array ( 0 => 'int', ), - 'ResourceBundle::create' => + 'resourcebundle::create' => array ( 0 => 'ResourceBundle|null', 'locale' => 'null|string', 'bundle' => 'null|string', 'fallback=' => 'bool', ), - 'ResourceBundle::get' => + 'resourcebundle::get' => array ( 0 => 'mixed', 'index' => 'int|string', 'fallback=' => 'bool', ), - 'ResourceBundle::getErrorCode' => + 'resourcebundle::geterrorcode' => array ( 0 => 'int', ), - 'ResourceBundle::getErrorMessage' => + 'resourcebundle::geterrormessage' => array ( 0 => 'string', ), - 'ResourceBundle::getLocales' => + 'resourcebundle::getlocales' => array ( 0 => 'array|false', 'bundle' => 'string', ), - 'Runkit_Sandbox::__construct' => + 'runkit_sandbox::__construct' => array ( 0 => 'void', 'options=' => 'array', ), - 'Runkit_Sandbox_Parent' => + 'runkit_sandbox_parent' => array ( 0 => 'mixed', ), - 'Runkit_Sandbox_Parent::__construct' => + 'runkit_sandbox_parent::__construct' => array ( 0 => 'void', ), - 'RuntimeException::__clone' => + 'runtimeexception::__clone' => array ( 0 => 'void', ), - 'RuntimeException::__construct' => + 'runtimeexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'RuntimeException::__toString' => + 'runtimeexception::__tostring' => array ( 0 => 'string', ), - 'RuntimeException::getCode' => + 'runtimeexception::getcode' => array ( 0 => 'int', ), - 'RuntimeException::getFile' => + 'runtimeexception::getfile' => array ( 0 => 'string', ), - 'RuntimeException::getLine' => + 'runtimeexception::getline' => array ( 0 => 'int', ), - 'RuntimeException::getMessage' => + 'runtimeexception::getmessage' => array ( 0 => 'string', ), - 'RuntimeException::getPrevious' => + 'runtimeexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'RuntimeException::getTrace' => + 'runtimeexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'RuntimeException::getTraceAsString' => + 'runtimeexception::gettraceasstring' => array ( 0 => 'string', ), - 'SAMConnection::commit' => + 'samconnection::commit' => array ( 0 => 'bool', ), - 'SAMConnection::connect' => + 'samconnection::connect' => array ( 0 => 'bool', 'protocol' => 'string', 'properties=' => 'array', ), - 'SAMConnection::disconnect' => + 'samconnection::disconnect' => array ( 0 => 'bool', ), - 'SAMConnection::errno' => + 'samconnection::errno' => array ( 0 => 'int', ), - 'SAMConnection::error' => + 'samconnection::error' => array ( 0 => 'string', ), - 'SAMConnection::isConnected' => + 'samconnection::isconnected' => array ( 0 => 'bool', ), - 'SAMConnection::peek' => + 'samconnection::peek' => array ( 0 => 'SAMMessage', 'target' => 'string', 'properties=' => 'array', ), - 'SAMConnection::peekAll' => + 'samconnection::peekall' => array ( 0 => 'array', 'target' => 'string', 'properties=' => 'array', ), - 'SAMConnection::receive' => + 'samconnection::receive' => array ( 0 => 'SAMMessage', 'target' => 'string', 'properties=' => 'array', ), - 'SAMConnection::remove' => + 'samconnection::remove' => array ( 0 => 'SAMMessage', 'target' => 'string', 'properties=' => 'array', ), - 'SAMConnection::rollback' => + 'samconnection::rollback' => array ( 0 => 'bool', ), - 'SAMConnection::send' => + 'samconnection::send' => array ( 0 => 'string', 'target' => 'string', 'msg' => 'sammessage', 'properties=' => 'array', ), - 'SAMConnection::setDebug' => + 'samconnection::setdebug' => array ( 0 => 'mixed', 'switch' => 'bool', ), - 'SAMConnection::subscribe' => + 'samconnection::subscribe' => array ( 0 => 'string', 'targettopic' => 'string', ), - 'SAMConnection::unsubscribe' => + 'samconnection::unsubscribe' => array ( 0 => 'bool', 'subscriptionid' => 'string', 'targettopic=' => 'string', ), - 'SAMMessage::body' => + 'sammessage::body' => array ( 0 => 'string', ), - 'SAMMessage::header' => + 'sammessage::header' => array ( 0 => 'object', ), - 'SCA::createDataObject' => + 'sca::createdataobject' => array ( 0 => 'SDO_DataObject', 'type_namespace_uri' => 'string', 'type_name' => 'string', ), - 'SCA::getService' => + 'sca::getservice' => array ( 0 => 'mixed', 'target' => 'string', 'binding=' => 'string', 'config=' => 'array', ), - 'SCA_LocalProxy::createDataObject' => + 'sca_localproxy::createdataobject' => array ( 0 => 'SDO_DataObject', 'type_namespace_uri' => 'string', 'type_name' => 'string', ), - 'SCA_SoapProxy::createDataObject' => + 'sca_soapproxy::createdataobject' => array ( 0 => 'SDO_DataObject', 'type_namespace_uri' => 'string', 'type_name' => 'string', ), - 'SDO_DAS_ChangeSummary::beginLogging' => + 'sdo_das_changesummary::beginlogging' => array ( 0 => 'mixed', ), - 'SDO_DAS_ChangeSummary::endLogging' => + 'sdo_das_changesummary::endlogging' => array ( 0 => 'mixed', ), - 'SDO_DAS_ChangeSummary::getChangeType' => + 'sdo_das_changesummary::getchangetype' => array ( 0 => 'int', 'dataobject' => 'sdo_dataobject', ), - 'SDO_DAS_ChangeSummary::getChangedDataObjects' => + 'sdo_das_changesummary::getchangeddataobjects' => array ( 0 => 'SDO_List', ), - 'SDO_DAS_ChangeSummary::getOldContainer' => + 'sdo_das_changesummary::getoldcontainer' => array ( 0 => 'SDO_DataObject', 'data_object' => 'sdo_dataobject', ), - 'SDO_DAS_ChangeSummary::getOldValues' => + 'sdo_das_changesummary::getoldvalues' => array ( 0 => 'SDO_List', 'data_object' => 'sdo_dataobject', ), - 'SDO_DAS_ChangeSummary::isLogging' => + 'sdo_das_changesummary::islogging' => array ( 0 => 'bool', ), - 'SDO_DAS_DataFactory::addPropertyToType' => + 'sdo_das_datafactory::addpropertytotype' => array ( 0 => 'mixed', 'parent_type_namespace_uri' => 'string', @@ -31024,39 +31024,39 @@ 'type_name' => 'string', 'options=' => 'array', ), - 'SDO_DAS_DataFactory::addType' => + 'sdo_das_datafactory::addtype' => array ( 0 => 'mixed', 'type_namespace_uri' => 'string', 'type_name' => 'string', 'options=' => 'array', ), - 'SDO_DAS_DataFactory::getDataFactory' => + 'sdo_das_datafactory::getdatafactory' => array ( 0 => 'SDO_DAS_DataFactory', ), - 'SDO_DAS_DataObject::getChangeSummary' => + 'sdo_das_dataobject::getchangesummary' => array ( 0 => 'SDO_DAS_ChangeSummary', ), - 'SDO_DAS_Relational::__construct' => + 'sdo_das_relational::__construct' => array ( 0 => 'void', 'database_metadata' => 'array', 'application_root_type=' => 'string', 'sdo_containment_references_metadata=' => 'array', ), - 'SDO_DAS_Relational::applyChanges' => + 'sdo_das_relational::applychanges' => array ( 0 => 'mixed', 'database_handle' => 'pdo', 'root_data_object' => 'sdodataobject', ), - 'SDO_DAS_Relational::createRootDataObject' => + 'sdo_das_relational::createrootdataobject' => array ( 0 => 'SDODataObject', ), - 'SDO_DAS_Relational::executePreparedQuery' => + 'sdo_das_relational::executepreparedquery' => array ( 0 => 'SDODataObject', 'database_handle' => 'pdo', @@ -31064,256 +31064,256 @@ 'value_list' => 'array', 'column_specifier=' => 'array', ), - 'SDO_DAS_Relational::executeQuery' => + 'sdo_das_relational::executequery' => array ( 0 => 'SDODataObject', 'database_handle' => 'pdo', 'sql_statement' => 'string', 'column_specifier=' => 'array', ), - 'SDO_DAS_Setting::getListIndex' => + 'sdo_das_setting::getlistindex' => array ( 0 => 'int', ), - 'SDO_DAS_Setting::getPropertyIndex' => + 'sdo_das_setting::getpropertyindex' => array ( 0 => 'int', ), - 'SDO_DAS_Setting::getPropertyName' => + 'sdo_das_setting::getpropertyname' => array ( 0 => 'string', ), - 'SDO_DAS_Setting::getValue' => + 'sdo_das_setting::getvalue' => array ( 0 => 'mixed', ), - 'SDO_DAS_Setting::isSet' => + 'sdo_das_setting::isset' => array ( 0 => 'bool', ), - 'SDO_DAS_XML::addTypes' => + 'sdo_das_xml::addtypes' => array ( 0 => 'mixed', 'xsd_file' => 'string', ), - 'SDO_DAS_XML::create' => + 'sdo_das_xml::create' => array ( 0 => 'SDO_DAS_XML', 'xsd_file=' => 'mixed', 'key=' => 'string', ), - 'SDO_DAS_XML::createDataObject' => + 'sdo_das_xml::createdataobject' => array ( 0 => 'SDO_DataObject', 'namespace_uri' => 'string', 'type_name' => 'string', ), - 'SDO_DAS_XML::createDocument' => + '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' => + 'sdo_das_xml::loadfile' => array ( 0 => 'SDO_XMLDocument', 'xml_file' => 'string', ), - 'SDO_DAS_XML::loadString' => + 'sdo_das_xml::loadstring' => array ( 0 => 'SDO_DAS_XML_Document', 'xml_string' => 'string', ), - 'SDO_DAS_XML::saveFile' => + 'sdo_das_xml::savefile' => array ( 0 => 'mixed', 'xdoc' => 'sdo_xmldocument', 'xml_file' => 'string', 'indent=' => 'int', ), - 'SDO_DAS_XML::saveString' => + 'sdo_das_xml::savestring' => array ( 0 => 'string', 'xdoc' => 'sdo_xmldocument', 'indent=' => 'int', ), - 'SDO_DAS_XML_Document::getRootDataObject' => + 'sdo_das_xml_document::getrootdataobject' => array ( 0 => 'SDO_DataObject', ), - 'SDO_DAS_XML_Document::getRootElementName' => + 'sdo_das_xml_document::getrootelementname' => array ( 0 => 'string', ), - 'SDO_DAS_XML_Document::getRootElementURI' => + 'sdo_das_xml_document::getrootelementuri' => array ( 0 => 'string', ), - 'SDO_DAS_XML_Document::setEncoding' => + 'sdo_das_xml_document::setencoding' => array ( 0 => 'mixed', 'encoding' => 'string', ), - 'SDO_DAS_XML_Document::setXMLDeclaration' => + 'sdo_das_xml_document::setxmldeclaration' => array ( 0 => 'mixed', 'xmldeclatation' => 'bool', ), - 'SDO_DAS_XML_Document::setXMLVersion' => + 'sdo_das_xml_document::setxmlversion' => array ( 0 => 'mixed', 'xmlversion' => 'string', ), - 'SDO_DataFactory::create' => + 'sdo_datafactory::create' => array ( 0 => 'void', 'type_namespace_uri' => 'string', 'type_name' => 'string', ), - 'SDO_DataObject::clear' => + 'sdo_dataobject::clear' => array ( 0 => 'void', ), - 'SDO_DataObject::createDataObject' => + 'sdo_dataobject::createdataobject' => array ( 0 => 'SDO_DataObject', 'identifier' => 'mixed', ), - 'SDO_DataObject::getContainer' => + 'sdo_dataobject::getcontainer' => array ( 0 => 'SDO_DataObject', ), - 'SDO_DataObject::getSequence' => + 'sdo_dataobject::getsequence' => array ( 0 => 'SDO_Sequence', ), - 'SDO_DataObject::getTypeName' => + 'sdo_dataobject::gettypename' => array ( 0 => 'string', ), - 'SDO_DataObject::getTypeNamespaceURI' => + 'sdo_dataobject::gettypenamespaceuri' => array ( 0 => 'string', ), - 'SDO_Exception::getCause' => + 'sdo_exception::getcause' => array ( 0 => 'mixed', ), - 'SDO_List::insert' => + 'sdo_list::insert' => array ( 0 => 'void', 'value' => 'mixed', 'index=' => 'int', ), - 'SDO_Model_Property::getContainingType' => + 'sdo_model_property::getcontainingtype' => array ( 0 => 'SDO_Model_Type', ), - 'SDO_Model_Property::getDefault' => + 'sdo_model_property::getdefault' => array ( 0 => 'mixed', ), - 'SDO_Model_Property::getName' => + 'sdo_model_property::getname' => array ( 0 => 'string', ), - 'SDO_Model_Property::getType' => + 'sdo_model_property::gettype' => array ( 0 => 'SDO_Model_Type', ), - 'SDO_Model_Property::isContainment' => + 'sdo_model_property::iscontainment' => array ( 0 => 'bool', ), - 'SDO_Model_Property::isMany' => + 'sdo_model_property::ismany' => array ( 0 => 'bool', ), - 'SDO_Model_ReflectionDataObject::__construct' => + 'sdo_model_reflectiondataobject::__construct' => array ( 0 => 'void', 'data_object' => 'sdo_dataobject', ), - 'SDO_Model_ReflectionDataObject::export' => + 'sdo_model_reflectiondataobject::export' => array ( 0 => 'mixed', 'rdo' => 'sdo_model_reflectiondataobject', 'return=' => 'bool', ), - 'SDO_Model_ReflectionDataObject::getContainmentProperty' => + 'sdo_model_reflectiondataobject::getcontainmentproperty' => array ( 0 => 'SDO_Model_Property', ), - 'SDO_Model_ReflectionDataObject::getInstanceProperties' => + 'sdo_model_reflectiondataobject::getinstanceproperties' => array ( 0 => 'array', ), - 'SDO_Model_ReflectionDataObject::getType' => + 'sdo_model_reflectiondataobject::gettype' => array ( 0 => 'SDO_Model_Type', ), - 'SDO_Model_Type::getBaseType' => + 'sdo_model_type::getbasetype' => array ( 0 => 'SDO_Model_Type', ), - 'SDO_Model_Type::getName' => + 'sdo_model_type::getname' => array ( 0 => 'string', ), - 'SDO_Model_Type::getNamespaceURI' => + 'sdo_model_type::getnamespaceuri' => array ( 0 => 'string', ), - 'SDO_Model_Type::getProperties' => + 'sdo_model_type::getproperties' => array ( 0 => 'array', ), - 'SDO_Model_Type::getProperty' => + 'sdo_model_type::getproperty' => array ( 0 => 'SDO_Model_Property', 'identifier' => 'mixed', ), - 'SDO_Model_Type::isAbstractType' => + 'sdo_model_type::isabstracttype' => array ( 0 => 'bool', ), - 'SDO_Model_Type::isDataType' => + 'sdo_model_type::isdatatype' => array ( 0 => 'bool', ), - 'SDO_Model_Type::isInstance' => + 'sdo_model_type::isinstance' => array ( 0 => 'bool', 'data_object' => 'sdo_dataobject', ), - 'SDO_Model_Type::isOpenType' => + 'sdo_model_type::isopentype' => array ( 0 => 'bool', ), - 'SDO_Model_Type::isSequencedType' => + 'sdo_model_type::issequencedtype' => array ( 0 => 'bool', ), - 'SDO_Sequence::getProperty' => + 'sdo_sequence::getproperty' => array ( 0 => 'SDO_Model_Property', 'sequence_index' => 'int', ), - 'SDO_Sequence::insert' => + 'sdo_sequence::insert' => array ( 0 => 'void', 'value' => 'mixed', 'sequenceindex=' => 'int', 'propertyidentifier=' => 'mixed', ), - 'SDO_Sequence::move' => + 'sdo_sequence::move' => array ( 0 => 'void', 'toindex' => 'int', 'fromindex' => 'int', ), - 'SNMP::__construct' => + 'snmp::__construct' => array ( 0 => 'void', 'version' => 'int', @@ -31322,37 +31322,37 @@ 'timeout=' => 'int', 'retries=' => 'int', ), - 'SNMP::close' => + 'snmp::close' => array ( 0 => 'bool', ), - 'SNMP::get' => + 'snmp::get' => array ( 0 => 'array|false|string', 'objectId' => 'array|string', 'preserveKeys=' => 'bool', ), - 'SNMP::getErrno' => + 'snmp::geterrno' => array ( 0 => 'int', ), - 'SNMP::getError' => + 'snmp::geterror' => array ( 0 => 'string', ), - 'SNMP::getnext' => + 'snmp::getnext' => array ( 0 => 'array|false|string', 'objectId' => 'array|string', ), - 'SNMP::set' => + 'snmp::set' => array ( 0 => 'bool', 'objectId' => 'array|string', 'type' => 'array|string', 'value' => 'array|string', ), - 'SNMP::setSecurity' => + 'snmp::setsecurity' => array ( 0 => 'bool', 'securityLevel' => 'string', @@ -31363,7 +31363,7 @@ 'contextName=' => 'string', 'contextEngineId=' => 'string', ), - 'SNMP::walk' => + 'snmp::walk' => array ( 0 => 'array|false', 'objectId' => 'array|string', @@ -31371,27 +31371,27 @@ 'maxRepetitions=' => 'int', 'nonRepeaters=' => 'int', ), - 'SQLite3::__construct' => + 'sqlite3::__construct' => array ( 0 => 'void', 'filename' => 'string', 'flags=' => 'int', 'encryptionKey=' => 'string', ), - 'SQLite3::busyTimeout' => + 'sqlite3::busytimeout' => array ( 0 => 'bool', 'milliseconds' => 'int', ), - 'SQLite3::changes' => + 'sqlite3::changes' => array ( 0 => 'int', ), - 'SQLite3::close' => + 'sqlite3::close' => array ( 0 => 'bool', ), - 'SQLite3::createAggregate' => + 'sqlite3::createaggregate' => array ( 0 => 'bool', 'name' => 'string', @@ -31399,59 +31399,59 @@ 'finalCallback' => 'callable', 'argCount=' => 'int', ), - 'SQLite3::createCollation' => + 'sqlite3::createcollation' => array ( 0 => 'bool', 'name' => 'string', 'callback' => 'callable', ), - 'SQLite3::createFunction' => + 'sqlite3::createfunction' => array ( 0 => 'bool', 'name' => 'string', 'callback' => 'callable', 'argCount=' => 'int', ), - 'SQLite3::enableExceptions' => + 'sqlite3::enableexceptions' => array ( 0 => 'bool', 'enable=' => 'bool', ), - 'SQLite3::escapeString' => + 'sqlite3::escapestring' => array ( 0 => 'string', 'string' => 'string', ), - 'SQLite3::exec' => + 'sqlite3::exec' => array ( 0 => 'bool', 'query' => 'string', ), - 'SQLite3::lastErrorCode' => + 'sqlite3::lasterrorcode' => array ( 0 => 'int', ), - 'SQLite3::lastErrorMsg' => + 'sqlite3::lasterrormsg' => array ( 0 => 'string', ), - 'SQLite3::lastInsertRowID' => + 'sqlite3::lastinsertrowid' => array ( 0 => 'int', ), - 'SQLite3::loadExtension' => + 'sqlite3::loadextension' => array ( 0 => 'bool', 'name' => 'string', ), - 'SQLite3::open' => + 'sqlite3::open' => array ( 0 => 'void', 'filename' => 'string', 'flags=' => 'int', 'encryptionKey=' => 'string', ), - 'SQLite3::openBlob' => + 'sqlite3::openblob' => array ( 0 => 'false|resource', 'table' => 'string', @@ -31459,130 +31459,130 @@ 'rowid' => 'int', 'dbname=' => 'string', ), - 'SQLite3::prepare' => + 'sqlite3::prepare' => array ( 0 => 'SQLite3Stmt|false', 'query' => 'string', ), - 'SQLite3::query' => + 'sqlite3::query' => array ( 0 => 'SQLite3Result|false', 'query' => 'string', ), - 'SQLite3::querySingle' => + 'sqlite3::querysingle' => array ( 0 => 'array|null|scalar', 'query' => 'string', 'entireRow=' => 'bool', ), - 'SQLite3::version' => + 'sqlite3::version' => array ( 0 => 'array', ), - 'SQLite3Result::__construct' => + 'sqlite3result::__construct' => array ( 0 => 'void', ), - 'SQLite3Result::columnName' => + 'sqlite3result::columnname' => array ( 0 => 'string', 'column' => 'int', ), - 'SQLite3Result::columnType' => + 'sqlite3result::columntype' => array ( 0 => 'int', 'column' => 'int', ), - 'SQLite3Result::fetchArray' => + 'sqlite3result::fetcharray' => array ( 0 => 'array|false', 'mode=' => 'int', ), - 'SQLite3Result::finalize' => + 'sqlite3result::finalize' => array ( 0 => 'bool', ), - 'SQLite3Result::numColumns' => + 'sqlite3result::numcolumns' => array ( 0 => 'int', ), - 'SQLite3Result::reset' => + 'sqlite3result::reset' => array ( 0 => 'bool', ), - 'SQLite3Stmt::__construct' => + 'sqlite3stmt::__construct' => array ( 0 => 'void', 'sqlite3' => 'sqlite3', 'query' => 'string', ), - 'SQLite3Stmt::bindParam' => + 'sqlite3stmt::bindparam' => array ( 0 => 'bool', 'param' => 'int|string', '&rw_var' => 'mixed', 'type=' => 'int', ), - 'SQLite3Stmt::bindValue' => + 'sqlite3stmt::bindvalue' => array ( 0 => 'bool', 'param' => 'int|string', 'value' => 'mixed', 'type=' => 'int', ), - 'SQLite3Stmt::clear' => + 'sqlite3stmt::clear' => array ( 0 => 'bool', ), - 'SQLite3Stmt::close' => + 'sqlite3stmt::close' => array ( 0 => 'bool', ), - 'SQLite3Stmt::execute' => + 'sqlite3stmt::execute' => array ( 0 => 'SQLite3Result|false', ), - 'SQLite3Stmt::getSQL' => + 'sqlite3stmt::getsql' => array ( 0 => 'string', 'expand=' => 'bool', ), - 'SQLite3Stmt::paramCount' => + 'sqlite3stmt::paramcount' => array ( 0 => 'int', ), - 'SQLite3Stmt::readOnly' => + 'sqlite3stmt::readonly' => array ( 0 => 'bool', ), - 'SQLite3Stmt::reset' => + 'sqlite3stmt::reset' => array ( 0 => 'bool', ), - 'SQLiteDatabase::__construct' => + 'sqlitedatabase::__construct' => array ( 0 => 'void', 'filename' => 'mixed', 'mode=' => 'int|mixed', '&error_message' => 'mixed', ), - 'SQLiteDatabase::arrayQuery' => + 'sqlitedatabase::arrayquery' => array ( 0 => 'array', 'query' => 'string', 'result_type=' => 'int', 'decode_binary=' => 'bool', ), - 'SQLiteDatabase::busyTimeout' => + 'sqlitedatabase::busytimeout' => array ( 0 => 'int', 'milliseconds' => 'int', ), - 'SQLiteDatabase::changes' => + 'sqlitedatabase::changes' => array ( 0 => 'int', ), - 'SQLiteDatabase::createAggregate' => + 'sqlitedatabase::createaggregate' => array ( 0 => 'mixed', 'function_name' => 'string', @@ -31590,382 +31590,382 @@ 'finalize_func' => 'callable', 'num_args=' => 'int', ), - 'SQLiteDatabase::createFunction' => + 'sqlitedatabase::createfunction' => array ( 0 => 'mixed', 'function_name' => 'string', 'callback' => 'callable', 'num_args=' => 'int', ), - 'SQLiteDatabase::exec' => + 'sqlitedatabase::exec' => array ( 0 => 'bool', 'query' => 'string', 'error_msg=' => 'string', ), - 'SQLiteDatabase::fetchColumnTypes' => + 'sqlitedatabase::fetchcolumntypes' => array ( 0 => 'array', 'table_name' => 'string', 'result_type=' => 'int', ), - 'SQLiteDatabase::lastError' => + 'sqlitedatabase::lasterror' => array ( 0 => 'int', ), - 'SQLiteDatabase::lastInsertRowid' => + 'sqlitedatabase::lastinsertrowid' => array ( 0 => 'int', ), - 'SQLiteDatabase::query' => + 'sqlitedatabase::query' => array ( 0 => 'SQLiteResult|false', 'query' => 'string', 'result_type=' => 'int', 'error_msg=' => 'string', ), - 'SQLiteDatabase::queryExec' => + 'sqlitedatabase::queryexec' => array ( 0 => 'bool', 'query' => 'string', '&w_error_msg=' => 'string', ), - 'SQLiteDatabase::singleQuery' => + 'sqlitedatabase::singlequery' => array ( 0 => 'array', 'query' => 'string', 'first_row_only=' => 'bool', 'decode_binary=' => 'bool', ), - 'SQLiteDatabase::unbufferedQuery' => + 'sqlitedatabase::unbufferedquery' => array ( 0 => 'SQLiteUnbuffered|false', 'query' => 'string', 'result_type=' => 'int', 'error_msg=' => 'string', ), - 'SQLiteException::__clone' => + 'sqliteexception::__clone' => array ( 0 => 'void', ), - 'SQLiteException::__construct' => + 'sqliteexception::__construct' => array ( 0 => 'void', 'message' => 'mixed', 'code' => 'mixed', 'previous' => 'mixed', ), - 'SQLiteException::__toString' => + 'sqliteexception::__tostring' => array ( 0 => 'string', ), - 'SQLiteException::__wakeup' => + 'sqliteexception::__wakeup' => array ( 0 => 'void', ), - 'SQLiteException::getCode' => + 'sqliteexception::getcode' => array ( 0 => 'int', ), - 'SQLiteException::getFile' => + 'sqliteexception::getfile' => array ( 0 => 'string', ), - 'SQLiteException::getLine' => + 'sqliteexception::getline' => array ( 0 => 'int', ), - 'SQLiteException::getMessage' => + 'sqliteexception::getmessage' => array ( 0 => 'string', ), - 'SQLiteException::getPrevious' => + 'sqliteexception::getprevious' => array ( 0 => 'RuntimeException|Throwable|null', ), - 'SQLiteException::getTrace' => + 'sqliteexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'SQLiteException::getTraceAsString' => + 'sqliteexception::gettraceasstring' => array ( 0 => 'string', ), - 'SQLiteResult::__construct' => + 'sqliteresult::__construct' => array ( 0 => 'void', ), - 'SQLiteResult::column' => + 'sqliteresult::column' => array ( 0 => 'mixed', 'index_or_name' => 'mixed', 'decode_binary=' => 'bool', ), - 'SQLiteResult::count' => + 'sqliteresult::count' => array ( 0 => 'int', ), - 'SQLiteResult::current' => + 'sqliteresult::current' => array ( 0 => 'array', 'result_type=' => 'int', 'decode_binary=' => 'bool', ), - 'SQLiteResult::fetch' => + 'sqliteresult::fetch' => array ( 0 => 'array', 'result_type=' => 'int', 'decode_binary=' => 'bool', ), - 'SQLiteResult::fetchAll' => + 'sqliteresult::fetchall' => array ( 0 => 'array', 'result_type=' => 'int', 'decode_binary=' => 'bool', ), - 'SQLiteResult::fetchObject' => + 'sqliteresult::fetchobject' => array ( 0 => 'object', 'class_name=' => 'string', 'ctor_params=' => 'array', 'decode_binary=' => 'bool', ), - 'SQLiteResult::fetchSingle' => + 'sqliteresult::fetchsingle' => array ( 0 => 'string', 'decode_binary=' => 'bool', ), - 'SQLiteResult::fieldName' => + 'sqliteresult::fieldname' => array ( 0 => 'string', 'field_index' => 'int', ), - 'SQLiteResult::hasPrev' => + 'sqliteresult::hasprev' => array ( 0 => 'bool', ), - 'SQLiteResult::key' => + 'sqliteresult::key' => array ( 0 => 'mixed|null', ), - 'SQLiteResult::next' => + 'sqliteresult::next' => array ( 0 => 'bool', ), - 'SQLiteResult::numFields' => + 'sqliteresult::numfields' => array ( 0 => 'int', ), - 'SQLiteResult::numRows' => + 'sqliteresult::numrows' => array ( 0 => 'int', ), - 'SQLiteResult::prev' => + 'sqliteresult::prev' => array ( 0 => 'bool', ), - 'SQLiteResult::rewind' => + 'sqliteresult::rewind' => array ( 0 => 'bool', ), - 'SQLiteResult::seek' => + 'sqliteresult::seek' => array ( 0 => 'bool', 'rownum' => 'int', ), - 'SQLiteResult::valid' => + 'sqliteresult::valid' => array ( 0 => 'bool', ), - 'SQLiteUnbuffered::column' => + 'sqliteunbuffered::column' => array ( 0 => 'void', 'index_or_name' => 'mixed', 'decode_binary=' => 'bool', ), - 'SQLiteUnbuffered::current' => + 'sqliteunbuffered::current' => array ( 0 => 'array', 'result_type=' => 'int', 'decode_binary=' => 'bool', ), - 'SQLiteUnbuffered::fetch' => + 'sqliteunbuffered::fetch' => array ( 0 => 'array', 'result_type=' => 'int', 'decode_binary=' => 'bool', ), - 'SQLiteUnbuffered::fetchAll' => + 'sqliteunbuffered::fetchall' => array ( 0 => 'array', 'result_type=' => 'int', 'decode_binary=' => 'bool', ), - 'SQLiteUnbuffered::fetchObject' => + 'sqliteunbuffered::fetchobject' => array ( 0 => 'object', 'class_name=' => 'string', 'ctor_params=' => 'array', 'decode_binary=' => 'bool', ), - 'SQLiteUnbuffered::fetchSingle' => + 'sqliteunbuffered::fetchsingle' => array ( 0 => 'string', 'decode_binary=' => 'bool', ), - 'SQLiteUnbuffered::fieldName' => + 'sqliteunbuffered::fieldname' => array ( 0 => 'string', 'field_index' => 'int', ), - 'SQLiteUnbuffered::next' => + 'sqliteunbuffered::next' => array ( 0 => 'bool', ), - 'SQLiteUnbuffered::numFields' => + 'sqliteunbuffered::numfields' => array ( 0 => 'int', ), - 'SQLiteUnbuffered::valid' => + 'sqliteunbuffered::valid' => array ( 0 => 'bool', ), - 'SVM::__construct' => + 'svm::__construct' => array ( 0 => 'void', ), - 'SVM::getOptions' => + 'svm::getoptions' => array ( 0 => 'array', ), - 'SVM::setOptions' => + 'svm::setoptions' => array ( 0 => 'bool', 'params' => 'array', ), - 'SVMModel::__construct' => + 'svmmodel::__construct' => array ( 0 => 'void', 'filename=' => 'string', ), - 'SVMModel::checkProbabilityModel' => + 'svmmodel::checkprobabilitymodel' => array ( 0 => 'bool', ), - 'SVMModel::getLabels' => + 'svmmodel::getlabels' => array ( 0 => 'array', ), - 'SVMModel::getNrClass' => + 'svmmodel::getnrclass' => array ( 0 => 'int', ), - 'SVMModel::getSvmType' => + 'svmmodel::getsvmtype' => array ( 0 => 'int', ), - 'SVMModel::getSvrProbability' => + 'svmmodel::getsvrprobability' => array ( 0 => 'float', ), - 'SVMModel::load' => + 'svmmodel::load' => array ( 0 => 'bool', 'filename' => 'string', ), - 'SVMModel::predict' => + 'svmmodel::predict' => array ( 0 => 'float', 'data' => 'array', ), - 'SVMModel::predict_probability' => + 'svmmodel::predict_probability' => array ( 0 => 'float', 'data' => 'array', ), - 'SVMModel::save' => + 'svmmodel::save' => array ( 0 => 'bool', 'filename' => 'string', ), - 'SWFAction::__construct' => + 'swfaction::__construct' => array ( 0 => 'void', 'script' => 'string', ), - 'SWFBitmap::__construct' => + 'swfbitmap::__construct' => array ( 0 => 'void', 'file' => 'mixed', 'alphafile=' => 'mixed', ), - 'SWFBitmap::getHeight' => + 'swfbitmap::getheight' => array ( 0 => 'float', ), - 'SWFBitmap::getWidth' => + 'swfbitmap::getwidth' => array ( 0 => 'float', ), - 'SWFButton::__construct' => + 'swfbutton::__construct' => array ( 0 => 'void', ), - 'SWFButton::addASound' => + 'swfbutton::addasound' => array ( 0 => 'SWFSoundInstance', 'sound' => 'swfsound', 'flags' => 'int', ), - 'SWFButton::addAction' => + 'swfbutton::addaction' => array ( 0 => 'void', 'action' => 'swfaction', 'flags' => 'int', ), - 'SWFButton::addShape' => + 'swfbutton::addshape' => array ( 0 => 'void', 'shape' => 'swfshape', 'flags' => 'int', ), - 'SWFButton::setAction' => + 'swfbutton::setaction' => array ( 0 => 'void', 'action' => 'swfaction', ), - 'SWFButton::setDown' => + 'swfbutton::setdown' => array ( 0 => 'void', 'shape' => 'swfshape', ), - 'SWFButton::setHit' => + 'swfbutton::sethit' => array ( 0 => 'void', 'shape' => 'swfshape', ), - 'SWFButton::setMenu' => + 'swfbutton::setmenu' => array ( 0 => 'void', 'flag' => 'int', ), - 'SWFButton::setOver' => + 'swfbutton::setover' => array ( 0 => 'void', 'shape' => 'swfshape', ), - 'SWFButton::setUp' => + 'swfbutton::setup' => array ( 0 => 'void', 'shape' => 'swfshape', ), - 'SWFDisplayItem::addAction' => + 'swfdisplayitem::addaction' => array ( 0 => 'void', 'action' => 'swfaction', 'flags' => 'int', ), - 'SWFDisplayItem::addColor' => + 'swfdisplayitem::addcolor' => array ( 0 => 'void', 'red' => 'int', @@ -31973,51 +31973,51 @@ 'blue' => 'int', 'a=' => 'int', ), - 'SWFDisplayItem::endMask' => + 'swfdisplayitem::endmask' => array ( 0 => 'void', ), - 'SWFDisplayItem::getRot' => + 'swfdisplayitem::getrot' => array ( 0 => 'float', ), - 'SWFDisplayItem::getX' => + 'swfdisplayitem::getx' => array ( 0 => 'float', ), - 'SWFDisplayItem::getXScale' => + 'swfdisplayitem::getxscale' => array ( 0 => 'float', ), - 'SWFDisplayItem::getXSkew' => + 'swfdisplayitem::getxskew' => array ( 0 => 'float', ), - 'SWFDisplayItem::getY' => + 'swfdisplayitem::gety' => array ( 0 => 'float', ), - 'SWFDisplayItem::getYScale' => + 'swfdisplayitem::getyscale' => array ( 0 => 'float', ), - 'SWFDisplayItem::getYSkew' => + 'swfdisplayitem::getyskew' => array ( 0 => 'float', ), - 'SWFDisplayItem::move' => + 'swfdisplayitem::move' => array ( 0 => 'void', 'dx' => 'float', 'dy' => 'float', ), - 'SWFDisplayItem::moveTo' => + 'swfdisplayitem::moveto' => array ( 0 => 'void', 'x' => 'float', 'y' => 'float', ), - 'SWFDisplayItem::multColor' => + 'swfdisplayitem::multcolor' => array ( 0 => 'void', 'red' => 'float', @@ -32025,43 +32025,43 @@ 'blue' => 'float', 'a=' => 'float', ), - 'SWFDisplayItem::remove' => + 'swfdisplayitem::remove' => array ( 0 => 'void', ), - 'SWFDisplayItem::rotate' => + 'swfdisplayitem::rotate' => array ( 0 => 'void', 'angle' => 'float', ), - 'SWFDisplayItem::rotateTo' => + 'swfdisplayitem::rotateto' => array ( 0 => 'void', 'angle' => 'float', ), - 'SWFDisplayItem::scale' => + 'swfdisplayitem::scale' => array ( 0 => 'void', 'dx' => 'float', 'dy' => 'float', ), - 'SWFDisplayItem::scaleTo' => + 'swfdisplayitem::scaleto' => array ( 0 => 'void', 'x' => 'float', 'y=' => 'float', ), - 'SWFDisplayItem::setDepth' => + 'swfdisplayitem::setdepth' => array ( 0 => 'void', 'depth' => 'int', ), - 'SWFDisplayItem::setMaskLevel' => + 'swfdisplayitem::setmasklevel' => array ( 0 => 'void', 'level' => 'int', ), - 'SWFDisplayItem::setMatrix' => + 'swfdisplayitem::setmatrix' => array ( 0 => 'void', 'a' => 'float', @@ -32071,110 +32071,110 @@ 'x' => 'float', 'y' => 'float', ), - 'SWFDisplayItem::setName' => + 'swfdisplayitem::setname' => array ( 0 => 'void', 'name' => 'string', ), - 'SWFDisplayItem::setRatio' => + 'swfdisplayitem::setratio' => array ( 0 => 'void', 'ratio' => 'float', ), - 'SWFDisplayItem::skewX' => + 'swfdisplayitem::skewx' => array ( 0 => 'void', 'ddegrees' => 'float', ), - 'SWFDisplayItem::skewXTo' => + 'swfdisplayitem::skewxto' => array ( 0 => 'void', 'degrees' => 'float', ), - 'SWFDisplayItem::skewY' => + 'swfdisplayitem::skewy' => array ( 0 => 'void', 'ddegrees' => 'float', ), - 'SWFDisplayItem::skewYTo' => + 'swfdisplayitem::skewyto' => array ( 0 => 'void', 'degrees' => 'float', ), - 'SWFFill::moveTo' => + 'swffill::moveto' => array ( 0 => 'void', 'x' => 'float', 'y' => 'float', ), - 'SWFFill::rotateTo' => + 'swffill::rotateto' => array ( 0 => 'void', 'angle' => 'float', ), - 'SWFFill::scaleTo' => + 'swffill::scaleto' => array ( 0 => 'void', 'x' => 'float', 'y=' => 'float', ), - 'SWFFill::skewXTo' => + 'swffill::skewxto' => array ( 0 => 'void', 'x' => 'float', ), - 'SWFFill::skewYTo' => + 'swffill::skewyto' => array ( 0 => 'void', 'y' => 'float', ), - 'SWFFont::__construct' => + 'swffont::__construct' => array ( 0 => 'void', 'filename' => 'string', ), - 'SWFFont::getAscent' => + 'swffont::getascent' => array ( 0 => 'float', ), - 'SWFFont::getDescent' => + 'swffont::getdescent' => array ( 0 => 'float', ), - 'SWFFont::getLeading' => + 'swffont::getleading' => array ( 0 => 'float', ), - 'SWFFont::getShape' => + 'swffont::getshape' => array ( 0 => 'string', 'code' => 'int', ), - 'SWFFont::getUTF8Width' => + 'swffont::getutf8width' => array ( 0 => 'float', 'string' => 'string', ), - 'SWFFont::getWidth' => + 'swffont::getwidth' => array ( 0 => 'float', 'string' => 'string', ), - 'SWFFontChar::addChars' => + 'swffontchar::addchars' => array ( 0 => 'void', 'char' => 'string', ), - 'SWFFontChar::addUTF8Chars' => + 'swffontchar::addutf8chars' => array ( 0 => 'void', 'char' => 'string', ), - 'SWFGradient::__construct' => + 'swfgradient::__construct' => array ( 0 => 'void', ), - 'SWFGradient::addEntry' => + 'swfgradient::addentry' => array ( 0 => 'void', 'ratio' => 'float', @@ -32183,143 +32183,143 @@ 'blue' => 'int', 'alpha=' => 'int', ), - 'SWFMorph::__construct' => + 'swfmorph::__construct' => array ( 0 => 'void', ), - 'SWFMorph::getShape1' => + 'swfmorph::getshape1' => array ( 0 => 'SWFShape', ), - 'SWFMorph::getShape2' => + 'swfmorph::getshape2' => array ( 0 => 'SWFShape', ), - 'SWFMovie::__construct' => + 'swfmovie::__construct' => array ( 0 => 'void', 'version=' => 'int', ), - 'SWFMovie::add' => + 'swfmovie::add' => array ( 0 => 'mixed', 'instance' => 'object', ), - 'SWFMovie::addExport' => + 'swfmovie::addexport' => array ( 0 => 'void', 'char' => 'swfcharacter', 'name' => 'string', ), - 'SWFMovie::addFont' => + 'swfmovie::addfont' => array ( 0 => 'mixed', 'font' => 'swffont', ), - 'SWFMovie::importChar' => + 'swfmovie::importchar' => array ( 0 => 'SWFSprite', 'libswf' => 'string', 'name' => 'string', ), - 'SWFMovie::importFont' => + 'swfmovie::importfont' => array ( 0 => 'SWFFontChar', 'libswf' => 'string', 'name' => 'string', ), - 'SWFMovie::labelFrame' => + 'swfmovie::labelframe' => array ( 0 => 'void', 'label' => 'string', ), - 'SWFMovie::namedAnchor' => + 'swfmovie::namedanchor' => array ( 0 => 'mixed', ), - 'SWFMovie::nextFrame' => + 'swfmovie::nextframe' => array ( 0 => 'void', ), - 'SWFMovie::output' => + 'swfmovie::output' => array ( 0 => 'int', 'compression=' => 'int', ), - 'SWFMovie::protect' => + 'swfmovie::protect' => array ( 0 => 'mixed', ), - 'SWFMovie::remove' => + 'swfmovie::remove' => array ( 0 => 'void', 'instance' => 'object', ), - 'SWFMovie::save' => + 'swfmovie::save' => array ( 0 => 'int', 'filename' => 'string', 'compression=' => 'int', ), - 'SWFMovie::saveToFile' => + 'swfmovie::savetofile' => array ( 0 => 'int', 'x' => 'resource', 'compression=' => 'int', ), - 'SWFMovie::setDimension' => + 'swfmovie::setdimension' => array ( 0 => 'void', 'width' => 'float', 'height' => 'float', ), - 'SWFMovie::setFrames' => + 'swfmovie::setframes' => array ( 0 => 'void', 'number' => 'int', ), - 'SWFMovie::setRate' => + 'swfmovie::setrate' => array ( 0 => 'void', 'rate' => 'float', ), - 'SWFMovie::setbackground' => + 'swfmovie::setbackground' => array ( 0 => 'void', 'red' => 'int', 'green' => 'int', 'blue' => 'int', ), - 'SWFMovie::startSound' => + 'swfmovie::startsound' => array ( 0 => 'SWFSoundInstance', 'sound' => 'swfsound', ), - 'SWFMovie::stopSound' => + 'swfmovie::stopsound' => array ( 0 => 'void', 'sound' => 'swfsound', ), - 'SWFMovie::streamMP3' => + 'swfmovie::streammp3' => array ( 0 => 'int', 'mp3file' => 'mixed', 'skip=' => 'float', ), - 'SWFMovie::writeExports' => + 'swfmovie::writeexports' => array ( 0 => 'void', ), - 'SWFPrebuiltClip::__construct' => + 'swfprebuiltclip::__construct' => array ( 0 => 'void', 'file' => 'mixed', ), - 'SWFShape::__construct' => + 'swfshape::__construct' => array ( 0 => 'void', ), - 'SWFShape::addFill' => + 'swfshape::addfill' => array ( 0 => 'SWFFill', 'red' => 'int', @@ -32330,31 +32330,31 @@ 'flags=' => 'int', 'gradient=' => 'swfgradient', ), - 'SWFShape::addFill\'1' => + 'swfshape::addfill\'1' => array ( 0 => 'SWFFill', 'bitmap' => 'SWFBitmap', 'flags=' => 'int', ), - 'SWFShape::addFill\'2' => + 'swfshape::addfill\'2' => array ( 0 => 'SWFFill', 'gradient' => 'SWFGradient', 'flags=' => 'int', ), - 'SWFShape::drawArc' => + 'swfshape::drawarc' => array ( 0 => 'void', 'r' => 'float', 'startangle' => 'float', 'endangle' => 'float', ), - 'SWFShape::drawCircle' => + 'swfshape::drawcircle' => array ( 0 => 'void', 'r' => 'float', ), - 'SWFShape::drawCubic' => + 'swfshape::drawcubic' => array ( 0 => 'int', 'bx' => 'float', @@ -32364,7 +32364,7 @@ 'dx' => 'float', 'dy' => 'float', ), - 'SWFShape::drawCubicTo' => + 'swfshape::drawcubicto' => array ( 0 => 'int', 'bx' => 'float', @@ -32374,7 +32374,7 @@ 'dx' => 'float', 'dy' => 'float', ), - 'SWFShape::drawCurve' => + 'swfshape::drawcurve' => array ( 0 => 'int', 'controldx' => 'float', @@ -32384,7 +32384,7 @@ 'targetdx=' => 'float', 'targetdy=' => 'float', ), - 'SWFShape::drawCurveTo' => + 'swfshape::drawcurveto' => array ( 0 => 'int', 'controlx' => 'float', @@ -32394,38 +32394,38 @@ 'targetx=' => 'float', 'targety=' => 'float', ), - 'SWFShape::drawGlyph' => + 'swfshape::drawglyph' => array ( 0 => 'void', 'font' => 'swffont', 'character' => 'string', 'size=' => 'int', ), - 'SWFShape::drawLine' => + 'swfshape::drawline' => array ( 0 => 'void', 'dx' => 'float', 'dy' => 'float', ), - 'SWFShape::drawLineTo' => + 'swfshape::drawlineto' => array ( 0 => 'void', 'x' => 'float', 'y' => 'float', ), - 'SWFShape::movePen' => + 'swfshape::movepen' => array ( 0 => 'void', 'dx' => 'float', 'dy' => 'float', ), - 'SWFShape::movePenTo' => + 'swfshape::movepento' => array ( 0 => 'void', 'x' => 'float', 'y' => 'float', ), - 'SWFShape::setLeftFill' => + 'swfshape::setleftfill' => array ( 0 => 'mixed', 'fill' => 'swfgradient', @@ -32434,7 +32434,7 @@ 'blue' => 'int', 'a=' => 'int', ), - 'SWFShape::setLine' => + 'swfshape::setline' => array ( 0 => 'mixed', 'shape' => 'swfshape', @@ -32444,7 +32444,7 @@ 'blue' => 'int', 'a=' => 'int', ), - 'SWFShape::setRightFill' => + 'swfshape::setrightfill' => array ( 0 => 'mixed', 'fill' => 'swfgradient', @@ -32453,118 +32453,118 @@ 'blue' => 'int', 'a=' => 'int', ), - 'SWFSound' => + 'swfsound' => array ( 0 => 'SWFSound', 'filename' => 'string', 'flags=' => 'int', ), - 'SWFSound::__construct' => + 'swfsound::__construct' => array ( 0 => 'void', 'filename' => 'string', 'flags=' => 'int', ), - 'SWFSoundInstance::loopCount' => + 'swfsoundinstance::loopcount' => array ( 0 => 'void', 'point' => 'int', ), - 'SWFSoundInstance::loopInPoint' => + 'swfsoundinstance::loopinpoint' => array ( 0 => 'void', 'point' => 'int', ), - 'SWFSoundInstance::loopOutPoint' => + 'swfsoundinstance::loopoutpoint' => array ( 0 => 'void', 'point' => 'int', ), - 'SWFSoundInstance::noMultiple' => + 'swfsoundinstance::nomultiple' => array ( 0 => 'void', ), - 'SWFSprite::__construct' => + 'swfsprite::__construct' => array ( 0 => 'void', ), - 'SWFSprite::add' => + 'swfsprite::add' => array ( 0 => 'void', 'object' => 'object', ), - 'SWFSprite::labelFrame' => + 'swfsprite::labelframe' => array ( 0 => 'void', 'label' => 'string', ), - 'SWFSprite::nextFrame' => + 'swfsprite::nextframe' => array ( 0 => 'void', ), - 'SWFSprite::remove' => + 'swfsprite::remove' => array ( 0 => 'void', 'object' => 'object', ), - 'SWFSprite::setFrames' => + 'swfsprite::setframes' => array ( 0 => 'void', 'number' => 'int', ), - 'SWFSprite::startSound' => + 'swfsprite::startsound' => array ( 0 => 'SWFSoundInstance', 'sount' => 'swfsound', ), - 'SWFSprite::stopSound' => + 'swfsprite::stopsound' => array ( 0 => 'void', 'sount' => 'swfsound', ), - 'SWFText::__construct' => + 'swftext::__construct' => array ( 0 => 'void', ), - 'SWFText::addString' => + 'swftext::addstring' => array ( 0 => 'void', 'string' => 'string', ), - 'SWFText::addUTF8String' => + 'swftext::addutf8string' => array ( 0 => 'void', 'text' => 'string', ), - 'SWFText::getAscent' => + 'swftext::getascent' => array ( 0 => 'float', ), - 'SWFText::getDescent' => + 'swftext::getdescent' => array ( 0 => 'float', ), - 'SWFText::getLeading' => + 'swftext::getleading' => array ( 0 => 'float', ), - 'SWFText::getUTF8Width' => + 'swftext::getutf8width' => array ( 0 => 'float', 'string' => 'string', ), - 'SWFText::getWidth' => + 'swftext::getwidth' => array ( 0 => 'float', 'string' => 'string', ), - 'SWFText::moveTo' => + 'swftext::moveto' => array ( 0 => 'void', 'x' => 'float', 'y' => 'float', ), - 'SWFText::setColor' => + 'swftext::setcolor' => array ( 0 => 'void', 'red' => 'int', @@ -32572,48 +32572,48 @@ 'blue' => 'int', 'a=' => 'int', ), - 'SWFText::setFont' => + 'swftext::setfont' => array ( 0 => 'void', 'font' => 'swffont', ), - 'SWFText::setHeight' => + 'swftext::setheight' => array ( 0 => 'void', 'height' => 'float', ), - 'SWFText::setSpacing' => + 'swftext::setspacing' => array ( 0 => 'void', 'spacing' => 'float', ), - 'SWFTextField::__construct' => + 'swftextfield::__construct' => array ( 0 => 'void', 'flags=' => 'int', ), - 'SWFTextField::addChars' => + 'swftextfield::addchars' => array ( 0 => 'void', 'chars' => 'string', ), - 'SWFTextField::addString' => + 'swftextfield::addstring' => array ( 0 => 'void', 'string' => 'string', ), - 'SWFTextField::align' => + 'swftextfield::align' => array ( 0 => 'void', 'alignement' => 'int', ), - 'SWFTextField::setBounds' => + 'swftextfield::setbounds' => array ( 0 => 'void', 'width' => 'float', 'height' => 'float', ), - 'SWFTextField::setColor' => + 'swftextfield::setcolor' => array ( 0 => 'void', 'red' => 'int', @@ -32621,658 +32621,658 @@ 'blue' => 'int', 'a=' => 'int', ), - 'SWFTextField::setFont' => + 'swftextfield::setfont' => array ( 0 => 'void', 'font' => 'swffont', ), - 'SWFTextField::setHeight' => + 'swftextfield::setheight' => array ( 0 => 'void', 'height' => 'float', ), - 'SWFTextField::setIndentation' => + 'swftextfield::setindentation' => array ( 0 => 'void', 'width' => 'float', ), - 'SWFTextField::setLeftMargin' => + 'swftextfield::setleftmargin' => array ( 0 => 'void', 'width' => 'float', ), - 'SWFTextField::setLineSpacing' => + 'swftextfield::setlinespacing' => array ( 0 => 'void', 'height' => 'float', ), - 'SWFTextField::setMargins' => + 'swftextfield::setmargins' => array ( 0 => 'void', 'left' => 'float', 'right' => 'float', ), - 'SWFTextField::setName' => + 'swftextfield::setname' => array ( 0 => 'void', 'name' => 'string', ), - 'SWFTextField::setPadding' => + 'swftextfield::setpadding' => array ( 0 => 'void', 'padding' => 'float', ), - 'SWFTextField::setRightMargin' => + 'swftextfield::setrightmargin' => array ( 0 => 'void', 'width' => 'float', ), - 'SWFVideoStream::__construct' => + 'swfvideostream::__construct' => array ( 0 => 'void', 'file=' => 'string', ), - 'SWFVideoStream::getNumFrames' => + 'swfvideostream::getnumframes' => array ( 0 => 'int', ), - 'SWFVideoStream::setDimension' => + 'swfvideostream::setdimension' => array ( 0 => 'void', 'x' => 'int', 'y' => 'int', ), - 'Saxon\\SaxonProcessor::__construct' => + 'saxon\\saxonprocessor::__construct' => array ( 0 => 'void', 'license=' => 'bool', 'cwd=' => 'string', ), - 'Saxon\\SaxonProcessor::createAtomicValue' => + 'saxon\\saxonprocessor::createatomicvalue' => array ( 0 => 'Saxon\\XdmValue', 'primitive_type_val' => 'scalar', ), - 'Saxon\\SaxonProcessor::newSchemaValidator' => + 'saxon\\saxonprocessor::newschemavalidator' => array ( 0 => 'Saxon\\SchemaValidator', ), - 'Saxon\\SaxonProcessor::newXPathProcessor' => + 'saxon\\saxonprocessor::newxpathprocessor' => array ( 0 => 'Saxon\\XPathProcessor', ), - 'Saxon\\SaxonProcessor::newXQueryProcessor' => + 'saxon\\saxonprocessor::newxqueryprocessor' => array ( 0 => 'Saxon\\XQueryProcessor', ), - 'Saxon\\SaxonProcessor::newXsltProcessor' => + 'saxon\\saxonprocessor::newxsltprocessor' => array ( 0 => 'Saxon\\XsltProcessor', ), - 'Saxon\\SaxonProcessor::parseXmlFromFile' => + 'saxon\\saxonprocessor::parsexmlfromfile' => array ( 0 => 'Saxon\\XdmNode', 'fileName' => 'string', ), - 'Saxon\\SaxonProcessor::parseXmlFromString' => + 'saxon\\saxonprocessor::parsexmlfromstring' => array ( 0 => 'Saxon\\XdmNode', 'value' => 'string', ), - 'Saxon\\SaxonProcessor::registerPHPFunctions' => + 'saxon\\saxonprocessor::registerphpfunctions' => array ( 0 => 'void', 'library' => 'string', ), - 'Saxon\\SaxonProcessor::setConfigurationProperty' => + 'saxon\\saxonprocessor::setconfigurationproperty' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Saxon\\SaxonProcessor::setResourceDirectory' => + 'saxon\\saxonprocessor::setresourcedirectory' => array ( 0 => 'void', 'dir' => 'string', ), - 'Saxon\\SaxonProcessor::setcwd' => + 'saxon\\saxonprocessor::setcwd' => array ( 0 => 'void', 'cwd' => 'string', ), - 'Saxon\\SaxonProcessor::version' => + 'saxon\\saxonprocessor::version' => array ( 0 => 'string', ), - 'Saxon\\SchemaValidator::clearParameters' => + 'saxon\\schemavalidator::clearparameters' => array ( 0 => 'void', ), - 'Saxon\\SchemaValidator::clearProperties' => + 'saxon\\schemavalidator::clearproperties' => array ( 0 => 'void', ), - 'Saxon\\SchemaValidator::exceptionClear' => + 'saxon\\schemavalidator::exceptionclear' => array ( 0 => 'void', ), - 'Saxon\\SchemaValidator::getErrorCode' => + 'saxon\\schemavalidator::geterrorcode' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\SchemaValidator::getErrorMessage' => + 'saxon\\schemavalidator::geterrormessage' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\SchemaValidator::getExceptionCount' => + 'saxon\\schemavalidator::getexceptioncount' => array ( 0 => 'int', ), - 'Saxon\\SchemaValidator::getValidationReport' => + 'saxon\\schemavalidator::getvalidationreport' => array ( 0 => 'Saxon\\XdmNode', ), - 'Saxon\\SchemaValidator::registerSchemaFromFile' => + 'saxon\\schemavalidator::registerschemafromfile' => array ( 0 => 'void', 'fileName' => 'string', ), - 'Saxon\\SchemaValidator::registerSchemaFromString' => + 'saxon\\schemavalidator::registerschemafromstring' => array ( 0 => 'void', 'schemaStr' => 'string', ), - 'Saxon\\SchemaValidator::setOutputFile' => + 'saxon\\schemavalidator::setoutputfile' => array ( 0 => 'void', 'fileName' => 'string', ), - 'Saxon\\SchemaValidator::setParameter' => + 'saxon\\schemavalidator::setparameter' => array ( 0 => 'void', 'name' => 'string', 'value' => 'Saxon\\XdmValue', ), - 'Saxon\\SchemaValidator::setProperty' => + 'saxon\\schemavalidator::setproperty' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Saxon\\SchemaValidator::setSourceNode' => + 'saxon\\schemavalidator::setsourcenode' => array ( 0 => 'void', 'node' => 'Saxon\\XdmNode', ), - 'Saxon\\SchemaValidator::validate' => + 'saxon\\schemavalidator::validate' => array ( 0 => 'void', 'filename=' => 'null|string', ), - 'Saxon\\SchemaValidator::validateToNode' => + 'saxon\\schemavalidator::validatetonode' => array ( 0 => 'Saxon\\XdmNode', 'filename=' => 'null|string', ), - 'Saxon\\XPathProcessor::clearParameters' => + 'saxon\\xpathprocessor::clearparameters' => array ( 0 => 'void', ), - 'Saxon\\XPathProcessor::clearProperties' => + 'saxon\\xpathprocessor::clearproperties' => array ( 0 => 'void', ), - 'Saxon\\XPathProcessor::declareNamespace' => + 'saxon\\xpathprocessor::declarenamespace' => array ( 0 => 'void', 'prefix' => 'mixed', 'namespace' => 'mixed', ), - 'Saxon\\XPathProcessor::effectiveBooleanValue' => + 'saxon\\xpathprocessor::effectivebooleanvalue' => array ( 0 => 'bool', 'xpathStr' => 'string', ), - 'Saxon\\XPathProcessor::evaluate' => + 'saxon\\xpathprocessor::evaluate' => array ( 0 => 'Saxon\\XdmValue', 'xpathStr' => 'string', ), - 'Saxon\\XPathProcessor::evaluateSingle' => + 'saxon\\xpathprocessor::evaluatesingle' => array ( 0 => 'Saxon\\XdmItem', 'xpathStr' => 'string', ), - 'Saxon\\XPathProcessor::exceptionClear' => + 'saxon\\xpathprocessor::exceptionclear' => array ( 0 => 'void', ), - 'Saxon\\XPathProcessor::getErrorCode' => + 'saxon\\xpathprocessor::geterrorcode' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\XPathProcessor::getErrorMessage' => + 'saxon\\xpathprocessor::geterrormessage' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\XPathProcessor::getExceptionCount' => + 'saxon\\xpathprocessor::getexceptioncount' => array ( 0 => 'int', ), - 'Saxon\\XPathProcessor::setBaseURI' => + 'saxon\\xpathprocessor::setbaseuri' => array ( 0 => 'void', 'uri' => 'string', ), - 'Saxon\\XPathProcessor::setContextFile' => + 'saxon\\xpathprocessor::setcontextfile' => array ( 0 => 'void', 'fileName' => 'string', ), - 'Saxon\\XPathProcessor::setContextItem' => + 'saxon\\xpathprocessor::setcontextitem' => array ( 0 => 'void', 'item' => 'Saxon\\XdmItem', ), - 'Saxon\\XPathProcessor::setParameter' => + 'saxon\\xpathprocessor::setparameter' => array ( 0 => 'void', 'name' => 'string', 'value' => 'Saxon\\XdmValue', ), - 'Saxon\\XPathProcessor::setProperty' => + 'saxon\\xpathprocessor::setproperty' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Saxon\\XQueryProcessor::clearParameters' => + 'saxon\\xqueryprocessor::clearparameters' => array ( 0 => 'void', ), - 'Saxon\\XQueryProcessor::clearProperties' => + 'saxon\\xqueryprocessor::clearproperties' => array ( 0 => 'void', ), - 'Saxon\\XQueryProcessor::declareNamespace' => + 'saxon\\xqueryprocessor::declarenamespace' => array ( 0 => 'void', 'prefix' => 'string', 'namespace' => 'string', ), - 'Saxon\\XQueryProcessor::exceptionClear' => + 'saxon\\xqueryprocessor::exceptionclear' => array ( 0 => 'void', ), - 'Saxon\\XQueryProcessor::getErrorCode' => + 'saxon\\xqueryprocessor::geterrorcode' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\XQueryProcessor::getErrorMessage' => + 'saxon\\xqueryprocessor::geterrormessage' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\XQueryProcessor::getExceptionCount' => + 'saxon\\xqueryprocessor::getexceptioncount' => array ( 0 => 'int', ), - 'Saxon\\XQueryProcessor::runQueryToFile' => + 'saxon\\xqueryprocessor::runquerytofile' => array ( 0 => 'void', 'outfilename' => 'string', ), - 'Saxon\\XQueryProcessor::runQueryToString' => + 'saxon\\xqueryprocessor::runquerytostring' => array ( 0 => 'null|string', ), - 'Saxon\\XQueryProcessor::runQueryToValue' => + 'saxon\\xqueryprocessor::runquerytovalue' => array ( 0 => 'Saxon\\XdmValue|null', ), - 'Saxon\\XQueryProcessor::setContextItem' => + 'saxon\\xqueryprocessor::setcontextitem' => array ( 0 => 'void', 'object' => 'Saxon\\XdmAtomicValue|Saxon\\XdmItem|Saxon\\XdmNode|Saxon\\XdmValue', ), - 'Saxon\\XQueryProcessor::setContextItemFromFile' => + 'saxon\\xqueryprocessor::setcontextitemfromfile' => array ( 0 => 'void', 'fileName' => 'string', ), - 'Saxon\\XQueryProcessor::setParameter' => + 'saxon\\xqueryprocessor::setparameter' => array ( 0 => 'void', 'name' => 'string', 'value' => 'Saxon\\XdmValue', ), - 'Saxon\\XQueryProcessor::setProperty' => + 'saxon\\xqueryprocessor::setproperty' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Saxon\\XQueryProcessor::setQueryBaseURI' => + 'saxon\\xqueryprocessor::setquerybaseuri' => array ( 0 => 'void', 'uri' => 'string', ), - 'Saxon\\XQueryProcessor::setQueryContent' => + 'saxon\\xqueryprocessor::setquerycontent' => array ( 0 => 'void', 'string' => 'string', ), - 'Saxon\\XQueryProcessor::setQueryFile' => + 'saxon\\xqueryprocessor::setqueryfile' => array ( 0 => 'void', 'filename' => 'string', ), - 'Saxon\\XQueryProcessor::setQueryItem' => + 'saxon\\xqueryprocessor::setqueryitem' => array ( 0 => 'void', 'item' => 'Saxon\\XdmItem', ), - 'Saxon\\XdmAtomicValue::addXdmItem' => + 'saxon\\xdmatomicvalue::addxdmitem' => array ( 0 => 'mixed', 'item' => 'Saxon\\XdmItem', ), - 'Saxon\\XdmAtomicValue::getAtomicValue' => + 'saxon\\xdmatomicvalue::getatomicvalue' => array ( 0 => 'Saxon\\XdmAtomicValue|null', ), - 'Saxon\\XdmAtomicValue::getBooleanValue' => + 'saxon\\xdmatomicvalue::getbooleanvalue' => array ( 0 => 'bool', ), - 'Saxon\\XdmAtomicValue::getDoubleValue' => + 'saxon\\xdmatomicvalue::getdoublevalue' => array ( 0 => 'float', ), - 'Saxon\\XdmAtomicValue::getHead' => + 'saxon\\xdmatomicvalue::gethead' => array ( 0 => 'Saxon\\XdmItem', ), - 'Saxon\\XdmAtomicValue::getLongValue' => + 'saxon\\xdmatomicvalue::getlongvalue' => array ( 0 => 'int', ), - 'Saxon\\XdmAtomicValue::getNodeValue' => + 'saxon\\xdmatomicvalue::getnodevalue' => array ( 0 => 'Saxon\\XdmNode|null', ), - 'Saxon\\XdmAtomicValue::getStringValue' => + 'saxon\\xdmatomicvalue::getstringvalue' => array ( 0 => 'string', ), - 'Saxon\\XdmAtomicValue::isAtomic' => + 'saxon\\xdmatomicvalue::isatomic' => array ( 0 => 'true', ), - 'Saxon\\XdmAtomicValue::isNode' => + 'saxon\\xdmatomicvalue::isnode' => array ( 0 => 'bool', ), - 'Saxon\\XdmAtomicValue::itemAt' => + 'saxon\\xdmatomicvalue::itemat' => array ( 0 => 'Saxon\\XdmItem', 'index' => 'int', ), - 'Saxon\\XdmAtomicValue::size' => + 'saxon\\xdmatomicvalue::size' => array ( 0 => 'int', ), - 'Saxon\\XdmItem::addXdmItem' => + 'saxon\\xdmitem::addxdmitem' => array ( 0 => 'mixed', 'item' => 'Saxon\\XdmItem', ), - 'Saxon\\XdmItem::getAtomicValue' => + 'saxon\\xdmitem::getatomicvalue' => array ( 0 => 'Saxon\\XdmAtomicValue|null', ), - 'Saxon\\XdmItem::getHead' => + 'saxon\\xdmitem::gethead' => array ( 0 => 'Saxon\\XdmItem', ), - 'Saxon\\XdmItem::getNodeValue' => + 'saxon\\xdmitem::getnodevalue' => array ( 0 => 'Saxon\\XdmNode|null', ), - 'Saxon\\XdmItem::getStringValue' => + 'saxon\\xdmitem::getstringvalue' => array ( 0 => 'string', ), - 'Saxon\\XdmItem::isAtomic' => + 'saxon\\xdmitem::isatomic' => array ( 0 => 'bool', ), - 'Saxon\\XdmItem::isNode' => + 'saxon\\xdmitem::isnode' => array ( 0 => 'bool', ), - 'Saxon\\XdmItem::itemAt' => + 'saxon\\xdmitem::itemat' => array ( 0 => 'Saxon\\XdmItem', 'index' => 'int', ), - 'Saxon\\XdmItem::size' => + 'saxon\\xdmitem::size' => array ( 0 => 'int', ), - 'Saxon\\XdmNode::addXdmItem' => + 'saxon\\xdmnode::addxdmitem' => array ( 0 => 'mixed', 'item' => 'Saxon\\XdmItem', ), - 'Saxon\\XdmNode::getAtomicValue' => + 'saxon\\xdmnode::getatomicvalue' => array ( 0 => 'Saxon\\XdmAtomicValue|null', ), - 'Saxon\\XdmNode::getAttributeCount' => + 'saxon\\xdmnode::getattributecount' => array ( 0 => 'int', ), - 'Saxon\\XdmNode::getAttributeNode' => + 'saxon\\xdmnode::getattributenode' => array ( 0 => 'Saxon\\XdmNode|null', 'index' => 'int', ), - 'Saxon\\XdmNode::getAttributeValue' => + 'saxon\\xdmnode::getattributevalue' => array ( 0 => 'null|string', 'index' => 'int', ), - 'Saxon\\XdmNode::getChildCount' => + 'saxon\\xdmnode::getchildcount' => array ( 0 => 'int', ), - 'Saxon\\XdmNode::getChildNode' => + 'saxon\\xdmnode::getchildnode' => array ( 0 => 'Saxon\\XdmNode|null', 'index' => 'int', ), - 'Saxon\\XdmNode::getHead' => + 'saxon\\xdmnode::gethead' => array ( 0 => 'Saxon\\XdmItem', ), - 'Saxon\\XdmNode::getNodeKind' => + 'saxon\\xdmnode::getnodekind' => array ( 0 => 'int', ), - 'Saxon\\XdmNode::getNodeName' => + 'saxon\\xdmnode::getnodename' => array ( 0 => 'string', ), - 'Saxon\\XdmNode::getNodeValue' => + 'saxon\\xdmnode::getnodevalue' => array ( 0 => 'Saxon\\XdmNode|null', ), - 'Saxon\\XdmNode::getParent' => + 'saxon\\xdmnode::getparent' => array ( 0 => 'Saxon\\XdmNode|null', ), - 'Saxon\\XdmNode::getStringValue' => + 'saxon\\xdmnode::getstringvalue' => array ( 0 => 'string', ), - 'Saxon\\XdmNode::isAtomic' => + 'saxon\\xdmnode::isatomic' => array ( 0 => 'false', ), - 'Saxon\\XdmNode::isNode' => + 'saxon\\xdmnode::isnode' => array ( 0 => 'bool', ), - 'Saxon\\XdmNode::itemAt' => + 'saxon\\xdmnode::itemat' => array ( 0 => 'Saxon\\XdmItem', 'index' => 'int', ), - 'Saxon\\XdmNode::size' => + 'saxon\\xdmnode::size' => array ( 0 => 'int', ), - 'Saxon\\XdmValue::addXdmItem' => + 'saxon\\xdmvalue::addxdmitem' => array ( 0 => 'mixed', 'item' => 'Saxon\\XdmItem', ), - 'Saxon\\XdmValue::getHead' => + 'saxon\\xdmvalue::gethead' => array ( 0 => 'Saxon\\XdmItem', ), - 'Saxon\\XdmValue::itemAt' => + 'saxon\\xdmvalue::itemat' => array ( 0 => 'Saxon\\XdmItem', 'index' => 'int', ), - 'Saxon\\XdmValue::size' => + 'saxon\\xdmvalue::size' => array ( 0 => 'int', ), - 'Saxon\\XsltProcessor::clearParameters' => + 'saxon\\xsltprocessor::clearparameters' => array ( 0 => 'void', ), - 'Saxon\\XsltProcessor::clearProperties' => + 'saxon\\xsltprocessor::clearproperties' => array ( 0 => 'void', ), - 'Saxon\\XsltProcessor::compileFromFile' => + 'saxon\\xsltprocessor::compilefromfile' => array ( 0 => 'void', 'fileName' => 'string', ), - 'Saxon\\XsltProcessor::compileFromString' => + 'saxon\\xsltprocessor::compilefromstring' => array ( 0 => 'void', 'string' => 'string', ), - 'Saxon\\XsltProcessor::compileFromValue' => + 'saxon\\xsltprocessor::compilefromvalue' => array ( 0 => 'void', 'node' => 'Saxon\\XdmNode', ), - 'Saxon\\XsltProcessor::exceptionClear' => + 'saxon\\xsltprocessor::exceptionclear' => array ( 0 => 'void', ), - 'Saxon\\XsltProcessor::getErrorCode' => + 'saxon\\xsltprocessor::geterrorcode' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\XsltProcessor::getErrorMessage' => + 'saxon\\xsltprocessor::geterrormessage' => array ( 0 => 'string', 'i' => 'int', ), - 'Saxon\\XsltProcessor::getExceptionCount' => + 'saxon\\xsltprocessor::getexceptioncount' => array ( 0 => 'int', ), - 'Saxon\\XsltProcessor::setOutputFile' => + 'saxon\\xsltprocessor::setoutputfile' => array ( 0 => 'void', 'fileName' => 'string', ), - 'Saxon\\XsltProcessor::setParameter' => + 'saxon\\xsltprocessor::setparameter' => array ( 0 => 'void', 'name' => 'string', 'value' => 'Saxon\\XdmValue', ), - 'Saxon\\XsltProcessor::setProperty' => + 'saxon\\xsltprocessor::setproperty' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Saxon\\XsltProcessor::setSourceFromFile' => + 'saxon\\xsltprocessor::setsourcefromfile' => array ( 0 => 'void', 'filename' => 'string', ), - 'Saxon\\XsltProcessor::setSourceFromXdmValue' => + 'saxon\\xsltprocessor::setsourcefromxdmvalue' => array ( 0 => 'void', 'value' => 'Saxon\\XdmValue', ), - 'Saxon\\XsltProcessor::transformFileToFile' => + 'saxon\\xsltprocessor::transformfiletofile' => array ( 0 => 'void', 'sourceFileName' => 'string', 'stylesheetFileName' => 'string', 'outputfileName' => 'string', ), - 'Saxon\\XsltProcessor::transformFileToString' => + 'saxon\\xsltprocessor::transformfiletostring' => array ( 0 => 'null|string', 'sourceFileName' => 'string', 'stylesheetFileName' => 'string', ), - 'Saxon\\XsltProcessor::transformFileToValue' => + 'saxon\\xsltprocessor::transformfiletovalue' => array ( 0 => 'Saxon\\XdmValue', 'fileName' => 'string', ), - 'Saxon\\XsltProcessor::transformToFile' => + 'saxon\\xsltprocessor::transformtofile' => array ( 0 => 'void', ), - 'Saxon\\XsltProcessor::transformToString' => + 'saxon\\xsltprocessor::transformtostring' => array ( 0 => 'string', ), - 'Saxon\\XsltProcessor::transformToValue' => + 'saxon\\xsltprocessor::transformtovalue' => array ( 0 => 'Saxon\\XdmValue|null', ), - 'SeasLog::__destruct' => + 'seaslog::__destruct' => array ( 0 => 'void', ), - 'SeasLog::alert' => + 'seaslog::alert' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::analyzerCount' => + 'seaslog::analyzercount' => array ( 0 => 'mixed', 'level' => 'string', 'log_path=' => 'string', 'key_word=' => 'string', ), - 'SeasLog::analyzerDetail' => + 'seaslog::analyzerdetail' => array ( 0 => 'mixed', 'level' => 'string', @@ -33282,81 +33282,81 @@ 'limit=' => 'int', 'order=' => 'int', ), - 'SeasLog::closeLoggerStream' => + 'seaslog::closeloggerstream' => array ( 0 => 'bool', 'model' => 'int', 'logger' => 'string', ), - 'SeasLog::critical' => + 'seaslog::critical' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::debug' => + 'seaslog::debug' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::emergency' => + 'seaslog::emergency' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::error' => + 'seaslog::error' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::flushBuffer' => + 'seaslog::flushbuffer' => array ( 0 => 'bool', ), - 'SeasLog::getBasePath' => + 'seaslog::getbasepath' => array ( 0 => 'string', ), - 'SeasLog::getBuffer' => + 'seaslog::getbuffer' => array ( 0 => 'array', ), - 'SeasLog::getBufferEnabled' => + 'seaslog::getbufferenabled' => array ( 0 => 'bool', ), - 'SeasLog::getDatetimeFormat' => + 'seaslog::getdatetimeformat' => array ( 0 => 'string', ), - 'SeasLog::getLastLogger' => + 'seaslog::getlastlogger' => array ( 0 => 'string', ), - 'SeasLog::getRequestID' => + 'seaslog::getrequestid' => array ( 0 => 'string', ), - 'SeasLog::getRequestVariable' => + 'seaslog::getrequestvariable' => array ( 0 => 'bool', 'key' => 'int', ), - 'SeasLog::info' => + 'seaslog::info' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::log' => + 'seaslog::log' => array ( 0 => 'bool', 'level' => 'string', @@ -33364,251 +33364,251 @@ 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::notice' => + 'seaslog::notice' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeasLog::setBasePath' => + 'seaslog::setbasepath' => array ( 0 => 'bool', 'base_path' => 'string', ), - 'SeasLog::setDatetimeFormat' => + 'seaslog::setdatetimeformat' => array ( 0 => 'bool', 'format' => 'string', ), - 'SeasLog::setLogger' => + 'seaslog::setlogger' => array ( 0 => 'bool', 'logger' => 'string', ), - 'SeasLog::setRequestID' => + 'seaslog::setrequestid' => array ( 0 => 'bool', 'request_id' => 'string', ), - 'SeasLog::setRequestVariable' => + 'seaslog::setrequestvariable' => array ( 0 => 'bool', 'key' => 'int', 'value' => 'string', ), - 'SeasLog::warning' => + 'seaslog::warning' => array ( 0 => 'bool', 'message' => 'string', 'content=' => 'array', 'logger=' => 'string', ), - 'SeekableIterator::__construct' => + 'seekableiterator::__construct' => array ( 0 => 'void', ), - 'SeekableIterator::current' => + 'seekableiterator::current' => array ( 0 => 'mixed', ), - 'SeekableIterator::key' => + 'seekableiterator::key' => array ( 0 => 'int|string', ), - 'SeekableIterator::next' => + 'seekableiterator::next' => array ( 0 => 'void', ), - 'SeekableIterator::rewind' => + 'seekableiterator::rewind' => array ( 0 => 'void', ), - 'SeekableIterator::seek' => + 'seekableiterator::seek' => array ( 0 => 'void', 'position' => 'int', ), - 'SeekableIterator::valid' => + 'seekableiterator::valid' => array ( 0 => 'bool', ), - 'Serializable::__construct' => + 'serializable::__construct' => array ( 0 => 'void', ), - 'Serializable::serialize' => + 'serializable::serialize' => array ( 0 => 'null|string', ), - 'Serializable::unserialize' => + 'serializable::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'ServerRequest::withInput' => + 'serverrequest::withinput' => array ( 0 => 'ServerRequest', 'input' => 'mixed', ), - 'ServerRequest::withParam' => + 'serverrequest::withparam' => array ( 0 => 'ServerRequest', 'key' => 'int|string', 'value' => 'mixed', ), - 'ServerRequest::withParams' => + 'serverrequest::withparams' => array ( 0 => 'ServerRequest', 'params' => 'mixed', ), - 'ServerRequest::withUrl' => + 'serverrequest::withurl' => array ( 0 => 'ServerRequest', 'url' => 'array', ), - 'ServerRequest::withoutParams' => + 'serverrequest::withoutparams' => array ( 0 => 'ServerRequest', 'params' => 'int|string', ), - 'ServerResponse::addHeader' => + 'serverresponse::addheader' => array ( 0 => 'void', 'label' => 'string', 'value' => 'string', ), - 'ServerResponse::date' => + 'serverresponse::date' => array ( 0 => 'string', 'date' => 'DateTimeInterface|string', ), - 'ServerResponse::getHeader' => + 'serverresponse::getheader' => array ( 0 => 'string', 'label' => 'string', ), - 'ServerResponse::getHeaders' => + 'serverresponse::getheaders' => array ( 0 => 'array', ), - 'ServerResponse::getStatus' => + 'serverresponse::getstatus' => array ( 0 => 'int', ), - 'ServerResponse::getVersion' => + 'serverresponse::getversion' => array ( 0 => 'string', ), - 'ServerResponse::setHeader' => + 'serverresponse::setheader' => array ( 0 => 'void', 'label' => 'string', 'value' => 'string', ), - 'ServerResponse::setStatus' => + 'serverresponse::setstatus' => array ( 0 => 'void', 'status' => 'int', ), - 'ServerResponse::setVersion' => + 'serverresponse::setversion' => array ( 0 => 'void', 'version' => 'string', ), - 'SessionHandler::close' => + 'sessionhandler::close' => array ( 0 => 'bool', ), - 'SessionHandler::create_sid' => + 'sessionhandler::create_sid' => array ( 0 => 'string', ), - 'SessionHandler::destroy' => + 'sessionhandler::destroy' => array ( 0 => 'bool', 'id' => 'string', ), - 'SessionHandler::gc' => + 'sessionhandler::gc' => array ( 0 => 'bool', 'max_lifetime' => 'int', ), - 'SessionHandler::open' => + 'sessionhandler::open' => array ( 0 => 'bool', 'path' => 'string', 'name' => 'string', ), - 'SessionHandler::read' => + 'sessionhandler::read' => array ( 0 => 'false|string', 'id' => 'string', ), - 'SessionHandler::write' => + 'sessionhandler::write' => array ( 0 => 'bool', 'id' => 'string', 'data' => 'string', ), - 'SessionHandlerInterface::close' => + 'sessionhandlerinterface::close' => array ( 0 => 'bool', ), - 'SessionHandlerInterface::destroy' => + 'sessionhandlerinterface::destroy' => array ( 0 => 'bool', 'id' => 'string', ), - 'SessionHandlerInterface::gc' => + 'sessionhandlerinterface::gc' => array ( 0 => 'false|int', 'max_lifetime' => 'int', ), - 'SessionHandlerInterface::open' => + 'sessionhandlerinterface::open' => array ( 0 => 'bool', 'path' => 'string', 'name' => 'string', ), - 'SessionHandlerInterface::read' => + 'sessionhandlerinterface::read' => array ( 0 => 'false|string', 'id' => 'string', ), - 'SessionHandlerInterface::write' => + 'sessionhandlerinterface::write' => array ( 0 => 'bool', 'id' => 'string', 'data' => 'string', ), - 'SessionIdInterface::create_sid' => + 'sessionidinterface::create_sid' => array ( 0 => 'string', ), - 'SessionUpdateTimestampHandler::updateTimestamp' => + 'sessionupdatetimestamphandler::updatetimestamp' => array ( 0 => 'bool', 'id' => 'string', 'data' => 'string', ), - 'SessionUpdateTimestampHandler::validateId' => + 'sessionupdatetimestamphandler::validateid' => array ( 0 => 'char', 'id' => 'string', ), - 'SessionUpdateTimestampHandlerInterface::updateTimestamp' => + 'sessionupdatetimestamphandlerinterface::updatetimestamp' => array ( 0 => 'bool', 'id' => 'string', 'data' => 'string', ), - 'SessionUpdateTimestampHandlerInterface::validateId' => + 'sessionupdatetimestamphandlerinterface::validateid' => array ( 0 => 'bool', 'id' => 'string', ), - 'SimpleXMLElement::__construct' => + 'simplexmlelement::__construct' => array ( 0 => 'void', 'data' => 'string', @@ -33617,153 +33617,153 @@ 'namespaceOrPrefix=' => 'string', 'isPrefix=' => 'bool', ), - 'SimpleXMLElement::__get' => + 'simplexmlelement::__get' => array ( 0 => 'SimpleXMLElement', 'name' => 'string', ), - 'SimpleXMLElement::__toString' => + 'simplexmlelement::__tostring' => array ( 0 => 'string', ), - 'SimpleXMLElement::addAttribute' => + 'simplexmlelement::addattribute' => array ( 0 => 'void', 'qualifiedName' => 'string', 'value' => 'string', 'namespace=' => 'null|string', ), - 'SimpleXMLElement::addChild' => + 'simplexmlelement::addchild' => array ( 0 => 'SimpleXMLElement|null', 'qualifiedName' => 'string', 'value=' => 'null|string', 'namespace=' => 'null|string', ), - 'SimpleXMLElement::asXML' => + 'simplexmlelement::asxml' => array ( 0 => 'bool|string', 'filename' => 'string', ), - 'SimpleXMLElement::asXML\'1' => + 'simplexmlelement::asxml\'1' => array ( 0 => 'false|string', ), - 'SimpleXMLElement::attributes' => + 'simplexmlelement::attributes' => array ( 0 => 'SimpleXMLElement|null', 'namespaceOrPrefix=' => 'null|string', 'isPrefix=' => 'bool', ), - 'SimpleXMLElement::children' => + 'simplexmlelement::children' => array ( 0 => 'SimpleXMLElement|null', 'namespaceOrPrefix=' => 'null|string', 'isPrefix=' => 'bool', ), - 'SimpleXMLElement::count' => + 'simplexmlelement::count' => array ( 0 => 'int', ), - 'SimpleXMLElement::getDocNamespaces' => + 'simplexmlelement::getdocnamespaces' => array ( 0 => 'array', 'recursive=' => 'bool', 'fromRoot=' => 'bool', ), - 'SimpleXMLElement::getName' => + 'simplexmlelement::getname' => array ( 0 => 'string', ), - 'SimpleXMLElement::getNamespaces' => + 'simplexmlelement::getnamespaces' => array ( 0 => 'array', 'recursive=' => 'bool', ), - 'SimpleXMLElement::offsetExists' => + 'simplexmlelement::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'SimpleXMLElement::offsetGet' => + 'simplexmlelement::offsetget' => array ( 0 => 'SimpleXMLElement', 'offset' => 'int|string', ), - 'SimpleXMLElement::offsetSet' => + 'simplexmlelement::offsetset' => array ( 0 => 'void', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'SimpleXMLElement::offsetUnset' => + 'simplexmlelement::offsetunset' => array ( 0 => 'void', 'offset' => 'int|string', ), - 'SimpleXMLElement::registerXPathNamespace' => + 'simplexmlelement::registerxpathnamespace' => array ( 0 => 'bool', 'prefix' => 'string', 'namespace' => 'string', ), - 'SimpleXMLElement::saveXML' => + 'simplexmlelement::savexml' => array ( 0 => 'bool|string', 'filename=' => 'string', ), - 'SimpleXMLElement::xpath' => + 'simplexmlelement::xpath' => array ( 0 => 'array|false|null', 'expression' => 'string', ), - 'SimpleXMLIterator::current' => + 'simplexmliterator::current' => array ( 0 => 'SimpleXMLIterator|null', ), - 'SimpleXMLIterator::getChildren' => + 'simplexmliterator::getchildren' => array ( 0 => 'SimpleXMLIterator|null', ), - 'SimpleXMLIterator::hasChildren' => + 'simplexmliterator::haschildren' => array ( 0 => 'bool', ), - 'SimpleXMLIterator::key' => + 'simplexmliterator::key' => array ( 0 => 'false|string', ), - 'SimpleXMLIterator::next' => + 'simplexmliterator::next' => array ( 0 => 'void', ), - 'SimpleXMLIterator::rewind' => + 'simplexmliterator::rewind' => array ( 0 => 'void', ), - 'SimpleXMLIterator::valid' => + 'simplexmliterator::valid' => array ( 0 => 'bool', ), - 'SoapClient::SoapClient' => + 'soapclient::soapclient' => array ( 0 => 'object', 'wsdl' => 'mixed', 'options=' => 'array|null', ), - 'SoapClient::__call' => + 'soapclient::__call' => array ( 0 => 'mixed', 'function_name' => 'string', 'arguments' => 'array', ), - 'SoapClient::__construct' => + 'soapclient::__construct' => array ( 0 => 'void', 'wsdl' => 'mixed', 'options=' => 'array|null', ), - 'SoapClient::__doRequest' => + 'soapclient::__dorequest' => array ( 0 => 'null|string', 'request' => 'string', @@ -33772,51 +33772,51 @@ 'version' => 'int', 'one_way=' => 'int', ), - 'SoapClient::__getCookies' => + 'soapclient::__getcookies' => array ( 0 => 'array', ), - 'SoapClient::__getFunctions' => + 'soapclient::__getfunctions' => array ( 0 => 'array|null', ), - 'SoapClient::__getLastRequest' => + 'soapclient::__getlastrequest' => array ( 0 => 'null|string', ), - 'SoapClient::__getLastRequestHeaders' => + 'soapclient::__getlastrequestheaders' => array ( 0 => 'null|string', ), - 'SoapClient::__getLastResponse' => + 'soapclient::__getlastresponse' => array ( 0 => 'null|string', ), - 'SoapClient::__getLastResponseHeaders' => + 'soapclient::__getlastresponseheaders' => array ( 0 => 'null|string', ), - 'SoapClient::__getTypes' => + 'soapclient::__gettypes' => array ( 0 => 'array|null', ), - 'SoapClient::__setCookie' => + 'soapclient::__setcookie' => array ( 0 => 'mixed', 'name' => 'string', 'value=' => 'string', ), - 'SoapClient::__setLocation' => + 'soapclient::__setlocation' => array ( 0 => 'string', 'new_location=' => 'string', ), - 'SoapClient::__setSoapHeaders' => + 'soapclient::__setsoapheaders' => array ( 0 => 'bool', 'soapheaders=' => 'mixed', ), - 'SoapClient::__soapCall' => + 'soapclient::__soapcall' => array ( 0 => 'mixed', 'function_name' => 'string', @@ -33825,7 +33825,7 @@ 'input_headers=' => 'SoapHeader|array', '&w_output_headers=' => 'array', ), - 'SoapFault::SoapFault' => + 'soapfault::soapfault' => array ( 0 => 'object', 'faultcode' => 'string', @@ -33835,11 +33835,11 @@ 'faultname=' => 'null|string', 'headerfault=' => 'mixed|null', ), - 'SoapFault::__clone' => + 'soapfault::__clone' => array ( 0 => 'void', ), - 'SoapFault::__construct' => + 'soapfault::__construct' => array ( 0 => 'void', 'code' => 'array|null|string', @@ -33849,43 +33849,43 @@ 'name=' => 'null|string', 'headerFault=' => 'mixed|null', ), - 'SoapFault::__toString' => + 'soapfault::__tostring' => array ( 0 => 'string', ), - 'SoapFault::__wakeup' => + 'soapfault::__wakeup' => array ( 0 => 'void', ), - 'SoapFault::getCode' => + 'soapfault::getcode' => array ( 0 => 'int', ), - 'SoapFault::getFile' => + 'soapfault::getfile' => array ( 0 => 'string', ), - 'SoapFault::getLine' => + 'soapfault::getline' => array ( 0 => 'int', ), - 'SoapFault::getMessage' => + 'soapfault::getmessage' => array ( 0 => 'string', ), - 'SoapFault::getPrevious' => + 'soapfault::getprevious' => array ( 0 => 'Exception|Throwable|null', ), - 'SoapFault::getTrace' => + 'soapfault::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'SoapFault::getTraceAsString' => + 'soapfault::gettraceasstring' => array ( 0 => 'string', ), - 'SoapHeader::SoapHeader' => + 'soapheader::soapheader' => array ( 0 => 'object', 'namespace' => 'string', @@ -33894,7 +33894,7 @@ 'mustunderstand=' => 'bool', 'actor=' => 'string', ), - 'SoapHeader::__construct' => + 'soapheader::__construct' => array ( 0 => 'void', 'namespace' => 'string', @@ -33903,41 +33903,41 @@ 'mustunderstand=' => 'bool', 'actor=' => 'string', ), - 'SoapParam::SoapParam' => + 'soapparam::soapparam' => array ( 0 => 'object', 'data' => 'mixed', 'name' => 'string', ), - 'SoapParam::__construct' => + 'soapparam::__construct' => array ( 0 => 'void', 'data' => 'mixed', 'name' => 'string', ), - 'SoapServer::SoapServer' => + 'soapserver::soapserver' => array ( 0 => 'object', 'wsdl' => 'null|string', 'options=' => 'array', ), - 'SoapServer::__construct' => + 'soapserver::__construct' => array ( 0 => 'void', 'wsdl' => 'null|string', 'options=' => 'array', ), - 'SoapServer::addFunction' => + 'soapserver::addfunction' => array ( 0 => 'void', 'functions' => 'mixed', ), - 'SoapServer::addSoapHeader' => + 'soapserver::addsoapheader' => array ( 0 => 'void', 'object' => 'SoapHeader', ), - 'SoapServer::fault' => + 'soapserver::fault' => array ( 0 => 'void', 'code' => 'string', @@ -33946,32 +33946,32 @@ 'details=' => 'string', 'name=' => 'string', ), - 'SoapServer::getFunctions' => + 'soapserver::getfunctions' => array ( 0 => 'array', ), - 'SoapServer::handle' => + 'soapserver::handle' => array ( 0 => 'void', 'soap_request=' => 'string', ), - 'SoapServer::setClass' => + 'soapserver::setclass' => array ( 0 => 'void', 'class_name' => 'string', '...args=' => 'mixed', ), - 'SoapServer::setObject' => + 'soapserver::setobject' => array ( 0 => 'void', 'object' => 'object', ), - 'SoapServer::setPersistence' => + 'soapserver::setpersistence' => array ( 0 => 'void', 'mode' => 'int', ), - 'SoapVar::SoapVar' => + 'soapvar::soapvar' => array ( 0 => 'object', 'data' => 'mixed', @@ -33981,7 +33981,7 @@ 'node_name=' => 'null|string', 'node_namespace=' => 'null|string', ), - 'SoapVar::__construct' => + 'soapvar::__construct' => array ( 0 => 'void', 'data' => 'mixed', @@ -33991,24 +33991,24 @@ 'node_name=' => 'null|string', 'node_namespace=' => 'null|string', ), - 'Sodium\\add' => + 'sodium\\add' => array ( 0 => 'void', '&left' => 'string', 'right' => 'string', ), - 'Sodium\\bin2hex' => + 'sodium\\bin2hex' => array ( 0 => 'string', 'binary' => 'string', ), - 'Sodium\\compare' => + 'sodium\\compare' => array ( 0 => 'int', 'left' => 'string', 'right' => 'string', ), - 'Sodium\\crypto_aead_aes256gcm_decrypt' => + 'sodium\\crypto_aead_aes256gcm_decrypt' => array ( 0 => 'false|string', 'msg' => 'string', @@ -34016,7 +34016,7 @@ 'key' => 'string', 'ad=' => 'string', ), - 'Sodium\\crypto_aead_aes256gcm_encrypt' => + 'sodium\\crypto_aead_aes256gcm_encrypt' => array ( 0 => 'string', 'msg' => 'string', @@ -34024,11 +34024,11 @@ 'key' => 'string', 'ad=' => 'string', ), - 'Sodium\\crypto_aead_aes256gcm_is_available' => + 'sodium\\crypto_aead_aes256gcm_is_available' => array ( 0 => 'bool', ), - 'Sodium\\crypto_aead_chacha20poly1305_decrypt' => + 'sodium\\crypto_aead_chacha20poly1305_decrypt' => array ( 0 => 'string', 'msg' => 'string', @@ -34036,7 +34036,7 @@ 'key' => 'string', 'ad=' => 'string', ), - 'Sodium\\crypto_aead_chacha20poly1305_encrypt' => + 'sodium\\crypto_aead_chacha20poly1305_encrypt' => array ( 0 => 'string', 'msg' => 'string', @@ -34044,101 +34044,101 @@ 'key' => 'string', 'ad=' => 'string', ), - 'Sodium\\crypto_auth' => + 'sodium\\crypto_auth' => array ( 0 => 'string', 'msg' => 'string', 'key' => 'string', ), - 'Sodium\\crypto_auth_verify' => + 'sodium\\crypto_auth_verify' => array ( 0 => 'bool', 'mac' => 'string', 'msg' => 'string', 'key' => 'string', ), - 'Sodium\\crypto_box' => + 'sodium\\crypto_box' => array ( 0 => 'string', 'msg' => 'string', 'nonce' => 'string', 'keypair' => 'string', ), - 'Sodium\\crypto_box_keypair' => + 'sodium\\crypto_box_keypair' => array ( 0 => 'string', ), - 'Sodium\\crypto_box_keypair_from_secretkey_and_publickey' => + 'sodium\\crypto_box_keypair_from_secretkey_and_publickey' => array ( 0 => 'string', 'secretkey' => 'string', 'publickey' => 'string', ), - 'Sodium\\crypto_box_open' => + 'sodium\\crypto_box_open' => array ( 0 => 'string', 'msg' => 'string', 'nonce' => 'string', 'keypair' => 'string', ), - 'Sodium\\crypto_box_publickey' => + 'sodium\\crypto_box_publickey' => array ( 0 => 'string', 'keypair' => 'string', ), - 'Sodium\\crypto_box_publickey_from_secretkey' => + 'sodium\\crypto_box_publickey_from_secretkey' => array ( 0 => 'string', 'secretkey' => 'string', ), - 'Sodium\\crypto_box_seal' => + 'sodium\\crypto_box_seal' => array ( 0 => 'string', 'message' => 'string', 'publickey' => 'string', ), - 'Sodium\\crypto_box_seal_open' => + 'sodium\\crypto_box_seal_open' => array ( 0 => 'string', 'encrypted' => 'string', 'keypair' => 'string', ), - 'Sodium\\crypto_box_secretkey' => + 'sodium\\crypto_box_secretkey' => array ( 0 => 'string', 'keypair' => 'string', ), - 'Sodium\\crypto_box_seed_keypair' => + 'sodium\\crypto_box_seed_keypair' => array ( 0 => 'string', 'seed' => 'string', ), - 'Sodium\\crypto_generichash' => + 'sodium\\crypto_generichash' => array ( 0 => 'string', 'input' => 'string', 'key=' => 'string', 'length=' => 'int', ), - 'Sodium\\crypto_generichash_final' => + 'sodium\\crypto_generichash_final' => array ( 0 => 'string', 'state' => 'string', 'length=' => 'int', ), - 'Sodium\\crypto_generichash_init' => + 'sodium\\crypto_generichash_init' => array ( 0 => 'string', 'key=' => 'string', 'length=' => 'int', ), - 'Sodium\\crypto_generichash_update' => + 'sodium\\crypto_generichash_update' => array ( 0 => 'bool', '&hashState' => 'string', 'append' => 'string', ), - 'Sodium\\crypto_kx' => + 'sodium\\crypto_kx' => array ( 0 => 'string', 'secretkey' => 'string', @@ -34146,7 +34146,7 @@ 'client_publickey' => 'string', 'server_publickey' => 'string', ), - 'Sodium\\crypto_pwhash' => + 'sodium\\crypto_pwhash' => array ( 0 => 'string', 'out_len' => 'int', @@ -34155,7 +34155,7 @@ 'opslimit' => 'int', 'memlimit' => 'int', ), - 'Sodium\\crypto_pwhash_scryptsalsa208sha256' => + 'sodium\\crypto_pwhash_scryptsalsa208sha256' => array ( 0 => 'string', 'out_len' => 'int', @@ -34164,3441 +34164,3441 @@ 'opslimit' => 'int', 'memlimit' => 'int', ), - 'Sodium\\crypto_pwhash_scryptsalsa208sha256_str' => + 'sodium\\crypto_pwhash_scryptsalsa208sha256_str' => array ( 0 => 'string', 'passwd' => 'string', 'opslimit' => 'int', 'memlimit' => 'int', ), - 'Sodium\\crypto_pwhash_scryptsalsa208sha256_str_verify' => + 'sodium\\crypto_pwhash_scryptsalsa208sha256_str_verify' => array ( 0 => 'bool', 'hash' => 'string', 'passwd' => 'string', ), - 'Sodium\\crypto_pwhash_str' => + 'sodium\\crypto_pwhash_str' => array ( 0 => 'string', 'passwd' => 'string', 'opslimit' => 'int', 'memlimit' => 'int', ), - 'Sodium\\crypto_pwhash_str_verify' => + 'sodium\\crypto_pwhash_str_verify' => array ( 0 => 'bool', 'hash' => 'string', 'passwd' => 'string', ), - 'Sodium\\crypto_scalarmult' => + 'sodium\\crypto_scalarmult' => array ( 0 => 'string', 'ecdhA' => 'string', 'ecdhB' => 'string', ), - 'Sodium\\crypto_scalarmult_base' => + 'sodium\\crypto_scalarmult_base' => array ( 0 => 'string', 'sk' => 'string', ), - 'Sodium\\crypto_secretbox' => + 'sodium\\crypto_secretbox' => array ( 0 => 'string', 'plaintext' => 'string', 'nonce' => 'string', 'key' => 'string', ), - 'Sodium\\crypto_secretbox_open' => + 'sodium\\crypto_secretbox_open' => array ( 0 => 'string', 'ciphertext' => 'string', 'nonce' => 'string', 'key' => 'string', ), - 'Sodium\\crypto_shorthash' => + 'sodium\\crypto_shorthash' => array ( 0 => 'string', 'message' => 'string', 'key' => 'string', ), - 'Sodium\\crypto_sign' => + 'sodium\\crypto_sign' => array ( 0 => 'string', 'message' => 'string', 'secretkey' => 'string', ), - 'Sodium\\crypto_sign_detached' => + 'sodium\\crypto_sign_detached' => array ( 0 => 'string', 'message' => 'string', 'secretkey' => 'string', ), - 'Sodium\\crypto_sign_ed25519_pk_to_curve25519' => + 'sodium\\crypto_sign_ed25519_pk_to_curve25519' => array ( 0 => 'string', 'sign_pk' => 'string', ), - 'Sodium\\crypto_sign_ed25519_sk_to_curve25519' => + 'sodium\\crypto_sign_ed25519_sk_to_curve25519' => array ( 0 => 'string', 'sign_sk' => 'string', ), - 'Sodium\\crypto_sign_keypair' => + 'sodium\\crypto_sign_keypair' => array ( 0 => 'string', ), - 'Sodium\\crypto_sign_keypair_from_secretkey_and_publickey' => + 'sodium\\crypto_sign_keypair_from_secretkey_and_publickey' => array ( 0 => 'string', 'secretkey' => 'string', 'publickey' => 'string', ), - 'Sodium\\crypto_sign_open' => + 'sodium\\crypto_sign_open' => array ( 0 => 'false|string', 'signed_message' => 'string', 'publickey' => 'string', ), - 'Sodium\\crypto_sign_publickey' => + 'sodium\\crypto_sign_publickey' => array ( 0 => 'string', 'keypair' => 'string', ), - 'Sodium\\crypto_sign_publickey_from_secretkey' => + 'sodium\\crypto_sign_publickey_from_secretkey' => array ( 0 => 'string', 'secretkey' => 'string', ), - 'Sodium\\crypto_sign_secretkey' => + 'sodium\\crypto_sign_secretkey' => array ( 0 => 'string', 'keypair' => 'string', ), - 'Sodium\\crypto_sign_seed_keypair' => + 'sodium\\crypto_sign_seed_keypair' => array ( 0 => 'string', 'seed' => 'string', ), - 'Sodium\\crypto_sign_verify_detached' => + 'sodium\\crypto_sign_verify_detached' => array ( 0 => 'bool', 'signature' => 'string', 'msg' => 'string', 'publickey' => 'string', ), - 'Sodium\\crypto_stream' => + 'sodium\\crypto_stream' => array ( 0 => 'string', 'length' => 'int', 'nonce' => 'string', 'key' => 'string', ), - 'Sodium\\crypto_stream_xor' => + 'sodium\\crypto_stream_xor' => array ( 0 => 'string', 'plaintext' => 'string', 'nonce' => 'string', 'key' => 'string', ), - 'Sodium\\hex2bin' => + 'sodium\\hex2bin' => array ( 0 => 'string', 'hex' => 'string', ), - 'Sodium\\increment' => + 'sodium\\increment' => array ( 0 => 'string', '&nonce' => 'string', ), - 'Sodium\\library_version_major' => + 'sodium\\library_version_major' => array ( 0 => 'int', ), - 'Sodium\\library_version_minor' => + 'sodium\\library_version_minor' => array ( 0 => 'int', ), - 'Sodium\\memcmp' => + 'sodium\\memcmp' => array ( 0 => 'int', 'left' => 'string', 'right' => 'string', ), - 'Sodium\\memzero' => + 'sodium\\memzero' => array ( 0 => 'void', '&target' => 'string', ), - 'Sodium\\randombytes_buf' => + 'sodium\\randombytes_buf' => array ( 0 => 'string', 'length' => 'int', ), - 'Sodium\\randombytes_random16' => + 'sodium\\randombytes_random16' => array ( 0 => 'int|string', ), - 'Sodium\\randombytes_uniform' => + 'sodium\\randombytes_uniform' => array ( 0 => 'int', 'upperBoundNonInclusive' => 'int', ), - 'Sodium\\version_string' => + 'sodium\\version_string' => array ( 0 => 'string', ), - 'SolrClient::__construct' => + 'solrclient::__construct' => array ( 0 => 'void', 'clientOptions' => 'array', ), - 'SolrClient::__destruct' => + 'solrclient::__destruct' => array ( 0 => 'void', ), - 'SolrClient::addDocument' => + 'solrclient::adddocument' => array ( 0 => 'SolrUpdateResponse', 'doc' => 'SolrInputDocument', 'allowdups=' => 'bool', 'commitwithin=' => 'int', ), - 'SolrClient::addDocuments' => + 'solrclient::adddocuments' => array ( 0 => 'SolrUpdateResponse', 'docs' => 'array', 'allowdups=' => 'bool', 'commitwithin=' => 'int', ), - 'SolrClient::commit' => + 'solrclient::commit' => array ( 0 => 'SolrUpdateResponse', 'maxsegments=' => 'int', 'waitflush=' => 'bool', 'waitsearcher=' => 'bool', ), - 'SolrClient::deleteById' => + 'solrclient::deletebyid' => array ( 0 => 'SolrUpdateResponse', 'id' => 'string', ), - 'SolrClient::deleteByIds' => + 'solrclient::deletebyids' => array ( 0 => 'SolrUpdateResponse', 'ids' => 'array', ), - 'SolrClient::deleteByQueries' => + 'solrclient::deletebyqueries' => array ( 0 => 'SolrUpdateResponse', 'queries' => 'array', ), - 'SolrClient::deleteByQuery' => + 'solrclient::deletebyquery' => array ( 0 => 'SolrUpdateResponse', 'query' => 'string', ), - 'SolrClient::getById' => + 'solrclient::getbyid' => array ( 0 => 'SolrQueryResponse', 'id' => 'string', ), - 'SolrClient::getByIds' => + 'solrclient::getbyids' => array ( 0 => 'SolrQueryResponse', 'ids' => 'array', ), - 'SolrClient::getDebug' => + 'solrclient::getdebug' => array ( 0 => 'string', ), - 'SolrClient::getOptions' => + 'solrclient::getoptions' => array ( 0 => 'array', ), - 'SolrClient::optimize' => + 'solrclient::optimize' => array ( 0 => 'SolrUpdateResponse', 'maxsegments=' => 'int', 'waitflush=' => 'bool', 'waitsearcher=' => 'bool', ), - 'SolrClient::ping' => + 'solrclient::ping' => array ( 0 => 'SolrPingResponse', ), - 'SolrClient::query' => + 'solrclient::query' => array ( 0 => 'SolrQueryResponse', 'query' => 'SolrParams', ), - 'SolrClient::request' => + 'solrclient::request' => array ( 0 => 'SolrUpdateResponse', 'raw_request' => 'string', ), - 'SolrClient::rollback' => + 'solrclient::rollback' => array ( 0 => 'SolrUpdateResponse', ), - 'SolrClient::setResponseWriter' => + 'solrclient::setresponsewriter' => array ( 0 => 'void', 'responsewriter' => 'string', ), - 'SolrClient::setServlet' => + 'solrclient::setservlet' => array ( 0 => 'bool', 'type' => 'int', 'value' => 'string', ), - 'SolrClient::system' => + 'solrclient::system' => array ( 0 => 'SolrGenericResponse', ), - 'SolrClient::threads' => + 'solrclient::threads' => array ( 0 => 'SolrGenericResponse', ), - 'SolrClientException::__clone' => + 'solrclientexception::__clone' => array ( 0 => 'void', ), - 'SolrClientException::__construct' => + 'solrclientexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'SolrClientException::__toString' => + 'solrclientexception::__tostring' => array ( 0 => 'string', ), - 'SolrClientException::__wakeup' => + 'solrclientexception::__wakeup' => array ( 0 => 'void', ), - 'SolrClientException::getCode' => + 'solrclientexception::getcode' => array ( 0 => 'int', ), - 'SolrClientException::getFile' => + 'solrclientexception::getfile' => array ( 0 => 'string', ), - 'SolrClientException::getInternalInfo' => + 'solrclientexception::getinternalinfo' => array ( 0 => 'array', ), - 'SolrClientException::getLine' => + 'solrclientexception::getline' => array ( 0 => 'int', ), - 'SolrClientException::getMessage' => + 'solrclientexception::getmessage' => array ( 0 => 'string', ), - 'SolrClientException::getPrevious' => + 'solrclientexception::getprevious' => array ( 0 => 'Exception|Throwable|null', ), - 'SolrClientException::getTrace' => + 'solrclientexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'SolrClientException::getTraceAsString' => + 'solrclientexception::gettraceasstring' => array ( 0 => 'string', ), - 'SolrCollapseFunction::__construct' => + 'solrcollapsefunction::__construct' => array ( 0 => 'void', 'field' => 'string', ), - 'SolrCollapseFunction::__toString' => + 'solrcollapsefunction::__tostring' => array ( 0 => 'string', ), - 'SolrCollapseFunction::getField' => + 'solrcollapsefunction::getfield' => array ( 0 => 'string', ), - 'SolrCollapseFunction::getHint' => + 'solrcollapsefunction::gethint' => array ( 0 => 'string', ), - 'SolrCollapseFunction::getMax' => + 'solrcollapsefunction::getmax' => array ( 0 => 'string', ), - 'SolrCollapseFunction::getMin' => + 'solrcollapsefunction::getmin' => array ( 0 => 'string', ), - 'SolrCollapseFunction::getNullPolicy' => + 'solrcollapsefunction::getnullpolicy' => array ( 0 => 'string', ), - 'SolrCollapseFunction::getSize' => + 'solrcollapsefunction::getsize' => array ( 0 => 'int', ), - 'SolrCollapseFunction::setField' => + 'solrcollapsefunction::setfield' => array ( 0 => 'SolrCollapseFunction', 'fieldName' => 'string', ), - 'SolrCollapseFunction::setHint' => + 'solrcollapsefunction::sethint' => array ( 0 => 'SolrCollapseFunction', 'hint' => 'string', ), - 'SolrCollapseFunction::setMax' => + 'solrcollapsefunction::setmax' => array ( 0 => 'SolrCollapseFunction', 'max' => 'string', ), - 'SolrCollapseFunction::setMin' => + 'solrcollapsefunction::setmin' => array ( 0 => 'SolrCollapseFunction', 'min' => 'string', ), - 'SolrCollapseFunction::setNullPolicy' => + 'solrcollapsefunction::setnullpolicy' => array ( 0 => 'SolrCollapseFunction', 'nullPolicy' => 'string', ), - 'SolrCollapseFunction::setSize' => + 'solrcollapsefunction::setsize' => array ( 0 => 'SolrCollapseFunction', 'size' => 'int', ), - 'SolrDisMaxQuery::__construct' => + 'solrdismaxquery::__construct' => array ( 0 => 'void', 'q=' => 'string', ), - 'SolrDisMaxQuery::__destruct' => + 'solrdismaxquery::__destruct' => array ( 0 => 'void', ), - 'SolrDisMaxQuery::add' => + 'solrdismaxquery::add' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'string', ), - 'SolrDisMaxQuery::addBigramPhraseField' => + 'solrdismaxquery::addbigramphrasefield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', 'boost' => 'string', 'slop=' => 'string', ), - 'SolrDisMaxQuery::addBoostQuery' => + 'solrdismaxquery::addboostquery' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', 'value' => 'string', 'boost=' => 'string', ), - 'SolrDisMaxQuery::addExpandFilterQuery' => + 'solrdismaxquery::addexpandfilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrDisMaxQuery::addExpandSortField' => + 'solrdismaxquery::addexpandsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'order' => 'string', ), - 'SolrDisMaxQuery::addFacetDateField' => + 'solrdismaxquery::addfacetdatefield' => array ( 0 => 'SolrQuery', 'dateField' => 'string', ), - 'SolrDisMaxQuery::addFacetDateOther' => + 'solrdismaxquery::addfacetdateother' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::addFacetField' => + 'solrdismaxquery::addfacetfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::addFacetQuery' => + 'solrdismaxquery::addfacetquery' => array ( 0 => 'SolrQuery', 'facetQuery' => 'string', ), - 'SolrDisMaxQuery::addField' => + 'solrdismaxquery::addfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::addFilterQuery' => + 'solrdismaxquery::addfilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrDisMaxQuery::addGroupField' => + 'solrdismaxquery::addgroupfield' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::addGroupFunction' => + 'solrdismaxquery::addgroupfunction' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::addGroupQuery' => + 'solrdismaxquery::addgroupquery' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::addGroupSortField' => + 'solrdismaxquery::addgroupsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'order' => 'int', ), - 'SolrDisMaxQuery::addHighlightField' => + 'solrdismaxquery::addhighlightfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::addMltField' => + 'solrdismaxquery::addmltfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::addMltQueryField' => + 'solrdismaxquery::addmltqueryfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'boost' => 'float', ), - 'SolrDisMaxQuery::addParam' => + 'solrdismaxquery::addparam' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'string', ), - 'SolrDisMaxQuery::addPhraseField' => + 'solrdismaxquery::addphrasefield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', 'boost' => 'string', 'slop=' => 'string', ), - 'SolrDisMaxQuery::addQueryField' => + 'solrdismaxquery::addqueryfield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', 'boost=' => 'string', ), - 'SolrDisMaxQuery::addSortField' => + 'solrdismaxquery::addsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'order=' => 'int', ), - 'SolrDisMaxQuery::addStatsFacet' => + 'solrdismaxquery::addstatsfacet' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::addStatsField' => + 'solrdismaxquery::addstatsfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::addTrigramPhraseField' => + 'solrdismaxquery::addtrigramphrasefield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', 'boost' => 'string', 'slop=' => 'string', ), - 'SolrDisMaxQuery::addUserField' => + 'solrdismaxquery::adduserfield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::collapse' => + 'solrdismaxquery::collapse' => array ( 0 => 'SolrQuery', 'collapseFunction' => 'SolrCollapseFunction', ), - 'SolrDisMaxQuery::get' => + 'solrdismaxquery::get' => array ( 0 => 'mixed', 'param_name' => 'string', ), - 'SolrDisMaxQuery::getExpand' => + 'solrdismaxquery::getexpand' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getExpandFilterQueries' => + 'solrdismaxquery::getexpandfilterqueries' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getExpandQuery' => + 'solrdismaxquery::getexpandquery' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getExpandRows' => + 'solrdismaxquery::getexpandrows' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getExpandSortFields' => + 'solrdismaxquery::getexpandsortfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getFacet' => + 'solrdismaxquery::getfacet' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getFacetDateEnd' => + 'solrdismaxquery::getfacetdateend' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetDateFields' => + 'solrdismaxquery::getfacetdatefields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getFacetDateGap' => + 'solrdismaxquery::getfacetdategap' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetDateHardEnd' => + 'solrdismaxquery::getfacetdatehardend' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetDateOther' => + 'solrdismaxquery::getfacetdateother' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetDateStart' => + 'solrdismaxquery::getfacetdatestart' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetFields' => + 'solrdismaxquery::getfacetfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getFacetLimit' => + 'solrdismaxquery::getfacetlimit' => array ( 0 => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetMethod' => + 'solrdismaxquery::getfacetmethod' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetMinCount' => + 'solrdismaxquery::getfacetmincount' => array ( 0 => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetMissing' => + 'solrdismaxquery::getfacetmissing' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetOffset' => + 'solrdismaxquery::getfacetoffset' => array ( 0 => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetPrefix' => + 'solrdismaxquery::getfacetprefix' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFacetQueries' => + 'solrdismaxquery::getfacetqueries' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getFacetSort' => + 'solrdismaxquery::getfacetsort' => array ( 0 => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getFields' => + 'solrdismaxquery::getfields' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getFilterQueries' => + 'solrdismaxquery::getfilterqueries' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getGroup' => + 'solrdismaxquery::getgroup' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getGroupCachePercent' => + 'solrdismaxquery::getgroupcachepercent' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getGroupFacet' => + 'solrdismaxquery::getgroupfacet' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getGroupFields' => + 'solrdismaxquery::getgroupfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getGroupFormat' => + 'solrdismaxquery::getgroupformat' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getGroupFunctions' => + 'solrdismaxquery::getgroupfunctions' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getGroupLimit' => + 'solrdismaxquery::getgrouplimit' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getGroupMain' => + 'solrdismaxquery::getgroupmain' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getGroupNGroups' => + 'solrdismaxquery::getgroupngroups' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getGroupOffset' => + 'solrdismaxquery::getgroupoffset' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getGroupQueries' => + 'solrdismaxquery::getgroupqueries' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getGroupSortFields' => + 'solrdismaxquery::getgroupsortfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getGroupTruncate' => + 'solrdismaxquery::getgrouptruncate' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getHighlight' => + 'solrdismaxquery::gethighlight' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getHighlightAlternateField' => + 'solrdismaxquery::gethighlightalternatefield' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightFields' => + 'solrdismaxquery::gethighlightfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getHighlightFormatter' => + 'solrdismaxquery::gethighlightformatter' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightFragmenter' => + 'solrdismaxquery::gethighlightfragmenter' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightFragsize' => + 'solrdismaxquery::gethighlightfragsize' => array ( 0 => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightHighlightMultiTerm' => + 'solrdismaxquery::gethighlighthighlightmultiterm' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getHighlightMaxAlternateFieldLength' => + 'solrdismaxquery::gethighlightmaxalternatefieldlength' => array ( 0 => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightMaxAnalyzedChars' => + 'solrdismaxquery::gethighlightmaxanalyzedchars' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getHighlightMergeContiguous' => + 'solrdismaxquery::gethighlightmergecontiguous' => array ( 0 => 'bool', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightRegexMaxAnalyzedChars' => + 'solrdismaxquery::gethighlightregexmaxanalyzedchars' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getHighlightRegexPattern' => + 'solrdismaxquery::gethighlightregexpattern' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getHighlightRegexSlop' => + 'solrdismaxquery::gethighlightregexslop' => array ( 0 => 'float', ), - 'SolrDisMaxQuery::getHighlightRequireFieldMatch' => + 'solrdismaxquery::gethighlightrequirefieldmatch' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getHighlightSimplePost' => + 'solrdismaxquery::gethighlightsimplepost' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightSimplePre' => + 'solrdismaxquery::gethighlightsimplepre' => array ( 0 => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightSnippets' => + 'solrdismaxquery::gethighlightsnippets' => array ( 0 => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::getHighlightUsePhraseHighlighter' => + 'solrdismaxquery::gethighlightusephrasehighlighter' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getMlt' => + 'solrdismaxquery::getmlt' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getMltBoost' => + 'solrdismaxquery::getmltboost' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getMltCount' => + 'solrdismaxquery::getmltcount' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getMltFields' => + 'solrdismaxquery::getmltfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getMltMaxNumQueryTerms' => + 'solrdismaxquery::getmltmaxnumqueryterms' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getMltMaxNumTokens' => + 'solrdismaxquery::getmltmaxnumtokens' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getMltMaxWordLength' => + 'solrdismaxquery::getmltmaxwordlength' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getMltMinDocFrequency' => + 'solrdismaxquery::getmltmindocfrequency' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getMltMinTermFrequency' => + 'solrdismaxquery::getmltmintermfrequency' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getMltMinWordLength' => + 'solrdismaxquery::getmltminwordlength' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getMltQueryFields' => + 'solrdismaxquery::getmltqueryfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getParam' => + 'solrdismaxquery::getparam' => array ( 0 => 'mixed', 'param_name' => 'string', ), - 'SolrDisMaxQuery::getParams' => + 'solrdismaxquery::getparams' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getPreparedParams' => + 'solrdismaxquery::getpreparedparams' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getQuery' => + 'solrdismaxquery::getquery' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getRows' => + 'solrdismaxquery::getrows' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getSortFields' => + 'solrdismaxquery::getsortfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getStart' => + 'solrdismaxquery::getstart' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getStats' => + 'solrdismaxquery::getstats' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getStatsFacets' => + 'solrdismaxquery::getstatsfacets' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getStatsFields' => + 'solrdismaxquery::getstatsfields' => array ( 0 => 'array', ), - 'SolrDisMaxQuery::getTerms' => + 'solrdismaxquery::getterms' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getTermsField' => + 'solrdismaxquery::gettermsfield' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getTermsIncludeLowerBound' => + 'solrdismaxquery::gettermsincludelowerbound' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getTermsIncludeUpperBound' => + 'solrdismaxquery::gettermsincludeupperbound' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getTermsLimit' => + 'solrdismaxquery::gettermslimit' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getTermsLowerBound' => + 'solrdismaxquery::gettermslowerbound' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getTermsMaxCount' => + 'solrdismaxquery::gettermsmaxcount' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getTermsMinCount' => + 'solrdismaxquery::gettermsmincount' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getTermsPrefix' => + 'solrdismaxquery::gettermsprefix' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getTermsReturnRaw' => + 'solrdismaxquery::gettermsreturnraw' => array ( 0 => 'bool', ), - 'SolrDisMaxQuery::getTermsSort' => + 'solrdismaxquery::gettermssort' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::getTermsUpperBound' => + 'solrdismaxquery::gettermsupperbound' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::getTimeAllowed' => + 'solrdismaxquery::gettimeallowed' => array ( 0 => 'int', ), - 'SolrDisMaxQuery::removeBigramPhraseField' => + 'solrdismaxquery::removebigramphrasefield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeBoostQuery' => + 'solrdismaxquery::removeboostquery' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeExpandFilterQuery' => + 'solrdismaxquery::removeexpandfilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrDisMaxQuery::removeExpandSortField' => + 'solrdismaxquery::removeexpandsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeFacetDateField' => + 'solrdismaxquery::removefacetdatefield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeFacetDateOther' => + 'solrdismaxquery::removefacetdateother' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::removeFacetField' => + 'solrdismaxquery::removefacetfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeFacetQuery' => + 'solrdismaxquery::removefacetquery' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::removeField' => + 'solrdismaxquery::removefield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeFilterQuery' => + 'solrdismaxquery::removefilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrDisMaxQuery::removeHighlightField' => + 'solrdismaxquery::removehighlightfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeMltField' => + 'solrdismaxquery::removemltfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeMltQueryField' => + 'solrdismaxquery::removemltqueryfield' => array ( 0 => 'SolrQuery', 'queryField' => 'string', ), - 'SolrDisMaxQuery::removePhraseField' => + 'solrdismaxquery::removephrasefield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeQueryField' => + 'solrdismaxquery::removequeryfield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeSortField' => + 'solrdismaxquery::removesortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeStatsFacet' => + 'solrdismaxquery::removestatsfacet' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::removeStatsField' => + 'solrdismaxquery::removestatsfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeTrigramPhraseField' => + 'solrdismaxquery::removetrigramphrasefield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::removeUserField' => + 'solrdismaxquery::removeuserfield' => array ( 0 => 'SolrDisMaxQuery', 'field' => 'string', ), - 'SolrDisMaxQuery::serialize' => + 'solrdismaxquery::serialize' => array ( 0 => 'string', ), - 'SolrDisMaxQuery::set' => + 'solrdismaxquery::set' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'mixed', ), - 'SolrDisMaxQuery::setBigramPhraseFields' => + 'solrdismaxquery::setbigramphrasefields' => array ( 0 => 'SolrDisMaxQuery', 'fields' => 'string', ), - 'SolrDisMaxQuery::setBigramPhraseSlop' => + 'solrdismaxquery::setbigramphraseslop' => array ( 0 => 'SolrDisMaxQuery', 'slop' => 'string', ), - 'SolrDisMaxQuery::setBoostFunction' => + 'solrdismaxquery::setboostfunction' => array ( 0 => 'SolrDisMaxQuery', 'function' => 'string', ), - 'SolrDisMaxQuery::setBoostQuery' => + 'solrdismaxquery::setboostquery' => array ( 0 => 'SolrDisMaxQuery', 'q' => 'string', ), - 'SolrDisMaxQuery::setEchoHandler' => + 'solrdismaxquery::setechohandler' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setEchoParams' => + 'solrdismaxquery::setechoparams' => array ( 0 => 'SolrQuery', 'type' => 'string', ), - 'SolrDisMaxQuery::setExpand' => + 'solrdismaxquery::setexpand' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrDisMaxQuery::setExpandQuery' => + 'solrdismaxquery::setexpandquery' => array ( 0 => 'SolrQuery', 'q' => 'string', ), - 'SolrDisMaxQuery::setExpandRows' => + 'solrdismaxquery::setexpandrows' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrDisMaxQuery::setExplainOther' => + 'solrdismaxquery::setexplainother' => array ( 0 => 'SolrQuery', 'query' => 'string', ), - 'SolrDisMaxQuery::setFacet' => + 'solrdismaxquery::setfacet' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setFacetDateEnd' => + 'solrdismaxquery::setfacetdateend' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetDateGap' => + 'solrdismaxquery::setfacetdategap' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetDateHardEnd' => + 'solrdismaxquery::setfacetdatehardend' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetDateStart' => + 'solrdismaxquery::setfacetdatestart' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetEnumCacheMinDefaultFrequency' => + 'solrdismaxquery::setfacetenumcachemindefaultfrequency' => array ( 0 => 'SolrQuery', 'frequency' => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetLimit' => + 'solrdismaxquery::setfacetlimit' => array ( 0 => 'SolrQuery', 'limit' => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetMethod' => + 'solrdismaxquery::setfacetmethod' => array ( 0 => 'SolrQuery', 'method' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetMinCount' => + 'solrdismaxquery::setfacetmincount' => array ( 0 => 'SolrQuery', 'mincount' => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetMissing' => + 'solrdismaxquery::setfacetmissing' => array ( 0 => 'SolrQuery', 'flag' => 'bool', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetOffset' => + 'solrdismaxquery::setfacetoffset' => array ( 0 => 'SolrQuery', 'offset' => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetPrefix' => + 'solrdismaxquery::setfacetprefix' => array ( 0 => 'SolrQuery', 'prefix' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setFacetSort' => + 'solrdismaxquery::setfacetsort' => array ( 0 => 'SolrQuery', 'facetSort' => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setGroup' => + 'solrdismaxquery::setgroup' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrDisMaxQuery::setGroupCachePercent' => + 'solrdismaxquery::setgroupcachepercent' => array ( 0 => 'SolrQuery', 'percent' => 'int', ), - 'SolrDisMaxQuery::setGroupFacet' => + 'solrdismaxquery::setgroupfacet' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrDisMaxQuery::setGroupFormat' => + 'solrdismaxquery::setgroupformat' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::setGroupLimit' => + 'solrdismaxquery::setgrouplimit' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrDisMaxQuery::setGroupMain' => + 'solrdismaxquery::setgroupmain' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::setGroupNGroups' => + 'solrdismaxquery::setgroupngroups' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrDisMaxQuery::setGroupOffset' => + 'solrdismaxquery::setgroupoffset' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrDisMaxQuery::setGroupTruncate' => + 'solrdismaxquery::setgrouptruncate' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrDisMaxQuery::setHighlight' => + 'solrdismaxquery::sethighlight' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setHighlightAlternateField' => + 'solrdismaxquery::sethighlightalternatefield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightFormatter' => + 'solrdismaxquery::sethighlightformatter' => array ( 0 => 'SolrQuery', 'formatter' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightFragmenter' => + 'solrdismaxquery::sethighlightfragmenter' => array ( 0 => 'SolrQuery', 'fragmenter' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightFragsize' => + 'solrdismaxquery::sethighlightfragsize' => array ( 0 => 'SolrQuery', 'size' => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightHighlightMultiTerm' => + 'solrdismaxquery::sethighlighthighlightmultiterm' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setHighlightMaxAlternateFieldLength' => + 'solrdismaxquery::sethighlightmaxalternatefieldlength' => array ( 0 => 'SolrQuery', 'fieldLength' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightMaxAnalyzedChars' => + 'solrdismaxquery::sethighlightmaxanalyzedchars' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrDisMaxQuery::setHighlightMergeContiguous' => + 'solrdismaxquery::sethighlightmergecontiguous' => array ( 0 => 'SolrQuery', 'flag' => 'bool', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightRegexMaxAnalyzedChars' => + 'solrdismaxquery::sethighlightregexmaxanalyzedchars' => array ( 0 => 'SolrQuery', 'maxAnalyzedChars' => 'int', ), - 'SolrDisMaxQuery::setHighlightRegexPattern' => + 'solrdismaxquery::sethighlightregexpattern' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::setHighlightRegexSlop' => + 'solrdismaxquery::sethighlightregexslop' => array ( 0 => 'SolrQuery', 'factor' => 'float', ), - 'SolrDisMaxQuery::setHighlightRequireFieldMatch' => + 'solrdismaxquery::sethighlightrequirefieldmatch' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setHighlightSimplePost' => + 'solrdismaxquery::sethighlightsimplepost' => array ( 0 => 'SolrQuery', 'simplePost' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightSimplePre' => + 'solrdismaxquery::sethighlightsimplepre' => array ( 0 => 'SolrQuery', 'simplePre' => 'string', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightSnippets' => + 'solrdismaxquery::sethighlightsnippets' => array ( 0 => 'SolrQuery', 'value' => 'int', 'field_override' => 'string', ), - 'SolrDisMaxQuery::setHighlightUsePhraseHighlighter' => + 'solrdismaxquery::sethighlightusephrasehighlighter' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setMinimumMatch' => + 'solrdismaxquery::setminimummatch' => array ( 0 => 'SolrDisMaxQuery', 'value' => 'string', ), - 'SolrDisMaxQuery::setMlt' => + 'solrdismaxquery::setmlt' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setMltBoost' => + 'solrdismaxquery::setmltboost' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setMltCount' => + 'solrdismaxquery::setmltcount' => array ( 0 => 'SolrQuery', 'count' => 'int', ), - 'SolrDisMaxQuery::setMltMaxNumQueryTerms' => + 'solrdismaxquery::setmltmaxnumqueryterms' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrDisMaxQuery::setMltMaxNumTokens' => + 'solrdismaxquery::setmltmaxnumtokens' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrDisMaxQuery::setMltMaxWordLength' => + 'solrdismaxquery::setmltmaxwordlength' => array ( 0 => 'SolrQuery', 'maxWordLength' => 'int', ), - 'SolrDisMaxQuery::setMltMinDocFrequency' => + 'solrdismaxquery::setmltmindocfrequency' => array ( 0 => 'SolrQuery', 'minDocFrequency' => 'int', ), - 'SolrDisMaxQuery::setMltMinTermFrequency' => + 'solrdismaxquery::setmltmintermfrequency' => array ( 0 => 'SolrQuery', 'minTermFrequency' => 'int', ), - 'SolrDisMaxQuery::setMltMinWordLength' => + 'solrdismaxquery::setmltminwordlength' => array ( 0 => 'SolrQuery', 'minWordLength' => 'int', ), - 'SolrDisMaxQuery::setOmitHeader' => + 'solrdismaxquery::setomitheader' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setParam' => + 'solrdismaxquery::setparam' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'mixed', ), - 'SolrDisMaxQuery::setPhraseFields' => + 'solrdismaxquery::setphrasefields' => array ( 0 => 'SolrDisMaxQuery', 'fields' => 'string', ), - 'SolrDisMaxQuery::setPhraseSlop' => + 'solrdismaxquery::setphraseslop' => array ( 0 => 'SolrDisMaxQuery', 'slop' => 'string', ), - 'SolrDisMaxQuery::setQuery' => + 'solrdismaxquery::setquery' => array ( 0 => 'SolrQuery', 'query' => 'string', ), - 'SolrDisMaxQuery::setQueryAlt' => + 'solrdismaxquery::setqueryalt' => array ( 0 => 'SolrDisMaxQuery', 'q' => 'string', ), - 'SolrDisMaxQuery::setQueryPhraseSlop' => + 'solrdismaxquery::setqueryphraseslop' => array ( 0 => 'SolrDisMaxQuery', 'slop' => 'string', ), - 'SolrDisMaxQuery::setRows' => + 'solrdismaxquery::setrows' => array ( 0 => 'SolrQuery', 'rows' => 'int', ), - 'SolrDisMaxQuery::setShowDebugInfo' => + 'solrdismaxquery::setshowdebuginfo' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setStart' => + 'solrdismaxquery::setstart' => array ( 0 => 'SolrQuery', 'start' => 'int', ), - 'SolrDisMaxQuery::setStats' => + 'solrdismaxquery::setstats' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setTerms' => + 'solrdismaxquery::setterms' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setTermsField' => + 'solrdismaxquery::settermsfield' => array ( 0 => 'SolrQuery', 'fieldname' => 'string', ), - 'SolrDisMaxQuery::setTermsIncludeLowerBound' => + 'solrdismaxquery::settermsincludelowerbound' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setTermsIncludeUpperBound' => + 'solrdismaxquery::settermsincludeupperbound' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setTermsLimit' => + 'solrdismaxquery::settermslimit' => array ( 0 => 'SolrQuery', 'limit' => 'int', ), - 'SolrDisMaxQuery::setTermsLowerBound' => + 'solrdismaxquery::settermslowerbound' => array ( 0 => 'SolrQuery', 'lowerBound' => 'string', ), - 'SolrDisMaxQuery::setTermsMaxCount' => + 'solrdismaxquery::settermsmaxcount' => array ( 0 => 'SolrQuery', 'frequency' => 'int', ), - 'SolrDisMaxQuery::setTermsMinCount' => + 'solrdismaxquery::settermsmincount' => array ( 0 => 'SolrQuery', 'frequency' => 'int', ), - 'SolrDisMaxQuery::setTermsPrefix' => + 'solrdismaxquery::settermsprefix' => array ( 0 => 'SolrQuery', 'prefix' => 'string', ), - 'SolrDisMaxQuery::setTermsReturnRaw' => + 'solrdismaxquery::settermsreturnraw' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrDisMaxQuery::setTermsSort' => + 'solrdismaxquery::settermssort' => array ( 0 => 'SolrQuery', 'sortType' => 'int', ), - 'SolrDisMaxQuery::setTermsUpperBound' => + 'solrdismaxquery::settermsupperbound' => array ( 0 => 'SolrQuery', 'upperBound' => 'string', ), - 'SolrDisMaxQuery::setTieBreaker' => + 'solrdismaxquery::settiebreaker' => array ( 0 => 'SolrDisMaxQuery', 'tieBreaker' => 'string', ), - 'SolrDisMaxQuery::setTimeAllowed' => + 'solrdismaxquery::settimeallowed' => array ( 0 => 'SolrQuery', 'timeAllowed' => 'int', ), - 'SolrDisMaxQuery::setTrigramPhraseFields' => + 'solrdismaxquery::settrigramphrasefields' => array ( 0 => 'SolrDisMaxQuery', 'fields' => 'string', ), - 'SolrDisMaxQuery::setTrigramPhraseSlop' => + 'solrdismaxquery::settrigramphraseslop' => array ( 0 => 'SolrDisMaxQuery', 'slop' => 'string', ), - 'SolrDisMaxQuery::setUserFields' => + 'solrdismaxquery::setuserfields' => array ( 0 => 'SolrDisMaxQuery', 'fields' => 'string', ), - 'SolrDisMaxQuery::toString' => + 'solrdismaxquery::tostring' => array ( 0 => 'string', 'url_encode=' => 'bool', ), - 'SolrDisMaxQuery::unserialize' => + 'solrdismaxquery::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'SolrDisMaxQuery::useDisMaxQueryParser' => + 'solrdismaxquery::usedismaxqueryparser' => array ( 0 => 'SolrDisMaxQuery', ), - 'SolrDisMaxQuery::useEDisMaxQueryParser' => + 'solrdismaxquery::useedismaxqueryparser' => array ( 0 => 'SolrDisMaxQuery', ), - 'SolrDocument::__clone' => + 'solrdocument::__clone' => array ( 0 => 'void', ), - 'SolrDocument::__construct' => + 'solrdocument::__construct' => array ( 0 => 'void', ), - 'SolrDocument::__destruct' => + 'solrdocument::__destruct' => array ( 0 => 'void', ), - 'SolrDocument::__get' => + 'solrdocument::__get' => array ( 0 => 'SolrDocumentField', 'fieldname' => 'string', ), - 'SolrDocument::__isset' => + 'solrdocument::__isset' => array ( 0 => 'bool', 'fieldname' => 'string', ), - 'SolrDocument::__set' => + 'solrdocument::__set' => array ( 0 => 'bool', 'fieldname' => 'string', 'fieldvalue' => 'string', ), - 'SolrDocument::__unset' => + 'solrdocument::__unset' => array ( 0 => 'bool', 'fieldname' => 'string', ), - 'SolrDocument::addField' => + 'solrdocument::addfield' => array ( 0 => 'bool', 'fieldname' => 'string', 'fieldvalue' => 'string', ), - 'SolrDocument::clear' => + 'solrdocument::clear' => array ( 0 => 'bool', ), - 'SolrDocument::current' => + 'solrdocument::current' => array ( 0 => 'SolrDocumentField', ), - 'SolrDocument::deleteField' => + 'solrdocument::deletefield' => array ( 0 => 'bool', 'fieldname' => 'string', ), - 'SolrDocument::fieldExists' => + 'solrdocument::fieldexists' => array ( 0 => 'bool', 'fieldname' => 'string', ), - 'SolrDocument::getChildDocuments' => + 'solrdocument::getchilddocuments' => array ( 0 => 'array', ), - 'SolrDocument::getChildDocumentsCount' => + 'solrdocument::getchilddocumentscount' => array ( 0 => 'int', ), - 'SolrDocument::getField' => + 'solrdocument::getfield' => array ( 0 => 'SolrDocumentField|false', 'fieldname' => 'string', ), - 'SolrDocument::getFieldCount' => + 'solrdocument::getfieldcount' => array ( 0 => 'false|int', ), - 'SolrDocument::getFieldNames' => + 'solrdocument::getfieldnames' => array ( 0 => 'array|false', ), - 'SolrDocument::getInputDocument' => + 'solrdocument::getinputdocument' => array ( 0 => 'SolrInputDocument', ), - 'SolrDocument::hasChildDocuments' => + 'solrdocument::haschilddocuments' => array ( 0 => 'bool', ), - 'SolrDocument::key' => + 'solrdocument::key' => array ( 0 => 'string', ), - 'SolrDocument::merge' => + 'solrdocument::merge' => array ( 0 => 'bool', 'sourcedoc' => 'solrdocument', 'overwrite=' => 'bool', ), - 'SolrDocument::next' => + 'solrdocument::next' => array ( 0 => 'void', ), - 'SolrDocument::offsetExists' => + 'solrdocument::offsetexists' => array ( 0 => 'bool', 'fieldname' => 'string', ), - 'SolrDocument::offsetGet' => + 'solrdocument::offsetget' => array ( 0 => 'SolrDocumentField', 'fieldname' => 'string', ), - 'SolrDocument::offsetSet' => + 'solrdocument::offsetset' => array ( 0 => 'void', 'fieldname' => 'string', 'fieldvalue' => 'string', ), - 'SolrDocument::offsetUnset' => + 'solrdocument::offsetunset' => array ( 0 => 'void', 'fieldname' => 'string', ), - 'SolrDocument::reset' => + 'solrdocument::reset' => array ( 0 => 'bool', ), - 'SolrDocument::rewind' => + 'solrdocument::rewind' => array ( 0 => 'void', ), - 'SolrDocument::serialize' => + 'solrdocument::serialize' => array ( 0 => 'string', ), - 'SolrDocument::sort' => + 'solrdocument::sort' => array ( 0 => 'bool', 'sortorderby' => 'int', 'sortdirection=' => 'int', ), - 'SolrDocument::toArray' => + 'solrdocument::toarray' => array ( 0 => 'array', ), - 'SolrDocument::unserialize' => + 'solrdocument::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'SolrDocument::valid' => + 'solrdocument::valid' => array ( 0 => 'bool', ), - 'SolrDocumentField::__construct' => + 'solrdocumentfield::__construct' => array ( 0 => 'void', ), - 'SolrDocumentField::__destruct' => + 'solrdocumentfield::__destruct' => array ( 0 => 'void', ), - 'SolrException::__clone' => + 'solrexception::__clone' => array ( 0 => 'void', ), - 'SolrException::__construct' => + 'solrexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'SolrException::__toString' => + 'solrexception::__tostring' => array ( 0 => 'string', ), - 'SolrException::__wakeup' => + 'solrexception::__wakeup' => array ( 0 => 'void', ), - 'SolrException::getCode' => + 'solrexception::getcode' => array ( 0 => 'int', ), - 'SolrException::getFile' => + 'solrexception::getfile' => array ( 0 => 'string', ), - 'SolrException::getInternalInfo' => + 'solrexception::getinternalinfo' => array ( 0 => 'array', ), - 'SolrException::getLine' => + 'solrexception::getline' => array ( 0 => 'int', ), - 'SolrException::getMessage' => + 'solrexception::getmessage' => array ( 0 => 'string', ), - 'SolrException::getPrevious' => + 'solrexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'SolrException::getTrace' => + 'solrexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'SolrException::getTraceAsString' => + 'solrexception::gettraceasstring' => array ( 0 => 'string', ), - 'SolrGenericResponse::__construct' => + 'solrgenericresponse::__construct' => array ( 0 => 'void', ), - 'SolrGenericResponse::__destruct' => + 'solrgenericresponse::__destruct' => array ( 0 => 'void', ), - 'SolrGenericResponse::getDigestedResponse' => + 'solrgenericresponse::getdigestedresponse' => array ( 0 => 'string', ), - 'SolrGenericResponse::getHttpStatus' => + 'solrgenericresponse::gethttpstatus' => array ( 0 => 'int', ), - 'SolrGenericResponse::getHttpStatusMessage' => + 'solrgenericresponse::gethttpstatusmessage' => array ( 0 => 'string', ), - 'SolrGenericResponse::getRawRequest' => + 'solrgenericresponse::getrawrequest' => array ( 0 => 'string', ), - 'SolrGenericResponse::getRawRequestHeaders' => + 'solrgenericresponse::getrawrequestheaders' => array ( 0 => 'string', ), - 'SolrGenericResponse::getRawResponse' => + 'solrgenericresponse::getrawresponse' => array ( 0 => 'string', ), - 'SolrGenericResponse::getRawResponseHeaders' => + 'solrgenericresponse::getrawresponseheaders' => array ( 0 => 'string', ), - 'SolrGenericResponse::getRequestUrl' => + 'solrgenericresponse::getrequesturl' => array ( 0 => 'string', ), - 'SolrGenericResponse::getResponse' => + 'solrgenericresponse::getresponse' => array ( 0 => 'SolrObject', ), - 'SolrGenericResponse::setParseMode' => + 'solrgenericresponse::setparsemode' => array ( 0 => 'bool', 'parser_mode=' => 'int', ), - 'SolrGenericResponse::success' => + 'solrgenericresponse::success' => array ( 0 => 'bool', ), - 'SolrIllegalArgumentException::__clone' => + 'solrillegalargumentexception::__clone' => array ( 0 => 'void', ), - 'SolrIllegalArgumentException::__construct' => + 'solrillegalargumentexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'SolrIllegalArgumentException::__toString' => + 'solrillegalargumentexception::__tostring' => array ( 0 => 'string', ), - 'SolrIllegalArgumentException::__wakeup' => + 'solrillegalargumentexception::__wakeup' => array ( 0 => 'void', ), - 'SolrIllegalArgumentException::getCode' => + 'solrillegalargumentexception::getcode' => array ( 0 => 'int', ), - 'SolrIllegalArgumentException::getFile' => + 'solrillegalargumentexception::getfile' => array ( 0 => 'string', ), - 'SolrIllegalArgumentException::getInternalInfo' => + 'solrillegalargumentexception::getinternalinfo' => array ( 0 => 'array', ), - 'SolrIllegalArgumentException::getLine' => + 'solrillegalargumentexception::getline' => array ( 0 => 'int', ), - 'SolrIllegalArgumentException::getMessage' => + 'solrillegalargumentexception::getmessage' => array ( 0 => 'string', ), - 'SolrIllegalArgumentException::getPrevious' => + 'solrillegalargumentexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'SolrIllegalArgumentException::getTrace' => + 'solrillegalargumentexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'SolrIllegalArgumentException::getTraceAsString' => + 'solrillegalargumentexception::gettraceasstring' => array ( 0 => 'string', ), - 'SolrIllegalOperationException::__clone' => + 'solrillegaloperationexception::__clone' => array ( 0 => 'void', ), - 'SolrIllegalOperationException::__construct' => + 'solrillegaloperationexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'SolrIllegalOperationException::__toString' => + 'solrillegaloperationexception::__tostring' => array ( 0 => 'string', ), - 'SolrIllegalOperationException::__wakeup' => + 'solrillegaloperationexception::__wakeup' => array ( 0 => 'void', ), - 'SolrIllegalOperationException::getCode' => + 'solrillegaloperationexception::getcode' => array ( 0 => 'int', ), - 'SolrIllegalOperationException::getFile' => + 'solrillegaloperationexception::getfile' => array ( 0 => 'string', ), - 'SolrIllegalOperationException::getInternalInfo' => + 'solrillegaloperationexception::getinternalinfo' => array ( 0 => 'array', ), - 'SolrIllegalOperationException::getLine' => + 'solrillegaloperationexception::getline' => array ( 0 => 'int', ), - 'SolrIllegalOperationException::getMessage' => + 'solrillegaloperationexception::getmessage' => array ( 0 => 'string', ), - 'SolrIllegalOperationException::getPrevious' => + 'solrillegaloperationexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'SolrIllegalOperationException::getTrace' => + 'solrillegaloperationexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'SolrIllegalOperationException::getTraceAsString' => + 'solrillegaloperationexception::gettraceasstring' => array ( 0 => 'string', ), - 'SolrInputDocument::__clone' => + 'solrinputdocument::__clone' => array ( 0 => 'void', ), - 'SolrInputDocument::__construct' => + 'solrinputdocument::__construct' => array ( 0 => 'void', ), - 'SolrInputDocument::__destruct' => + 'solrinputdocument::__destruct' => array ( 0 => 'void', ), - 'SolrInputDocument::addChildDocument' => + 'solrinputdocument::addchilddocument' => array ( 0 => 'void', 'child' => 'SolrInputDocument', ), - 'SolrInputDocument::addChildDocuments' => + 'solrinputdocument::addchilddocuments' => array ( 0 => 'void', 'docs' => 'array', ), - 'SolrInputDocument::addField' => + 'solrinputdocument::addfield' => array ( 0 => 'bool', 'fieldname' => 'string', 'fieldvalue' => 'string', 'fieldboostvalue=' => 'float', ), - 'SolrInputDocument::clear' => + 'solrinputdocument::clear' => array ( 0 => 'bool', ), - 'SolrInputDocument::deleteField' => + 'solrinputdocument::deletefield' => array ( 0 => 'bool', 'fieldname' => 'string', ), - 'SolrInputDocument::fieldExists' => + 'solrinputdocument::fieldexists' => array ( 0 => 'bool', 'fieldname' => 'string', ), - 'SolrInputDocument::getBoost' => + 'solrinputdocument::getboost' => array ( 0 => 'false|float', ), - 'SolrInputDocument::getChildDocuments' => + 'solrinputdocument::getchilddocuments' => array ( 0 => 'array', ), - 'SolrInputDocument::getChildDocumentsCount' => + 'solrinputdocument::getchilddocumentscount' => array ( 0 => 'int', ), - 'SolrInputDocument::getField' => + 'solrinputdocument::getfield' => array ( 0 => 'SolrDocumentField|false', 'fieldname' => 'string', ), - 'SolrInputDocument::getFieldBoost' => + 'solrinputdocument::getfieldboost' => array ( 0 => 'false|float', 'fieldname' => 'string', ), - 'SolrInputDocument::getFieldCount' => + 'solrinputdocument::getfieldcount' => array ( 0 => 'false|int', ), - 'SolrInputDocument::getFieldNames' => + 'solrinputdocument::getfieldnames' => array ( 0 => 'array|false', ), - 'SolrInputDocument::hasChildDocuments' => + 'solrinputdocument::haschilddocuments' => array ( 0 => 'bool', ), - 'SolrInputDocument::merge' => + 'solrinputdocument::merge' => array ( 0 => 'bool', 'sourcedoc' => 'SolrInputDocument', 'overwrite=' => 'bool', ), - 'SolrInputDocument::reset' => + 'solrinputdocument::reset' => array ( 0 => 'bool', ), - 'SolrInputDocument::setBoost' => + 'solrinputdocument::setboost' => array ( 0 => 'bool', 'documentboostvalue' => 'float', ), - 'SolrInputDocument::setFieldBoost' => + 'solrinputdocument::setfieldboost' => array ( 0 => 'bool', 'fieldname' => 'string', 'fieldboostvalue' => 'float', ), - 'SolrInputDocument::sort' => + 'solrinputdocument::sort' => array ( 0 => 'bool', 'sortorderby' => 'int', 'sortdirection=' => 'int', ), - 'SolrInputDocument::toArray' => + 'solrinputdocument::toarray' => array ( 0 => 'array|false', ), - 'SolrModifiableParams::__construct' => + 'solrmodifiableparams::__construct' => array ( 0 => 'void', ), - 'SolrModifiableParams::__destruct' => + 'solrmodifiableparams::__destruct' => array ( 0 => 'void', ), - 'SolrModifiableParams::add' => + 'solrmodifiableparams::add' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'string', ), - 'SolrModifiableParams::addParam' => + 'solrmodifiableparams::addparam' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'string', ), - 'SolrModifiableParams::get' => + 'solrmodifiableparams::get' => array ( 0 => 'mixed', 'param_name' => 'string', ), - 'SolrModifiableParams::getParam' => + 'solrmodifiableparams::getparam' => array ( 0 => 'mixed', 'param_name' => 'string', ), - 'SolrModifiableParams::getParams' => + 'solrmodifiableparams::getparams' => array ( 0 => 'array', ), - 'SolrModifiableParams::getPreparedParams' => + 'solrmodifiableparams::getpreparedparams' => array ( 0 => 'array', ), - 'SolrModifiableParams::serialize' => + 'solrmodifiableparams::serialize' => array ( 0 => 'string', ), - 'SolrModifiableParams::set' => + 'solrmodifiableparams::set' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'mixed', ), - 'SolrModifiableParams::setParam' => + 'solrmodifiableparams::setparam' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'mixed', ), - 'SolrModifiableParams::toString' => + 'solrmodifiableparams::tostring' => array ( 0 => 'string', 'url_encode=' => 'bool', ), - 'SolrModifiableParams::unserialize' => + 'solrmodifiableparams::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'SolrObject::__construct' => + 'solrobject::__construct' => array ( 0 => 'void', ), - 'SolrObject::__destruct' => + 'solrobject::__destruct' => array ( 0 => 'void', ), - 'SolrObject::getPropertyNames' => + 'solrobject::getpropertynames' => array ( 0 => 'array', ), - 'SolrObject::offsetExists' => + 'solrobject::offsetexists' => array ( 0 => 'bool', 'property_name' => 'string', ), - 'SolrObject::offsetGet' => + 'solrobject::offsetget' => array ( 0 => 'SolrDocumentField', 'property_name' => 'string', ), - 'SolrObject::offsetSet' => + 'solrobject::offsetset' => array ( 0 => 'void', 'property_name' => 'string', 'property_value' => 'string', ), - 'SolrObject::offsetUnset' => + 'solrobject::offsetunset' => array ( 0 => 'void', 'property_name' => 'string', ), - 'SolrParams::__construct' => + 'solrparams::__construct' => array ( 0 => 'void', ), - 'SolrParams::add' => + 'solrparams::add' => array ( 0 => 'SolrParams|false', 'name' => 'string', 'value' => 'string', ), - 'SolrParams::addParam' => + 'solrparams::addparam' => array ( 0 => 'SolrParams|false', 'name' => 'string', 'value' => 'string', ), - 'SolrParams::get' => + 'solrparams::get' => array ( 0 => 'mixed', 'param_name' => 'string', ), - 'SolrParams::getParam' => + 'solrparams::getparam' => array ( 0 => 'mixed', 'param_name=' => 'string', ), - 'SolrParams::getParams' => + 'solrparams::getparams' => array ( 0 => 'array', ), - 'SolrParams::getPreparedParams' => + 'solrparams::getpreparedparams' => array ( 0 => 'array', ), - 'SolrParams::serialize' => + 'solrparams::serialize' => array ( 0 => 'string', ), - 'SolrParams::set' => + 'solrparams::set' => array ( 0 => 'SolrParams|false', 'name' => 'string', 'value' => 'string', ), - 'SolrParams::setParam' => + 'solrparams::setparam' => array ( 0 => 'SolrParams|false', 'name' => 'string', 'value' => 'string', ), - 'SolrParams::toString' => + 'solrparams::tostring' => array ( 0 => 'false|string', 'url_encode=' => 'bool', ), - 'SolrParams::unserialize' => + 'solrparams::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'SolrPingResponse::__construct' => + 'solrpingresponse::__construct' => array ( 0 => 'void', ), - 'SolrPingResponse::__destruct' => + 'solrpingresponse::__destruct' => array ( 0 => 'void', ), - 'SolrPingResponse::getDigestedResponse' => + 'solrpingresponse::getdigestedresponse' => array ( 0 => 'string', ), - 'SolrPingResponse::getHttpStatus' => + 'solrpingresponse::gethttpstatus' => array ( 0 => 'int', ), - 'SolrPingResponse::getHttpStatusMessage' => + 'solrpingresponse::gethttpstatusmessage' => array ( 0 => 'string', ), - 'SolrPingResponse::getRawRequest' => + 'solrpingresponse::getrawrequest' => array ( 0 => 'string', ), - 'SolrPingResponse::getRawRequestHeaders' => + 'solrpingresponse::getrawrequestheaders' => array ( 0 => 'string', ), - 'SolrPingResponse::getRawResponse' => + 'solrpingresponse::getrawresponse' => array ( 0 => 'string', ), - 'SolrPingResponse::getRawResponseHeaders' => + 'solrpingresponse::getrawresponseheaders' => array ( 0 => 'string', ), - 'SolrPingResponse::getRequestUrl' => + 'solrpingresponse::getrequesturl' => array ( 0 => 'string', ), - 'SolrPingResponse::getResponse' => + 'solrpingresponse::getresponse' => array ( 0 => 'string', ), - 'SolrPingResponse::setParseMode' => + 'solrpingresponse::setparsemode' => array ( 0 => 'bool', 'parser_mode=' => 'int', ), - 'SolrPingResponse::success' => + 'solrpingresponse::success' => array ( 0 => 'bool', ), - 'SolrQuery::__construct' => + 'solrquery::__construct' => array ( 0 => 'void', 'q=' => 'string', ), - 'SolrQuery::__destruct' => + 'solrquery::__destruct' => array ( 0 => 'void', ), - 'SolrQuery::add' => + 'solrquery::add' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'string', ), - 'SolrQuery::addExpandFilterQuery' => + 'solrquery::addexpandfilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrQuery::addExpandSortField' => + 'solrquery::addexpandsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'order=' => 'string', ), - 'SolrQuery::addFacetDateField' => + 'solrquery::addfacetdatefield' => array ( 0 => 'SolrQuery', 'datefield' => 'string', ), - 'SolrQuery::addFacetDateOther' => + 'solrquery::addfacetdateother' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::addFacetField' => + 'solrquery::addfacetfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::addFacetQuery' => + 'solrquery::addfacetquery' => array ( 0 => 'SolrQuery', 'facetquery' => 'string', ), - 'SolrQuery::addField' => + 'solrquery::addfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::addFilterQuery' => + 'solrquery::addfilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrQuery::addGroupField' => + 'solrquery::addgroupfield' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::addGroupFunction' => + 'solrquery::addgroupfunction' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::addGroupQuery' => + 'solrquery::addgroupquery' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::addGroupSortField' => + 'solrquery::addgroupsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'order=' => 'int', ), - 'SolrQuery::addHighlightField' => + 'solrquery::addhighlightfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::addMltField' => + 'solrquery::addmltfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::addMltQueryField' => + 'solrquery::addmltqueryfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'boost' => 'float', ), - 'SolrQuery::addParam' => + 'solrquery::addparam' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'string', ), - 'SolrQuery::addSortField' => + 'solrquery::addsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'order=' => 'int', ), - 'SolrQuery::addStatsFacet' => + 'solrquery::addstatsfacet' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::addStatsField' => + 'solrquery::addstatsfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::collapse' => + 'solrquery::collapse' => array ( 0 => 'SolrQuery', 'collapseFunction' => 'SolrCollapseFunction', ), - 'SolrQuery::get' => + 'solrquery::get' => array ( 0 => 'mixed', 'param_name' => 'string', ), - 'SolrQuery::getExpand' => + 'solrquery::getexpand' => array ( 0 => 'bool', ), - 'SolrQuery::getExpandFilterQueries' => + 'solrquery::getexpandfilterqueries' => array ( 0 => 'array', ), - 'SolrQuery::getExpandQuery' => + 'solrquery::getexpandquery' => array ( 0 => 'array', ), - 'SolrQuery::getExpandRows' => + 'solrquery::getexpandrows' => array ( 0 => 'int', ), - 'SolrQuery::getExpandSortFields' => + 'solrquery::getexpandsortfields' => array ( 0 => 'array', ), - 'SolrQuery::getFacet' => + 'solrquery::getfacet' => array ( 0 => 'bool|null', ), - 'SolrQuery::getFacetDateEnd' => + 'solrquery::getfacetdateend' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getFacetDateFields' => + 'solrquery::getfacetdatefields' => array ( 0 => 'array', ), - 'SolrQuery::getFacetDateGap' => + 'solrquery::getfacetdategap' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getFacetDateHardEnd' => + 'solrquery::getfacetdatehardend' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getFacetDateOther' => + 'solrquery::getfacetdateother' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getFacetDateStart' => + 'solrquery::getfacetdatestart' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getFacetFields' => + 'solrquery::getfacetfields' => array ( 0 => 'array', ), - 'SolrQuery::getFacetLimit' => + 'solrquery::getfacetlimit' => array ( 0 => 'int|null', 'field_override=' => 'string', ), - 'SolrQuery::getFacetMethod' => + 'solrquery::getfacetmethod' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getFacetMinCount' => + 'solrquery::getfacetmincount' => array ( 0 => 'int|null', 'field_override=' => 'string', ), - 'SolrQuery::getFacetMissing' => + 'solrquery::getfacetmissing' => array ( 0 => 'bool|null', 'field_override=' => 'string', ), - 'SolrQuery::getFacetOffset' => + 'solrquery::getfacetoffset' => array ( 0 => 'int|null', 'field_override=' => 'string', ), - 'SolrQuery::getFacetPrefix' => + 'solrquery::getfacetprefix' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getFacetQueries' => + 'solrquery::getfacetqueries' => array ( 0 => 'array|null', ), - 'SolrQuery::getFacetSort' => + 'solrquery::getfacetsort' => array ( 0 => 'int', 'field_override=' => 'string', ), - 'SolrQuery::getFields' => + 'solrquery::getfields' => array ( 0 => 'array|null', ), - 'SolrQuery::getFilterQueries' => + 'solrquery::getfilterqueries' => array ( 0 => 'array|null', ), - 'SolrQuery::getGroup' => + 'solrquery::getgroup' => array ( 0 => 'bool', ), - 'SolrQuery::getGroupCachePercent' => + 'solrquery::getgroupcachepercent' => array ( 0 => 'int', ), - 'SolrQuery::getGroupFacet' => + 'solrquery::getgroupfacet' => array ( 0 => 'bool', ), - 'SolrQuery::getGroupFields' => + 'solrquery::getgroupfields' => array ( 0 => 'array', ), - 'SolrQuery::getGroupFormat' => + 'solrquery::getgroupformat' => array ( 0 => 'string', ), - 'SolrQuery::getGroupFunctions' => + 'solrquery::getgroupfunctions' => array ( 0 => 'array', ), - 'SolrQuery::getGroupLimit' => + 'solrquery::getgrouplimit' => array ( 0 => 'int', ), - 'SolrQuery::getGroupMain' => + 'solrquery::getgroupmain' => array ( 0 => 'bool', ), - 'SolrQuery::getGroupNGroups' => + 'solrquery::getgroupngroups' => array ( 0 => 'bool', ), - 'SolrQuery::getGroupOffset' => + 'solrquery::getgroupoffset' => array ( 0 => 'int', ), - 'SolrQuery::getGroupQueries' => + 'solrquery::getgroupqueries' => array ( 0 => 'array', ), - 'SolrQuery::getGroupSortFields' => + 'solrquery::getgroupsortfields' => array ( 0 => 'array', ), - 'SolrQuery::getGroupTruncate' => + 'solrquery::getgrouptruncate' => array ( 0 => 'bool', ), - 'SolrQuery::getHighlight' => + 'solrquery::gethighlight' => array ( 0 => 'bool', ), - 'SolrQuery::getHighlightAlternateField' => + 'solrquery::gethighlightalternatefield' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightFields' => + 'solrquery::gethighlightfields' => array ( 0 => 'array|null', ), - 'SolrQuery::getHighlightFormatter' => + 'solrquery::gethighlightformatter' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightFragmenter' => + 'solrquery::gethighlightfragmenter' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightFragsize' => + 'solrquery::gethighlightfragsize' => array ( 0 => 'int|null', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightHighlightMultiTerm' => + 'solrquery::gethighlighthighlightmultiterm' => array ( 0 => 'bool|null', ), - 'SolrQuery::getHighlightMaxAlternateFieldLength' => + 'solrquery::gethighlightmaxalternatefieldlength' => array ( 0 => 'int|null', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightMaxAnalyzedChars' => + 'solrquery::gethighlightmaxanalyzedchars' => array ( 0 => 'int|null', ), - 'SolrQuery::getHighlightMergeContiguous' => + 'solrquery::gethighlightmergecontiguous' => array ( 0 => 'bool|null', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightRegexMaxAnalyzedChars' => + 'solrquery::gethighlightregexmaxanalyzedchars' => array ( 0 => 'int|null', ), - 'SolrQuery::getHighlightRegexPattern' => + 'solrquery::gethighlightregexpattern' => array ( 0 => 'null|string', ), - 'SolrQuery::getHighlightRegexSlop' => + 'solrquery::gethighlightregexslop' => array ( 0 => 'float|null', ), - 'SolrQuery::getHighlightRequireFieldMatch' => + 'solrquery::gethighlightrequirefieldmatch' => array ( 0 => 'bool|null', ), - 'SolrQuery::getHighlightSimplePost' => + 'solrquery::gethighlightsimplepost' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightSimplePre' => + 'solrquery::gethighlightsimplepre' => array ( 0 => 'null|string', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightSnippets' => + 'solrquery::gethighlightsnippets' => array ( 0 => 'int|null', 'field_override=' => 'string', ), - 'SolrQuery::getHighlightUsePhraseHighlighter' => + 'solrquery::gethighlightusephrasehighlighter' => array ( 0 => 'bool|null', ), - 'SolrQuery::getMlt' => + 'solrquery::getmlt' => array ( 0 => 'bool|null', ), - 'SolrQuery::getMltBoost' => + 'solrquery::getmltboost' => array ( 0 => 'bool|null', ), - 'SolrQuery::getMltCount' => + 'solrquery::getmltcount' => array ( 0 => 'int|null', ), - 'SolrQuery::getMltFields' => + 'solrquery::getmltfields' => array ( 0 => 'array|null', ), - 'SolrQuery::getMltMaxNumQueryTerms' => + 'solrquery::getmltmaxnumqueryterms' => array ( 0 => 'int|null', ), - 'SolrQuery::getMltMaxNumTokens' => + 'solrquery::getmltmaxnumtokens' => array ( 0 => 'int|null', ), - 'SolrQuery::getMltMaxWordLength' => + 'solrquery::getmltmaxwordlength' => array ( 0 => 'int|null', ), - 'SolrQuery::getMltMinDocFrequency' => + 'solrquery::getmltmindocfrequency' => array ( 0 => 'int|null', ), - 'SolrQuery::getMltMinTermFrequency' => + 'solrquery::getmltmintermfrequency' => array ( 0 => 'int|null', ), - 'SolrQuery::getMltMinWordLength' => + 'solrquery::getmltminwordlength' => array ( 0 => 'int|null', ), - 'SolrQuery::getMltQueryFields' => + 'solrquery::getmltqueryfields' => array ( 0 => 'array|null', ), - 'SolrQuery::getParam' => + 'solrquery::getparam' => array ( 0 => 'mixed|null', 'param_name' => 'string', ), - 'SolrQuery::getParams' => + 'solrquery::getparams' => array ( 0 => 'array|null', ), - 'SolrQuery::getPreparedParams' => + 'solrquery::getpreparedparams' => array ( 0 => 'array|null', ), - 'SolrQuery::getQuery' => + 'solrquery::getquery' => array ( 0 => 'null|string', ), - 'SolrQuery::getRows' => + 'solrquery::getrows' => array ( 0 => 'int|null', ), - 'SolrQuery::getSortFields' => + 'solrquery::getsortfields' => array ( 0 => 'array|null', ), - 'SolrQuery::getStart' => + 'solrquery::getstart' => array ( 0 => 'int|null', ), - 'SolrQuery::getStats' => + 'solrquery::getstats' => array ( 0 => 'bool|null', ), - 'SolrQuery::getStatsFacets' => + 'solrquery::getstatsfacets' => array ( 0 => 'array|null', ), - 'SolrQuery::getStatsFields' => + 'solrquery::getstatsfields' => array ( 0 => 'array|null', ), - 'SolrQuery::getTerms' => + 'solrquery::getterms' => array ( 0 => 'bool|null', ), - 'SolrQuery::getTermsField' => + 'solrquery::gettermsfield' => array ( 0 => 'null|string', ), - 'SolrQuery::getTermsIncludeLowerBound' => + 'solrquery::gettermsincludelowerbound' => array ( 0 => 'bool|null', ), - 'SolrQuery::getTermsIncludeUpperBound' => + 'solrquery::gettermsincludeupperbound' => array ( 0 => 'bool|null', ), - 'SolrQuery::getTermsLimit' => + 'solrquery::gettermslimit' => array ( 0 => 'int|null', ), - 'SolrQuery::getTermsLowerBound' => + 'solrquery::gettermslowerbound' => array ( 0 => 'null|string', ), - 'SolrQuery::getTermsMaxCount' => + 'solrquery::gettermsmaxcount' => array ( 0 => 'int|null', ), - 'SolrQuery::getTermsMinCount' => + 'solrquery::gettermsmincount' => array ( 0 => 'int|null', ), - 'SolrQuery::getTermsPrefix' => + 'solrquery::gettermsprefix' => array ( 0 => 'null|string', ), - 'SolrQuery::getTermsReturnRaw' => + 'solrquery::gettermsreturnraw' => array ( 0 => 'bool|null', ), - 'SolrQuery::getTermsSort' => + 'solrquery::gettermssort' => array ( 0 => 'int|null', ), - 'SolrQuery::getTermsUpperBound' => + 'solrquery::gettermsupperbound' => array ( 0 => 'null|string', ), - 'SolrQuery::getTimeAllowed' => + 'solrquery::gettimeallowed' => array ( 0 => 'int|null', ), - 'SolrQuery::removeExpandFilterQuery' => + 'solrquery::removeexpandfilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrQuery::removeExpandSortField' => + 'solrquery::removeexpandsortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::removeFacetDateField' => + 'solrquery::removefacetdatefield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::removeFacetDateOther' => + 'solrquery::removefacetdateother' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::removeFacetField' => + 'solrquery::removefacetfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::removeFacetQuery' => + 'solrquery::removefacetquery' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::removeField' => + 'solrquery::removefield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::removeFilterQuery' => + 'solrquery::removefilterquery' => array ( 0 => 'SolrQuery', 'fq' => 'string', ), - 'SolrQuery::removeHighlightField' => + 'solrquery::removehighlightfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::removeMltField' => + 'solrquery::removemltfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::removeMltQueryField' => + 'solrquery::removemltqueryfield' => array ( 0 => 'SolrQuery', 'queryfield' => 'string', ), - 'SolrQuery::removeSortField' => + 'solrquery::removesortfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::removeStatsFacet' => + 'solrquery::removestatsfacet' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::removeStatsField' => + 'solrquery::removestatsfield' => array ( 0 => 'SolrQuery', 'field' => 'string', ), - 'SolrQuery::serialize' => + 'solrquery::serialize' => array ( 0 => 'string', ), - 'SolrQuery::set' => + 'solrquery::set' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'mixed', ), - 'SolrQuery::setEchoHandler' => + 'solrquery::setechohandler' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setEchoParams' => + 'solrquery::setechoparams' => array ( 0 => 'SolrQuery', 'type' => 'string', ), - 'SolrQuery::setExpand' => + 'solrquery::setexpand' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrQuery::setExpandQuery' => + 'solrquery::setexpandquery' => array ( 0 => 'SolrQuery', 'q' => 'string', ), - 'SolrQuery::setExpandRows' => + 'solrquery::setexpandrows' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrQuery::setExplainOther' => + 'solrquery::setexplainother' => array ( 0 => 'SolrQuery', 'query' => 'string', ), - 'SolrQuery::setFacet' => + 'solrquery::setfacet' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setFacetDateEnd' => + 'solrquery::setfacetdateend' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setFacetDateGap' => + 'solrquery::setfacetdategap' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setFacetDateHardEnd' => + 'solrquery::setfacetdatehardend' => array ( 0 => 'SolrQuery', 'value' => 'bool', 'field_override=' => 'string', ), - 'SolrQuery::setFacetDateStart' => + 'solrquery::setfacetdatestart' => array ( 0 => 'SolrQuery', 'value' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setFacetEnumCacheMinDefaultFrequency' => + 'solrquery::setfacetenumcachemindefaultfrequency' => array ( 0 => 'SolrQuery', 'frequency' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setFacetLimit' => + 'solrquery::setfacetlimit' => array ( 0 => 'SolrQuery', 'limit' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setFacetMethod' => + 'solrquery::setfacetmethod' => array ( 0 => 'SolrQuery', 'method' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setFacetMinCount' => + 'solrquery::setfacetmincount' => array ( 0 => 'SolrQuery', 'mincount' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setFacetMissing' => + 'solrquery::setfacetmissing' => array ( 0 => 'SolrQuery', 'flag' => 'bool', 'field_override=' => 'string', ), - 'SolrQuery::setFacetOffset' => + 'solrquery::setfacetoffset' => array ( 0 => 'SolrQuery', 'offset' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setFacetPrefix' => + 'solrquery::setfacetprefix' => array ( 0 => 'SolrQuery', 'prefix' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setFacetSort' => + 'solrquery::setfacetsort' => array ( 0 => 'SolrQuery', 'facetsort' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setGroup' => + 'solrquery::setgroup' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrQuery::setGroupCachePercent' => + 'solrquery::setgroupcachepercent' => array ( 0 => 'SolrQuery', 'percent' => 'int', ), - 'SolrQuery::setGroupFacet' => + 'solrquery::setgroupfacet' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrQuery::setGroupFormat' => + 'solrquery::setgroupformat' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::setGroupLimit' => + 'solrquery::setgrouplimit' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrQuery::setGroupMain' => + 'solrquery::setgroupmain' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::setGroupNGroups' => + 'solrquery::setgroupngroups' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrQuery::setGroupOffset' => + 'solrquery::setgroupoffset' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrQuery::setGroupTruncate' => + 'solrquery::setgrouptruncate' => array ( 0 => 'SolrQuery', 'value' => 'bool', ), - 'SolrQuery::setHighlight' => + 'solrquery::sethighlight' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setHighlightAlternateField' => + 'solrquery::sethighlightalternatefield' => array ( 0 => 'SolrQuery', 'field' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightFormatter' => + 'solrquery::sethighlightformatter' => array ( 0 => 'SolrQuery', 'formatter' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightFragmenter' => + 'solrquery::sethighlightfragmenter' => array ( 0 => 'SolrQuery', 'fragmenter' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightFragsize' => + 'solrquery::sethighlightfragsize' => array ( 0 => 'SolrQuery', 'size' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightHighlightMultiTerm' => + 'solrquery::sethighlighthighlightmultiterm' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setHighlightMaxAlternateFieldLength' => + 'solrquery::sethighlightmaxalternatefieldlength' => array ( 0 => 'SolrQuery', 'fieldlength' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightMaxAnalyzedChars' => + 'solrquery::sethighlightmaxanalyzedchars' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrQuery::setHighlightMergeContiguous' => + 'solrquery::sethighlightmergecontiguous' => array ( 0 => 'SolrQuery', 'flag' => 'bool', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightRegexMaxAnalyzedChars' => + 'solrquery::sethighlightregexmaxanalyzedchars' => array ( 0 => 'SolrQuery', 'maxanalyzedchars' => 'int', ), - 'SolrQuery::setHighlightRegexPattern' => + 'solrquery::sethighlightregexpattern' => array ( 0 => 'SolrQuery', 'value' => 'string', ), - 'SolrQuery::setHighlightRegexSlop' => + 'solrquery::sethighlightregexslop' => array ( 0 => 'SolrQuery', 'factor' => 'float', ), - 'SolrQuery::setHighlightRequireFieldMatch' => + 'solrquery::sethighlightrequirefieldmatch' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setHighlightSimplePost' => + 'solrquery::sethighlightsimplepost' => array ( 0 => 'SolrQuery', 'simplepost' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightSimplePre' => + 'solrquery::sethighlightsimplepre' => array ( 0 => 'SolrQuery', 'simplepre' => 'string', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightSnippets' => + 'solrquery::sethighlightsnippets' => array ( 0 => 'SolrQuery', 'value' => 'int', 'field_override=' => 'string', ), - 'SolrQuery::setHighlightUsePhraseHighlighter' => + 'solrquery::sethighlightusephrasehighlighter' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setMlt' => + 'solrquery::setmlt' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setMltBoost' => + 'solrquery::setmltboost' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setMltCount' => + 'solrquery::setmltcount' => array ( 0 => 'SolrQuery', 'count' => 'int', ), - 'SolrQuery::setMltMaxNumQueryTerms' => + 'solrquery::setmltmaxnumqueryterms' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrQuery::setMltMaxNumTokens' => + 'solrquery::setmltmaxnumtokens' => array ( 0 => 'SolrQuery', 'value' => 'int', ), - 'SolrQuery::setMltMaxWordLength' => + 'solrquery::setmltmaxwordlength' => array ( 0 => 'SolrQuery', 'maxwordlength' => 'int', ), - 'SolrQuery::setMltMinDocFrequency' => + 'solrquery::setmltmindocfrequency' => array ( 0 => 'SolrQuery', 'mindocfrequency' => 'int', ), - 'SolrQuery::setMltMinTermFrequency' => + 'solrquery::setmltmintermfrequency' => array ( 0 => 'SolrQuery', 'mintermfrequency' => 'int', ), - 'SolrQuery::setMltMinWordLength' => + 'solrquery::setmltminwordlength' => array ( 0 => 'SolrQuery', 'minwordlength' => 'int', ), - 'SolrQuery::setOmitHeader' => + 'solrquery::setomitheader' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setParam' => + 'solrquery::setparam' => array ( 0 => 'SolrParams', 'name' => 'string', 'value' => 'mixed', ), - 'SolrQuery::setQuery' => + 'solrquery::setquery' => array ( 0 => 'SolrQuery', 'query' => 'string', ), - 'SolrQuery::setRows' => + 'solrquery::setrows' => array ( 0 => 'SolrQuery', 'rows' => 'int', ), - 'SolrQuery::setShowDebugInfo' => + 'solrquery::setshowdebuginfo' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setStart' => + 'solrquery::setstart' => array ( 0 => 'SolrQuery', 'start' => 'int', ), - 'SolrQuery::setStats' => + 'solrquery::setstats' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setTerms' => + 'solrquery::setterms' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setTermsField' => + 'solrquery::settermsfield' => array ( 0 => 'SolrQuery', 'fieldname' => 'string', ), - 'SolrQuery::setTermsIncludeLowerBound' => + 'solrquery::settermsincludelowerbound' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setTermsIncludeUpperBound' => + 'solrquery::settermsincludeupperbound' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setTermsLimit' => + 'solrquery::settermslimit' => array ( 0 => 'SolrQuery', 'limit' => 'int', ), - 'SolrQuery::setTermsLowerBound' => + 'solrquery::settermslowerbound' => array ( 0 => 'SolrQuery', 'lowerbound' => 'string', ), - 'SolrQuery::setTermsMaxCount' => + 'solrquery::settermsmaxcount' => array ( 0 => 'SolrQuery', 'frequency' => 'int', ), - 'SolrQuery::setTermsMinCount' => + 'solrquery::settermsmincount' => array ( 0 => 'SolrQuery', 'frequency' => 'int', ), - 'SolrQuery::setTermsPrefix' => + 'solrquery::settermsprefix' => array ( 0 => 'SolrQuery', 'prefix' => 'string', ), - 'SolrQuery::setTermsReturnRaw' => + 'solrquery::settermsreturnraw' => array ( 0 => 'SolrQuery', 'flag' => 'bool', ), - 'SolrQuery::setTermsSort' => + 'solrquery::settermssort' => array ( 0 => 'SolrQuery', 'sorttype' => 'int', ), - 'SolrQuery::setTermsUpperBound' => + 'solrquery::settermsupperbound' => array ( 0 => 'SolrQuery', 'upperbound' => 'string', ), - 'SolrQuery::setTimeAllowed' => + 'solrquery::settimeallowed' => array ( 0 => 'SolrQuery', 'timeallowed' => 'int', ), - 'SolrQuery::toString' => + 'solrquery::tostring' => array ( 0 => 'string', 'url_encode=' => 'bool', ), - 'SolrQuery::unserialize' => + 'solrquery::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'SolrQueryResponse::__construct' => + 'solrqueryresponse::__construct' => array ( 0 => 'void', ), - 'SolrQueryResponse::__destruct' => + 'solrqueryresponse::__destruct' => array ( 0 => 'void', ), - 'SolrQueryResponse::getDigestedResponse' => + 'solrqueryresponse::getdigestedresponse' => array ( 0 => 'string', ), - 'SolrQueryResponse::getHttpStatus' => + 'solrqueryresponse::gethttpstatus' => array ( 0 => 'int', ), - 'SolrQueryResponse::getHttpStatusMessage' => + 'solrqueryresponse::gethttpstatusmessage' => array ( 0 => 'string', ), - 'SolrQueryResponse::getRawRequest' => + 'solrqueryresponse::getrawrequest' => array ( 0 => 'string', ), - 'SolrQueryResponse::getRawRequestHeaders' => + 'solrqueryresponse::getrawrequestheaders' => array ( 0 => 'string', ), - 'SolrQueryResponse::getRawResponse' => + 'solrqueryresponse::getrawresponse' => array ( 0 => 'string', ), - 'SolrQueryResponse::getRawResponseHeaders' => + 'solrqueryresponse::getrawresponseheaders' => array ( 0 => 'string', ), - 'SolrQueryResponse::getRequestUrl' => + 'solrqueryresponse::getrequesturl' => array ( 0 => 'string', ), - 'SolrQueryResponse::getResponse' => + 'solrqueryresponse::getresponse' => array ( 0 => 'SolrObject', ), - 'SolrQueryResponse::setParseMode' => + 'solrqueryresponse::setparsemode' => array ( 0 => 'bool', 'parser_mode=' => 'int', ), - 'SolrQueryResponse::success' => + 'solrqueryresponse::success' => array ( 0 => 'bool', ), - 'SolrResponse::getDigestedResponse' => + 'solrresponse::getdigestedresponse' => array ( 0 => 'string', ), - 'SolrResponse::getHttpStatus' => + 'solrresponse::gethttpstatus' => array ( 0 => 'int', ), - 'SolrResponse::getHttpStatusMessage' => + 'solrresponse::gethttpstatusmessage' => array ( 0 => 'string', ), - 'SolrResponse::getRawRequest' => + 'solrresponse::getrawrequest' => array ( 0 => 'string', ), - 'SolrResponse::getRawRequestHeaders' => + 'solrresponse::getrawrequestheaders' => array ( 0 => 'string', ), - 'SolrResponse::getRawResponse' => + 'solrresponse::getrawresponse' => array ( 0 => 'string', ), - 'SolrResponse::getRawResponseHeaders' => + 'solrresponse::getrawresponseheaders' => array ( 0 => 'string', ), - 'SolrResponse::getRequestUrl' => + 'solrresponse::getrequesturl' => array ( 0 => 'string', ), - 'SolrResponse::getResponse' => + 'solrresponse::getresponse' => array ( 0 => 'SolrObject', ), - 'SolrResponse::setParseMode' => + 'solrresponse::setparsemode' => array ( 0 => 'bool', 'parser_mode=' => 'int', ), - 'SolrResponse::success' => + 'solrresponse::success' => array ( 0 => 'bool', ), - 'SolrServerException::__clone' => + 'solrserverexception::__clone' => array ( 0 => 'void', ), - 'SolrServerException::__construct' => + 'solrserverexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'SolrServerException::__toString' => + 'solrserverexception::__tostring' => array ( 0 => 'string', ), - 'SolrServerException::__wakeup' => + 'solrserverexception::__wakeup' => array ( 0 => 'void', ), - 'SolrServerException::getCode' => + 'solrserverexception::getcode' => array ( 0 => 'int', ), - 'SolrServerException::getFile' => + 'solrserverexception::getfile' => array ( 0 => 'string', ), - 'SolrServerException::getInternalInfo' => + 'solrserverexception::getinternalinfo' => array ( 0 => 'array', ), - 'SolrServerException::getLine' => + 'solrserverexception::getline' => array ( 0 => 'int', ), - 'SolrServerException::getMessage' => + 'solrserverexception::getmessage' => array ( 0 => 'string', ), - 'SolrServerException::getPrevious' => + 'solrserverexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'SolrServerException::getTrace' => + 'solrserverexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'SolrServerException::getTraceAsString' => + 'solrserverexception::gettraceasstring' => array ( 0 => 'string', ), - 'SolrUpdateResponse::__construct' => + 'solrupdateresponse::__construct' => array ( 0 => 'void', ), - 'SolrUpdateResponse::__destruct' => + 'solrupdateresponse::__destruct' => array ( 0 => 'void', ), - 'SolrUpdateResponse::getDigestedResponse' => + 'solrupdateresponse::getdigestedresponse' => array ( 0 => 'string', ), - 'SolrUpdateResponse::getHttpStatus' => + 'solrupdateresponse::gethttpstatus' => array ( 0 => 'int', ), - 'SolrUpdateResponse::getHttpStatusMessage' => + 'solrupdateresponse::gethttpstatusmessage' => array ( 0 => 'string', ), - 'SolrUpdateResponse::getRawRequest' => + 'solrupdateresponse::getrawrequest' => array ( 0 => 'string', ), - 'SolrUpdateResponse::getRawRequestHeaders' => + 'solrupdateresponse::getrawrequestheaders' => array ( 0 => 'string', ), - 'SolrUpdateResponse::getRawResponse' => + 'solrupdateresponse::getrawresponse' => array ( 0 => 'string', ), - 'SolrUpdateResponse::getRawResponseHeaders' => + 'solrupdateresponse::getrawresponseheaders' => array ( 0 => 'string', ), - 'SolrUpdateResponse::getRequestUrl' => + 'solrupdateresponse::getrequesturl' => array ( 0 => 'string', ), - 'SolrUpdateResponse::getResponse' => + 'solrupdateresponse::getresponse' => array ( 0 => 'SolrObject', ), - 'SolrUpdateResponse::setParseMode' => + 'solrupdateresponse::setparsemode' => array ( 0 => 'bool', 'parser_mode=' => 'int', ), - 'SolrUpdateResponse::success' => + 'solrupdateresponse::success' => array ( 0 => 'bool', ), - 'SolrUtils::digestXmlResponse' => + 'solrutils::digestxmlresponse' => array ( 0 => 'SolrObject', 'xmlresponse' => 'string', 'parse_mode=' => 'int', ), - 'SolrUtils::escapeQueryChars' => + 'solrutils::escapequerychars' => array ( 0 => 'false|string', 'string' => 'string', ), - 'SolrUtils::getSolrVersion' => + 'solrutils::getsolrversion' => array ( 0 => 'string', ), - 'SolrUtils::queryPhrase' => + 'solrutils::queryphrase' => array ( 0 => 'string', 'string' => 'string', ), - 'SphinxClient::__construct' => + 'sphinxclient::__construct' => array ( 0 => 'void', ), - 'SphinxClient::addQuery' => + 'sphinxclient::addquery' => array ( 0 => 'int', 'query' => 'string', 'index=' => 'string', 'comment=' => 'string', ), - 'SphinxClient::buildExcerpts' => + 'sphinxclient::buildexcerpts' => array ( 0 => 'array', 'docs' => 'array', @@ -37606,76 +37606,76 @@ 'words' => 'string', 'opts=' => 'array', ), - 'SphinxClient::buildKeywords' => + 'sphinxclient::buildkeywords' => array ( 0 => 'array', 'query' => 'string', 'index' => 'string', 'hits' => 'bool', ), - 'SphinxClient::close' => + 'sphinxclient::close' => array ( 0 => 'bool', ), - 'SphinxClient::escapeString' => + 'sphinxclient::escapestring' => array ( 0 => 'string', 'string' => 'string', ), - 'SphinxClient::getLastError' => + 'sphinxclient::getlasterror' => array ( 0 => 'string', ), - 'SphinxClient::getLastWarning' => + 'sphinxclient::getlastwarning' => array ( 0 => 'string', ), - 'SphinxClient::open' => + 'sphinxclient::open' => array ( 0 => 'bool', ), - 'SphinxClient::query' => + 'sphinxclient::query' => array ( 0 => 'array', 'query' => 'string', 'index=' => 'string', 'comment=' => 'string', ), - 'SphinxClient::resetFilters' => + 'sphinxclient::resetfilters' => array ( 0 => 'void', ), - 'SphinxClient::resetGroupBy' => + 'sphinxclient::resetgroupby' => array ( 0 => 'void', ), - 'SphinxClient::runQueries' => + 'sphinxclient::runqueries' => array ( 0 => 'array', ), - 'SphinxClient::setArrayResult' => + 'sphinxclient::setarrayresult' => array ( 0 => 'bool', 'array_result' => 'bool', ), - 'SphinxClient::setConnectTimeout' => + 'sphinxclient::setconnecttimeout' => array ( 0 => 'bool', 'timeout' => 'float', ), - 'SphinxClient::setFieldWeights' => + 'sphinxclient::setfieldweights' => array ( 0 => 'bool', 'weights' => 'array', ), - 'SphinxClient::setFilter' => + 'sphinxclient::setfilter' => array ( 0 => 'bool', 'attribute' => 'string', 'values' => 'array', 'exclude=' => 'bool', ), - 'SphinxClient::setFilterFloatRange' => + 'sphinxclient::setfilterfloatrange' => array ( 0 => 'bool', 'attribute' => 'string', @@ -37683,7 +37683,7 @@ 'max' => 'float', 'exclude=' => 'bool', ), - 'SphinxClient::setFilterRange' => + 'sphinxclient::setfilterrange' => array ( 0 => 'bool', 'attribute' => 'string', @@ -37691,7 +37691,7 @@ 'max' => 'int', 'exclude=' => 'bool', ), - 'SphinxClient::setGeoAnchor' => + 'sphinxclient::setgeoanchor' => array ( 0 => 'bool', 'attrlat' => 'string', @@ -37699,30 +37699,30 @@ 'latitude' => 'float', 'longitude' => 'float', ), - 'SphinxClient::setGroupBy' => + 'sphinxclient::setgroupby' => array ( 0 => 'bool', 'attribute' => 'string', 'func' => 'int', 'groupsort=' => 'string', ), - 'SphinxClient::setGroupDistinct' => + 'sphinxclient::setgroupdistinct' => array ( 0 => 'bool', 'attribute' => 'string', ), - 'SphinxClient::setIDRange' => + 'sphinxclient::setidrange' => array ( 0 => 'bool', 'min' => 'int', 'max' => 'int', ), - 'SphinxClient::setIndexWeights' => + 'sphinxclient::setindexweights' => array ( 0 => 'bool', 'weights' => 'array', ), - 'SphinxClient::setLimits' => + 'sphinxclient::setlimits' => array ( 0 => 'bool', 'offset' => 'int', @@ -37730,56 +37730,56 @@ 'max_matches=' => 'int', 'cutoff=' => 'int', ), - 'SphinxClient::setMatchMode' => + 'sphinxclient::setmatchmode' => array ( 0 => 'bool', 'mode' => 'int', ), - 'SphinxClient::setMaxQueryTime' => + 'sphinxclient::setmaxquerytime' => array ( 0 => 'bool', 'qtime' => 'int', ), - 'SphinxClient::setOverride' => + 'sphinxclient::setoverride' => array ( 0 => 'bool', 'attribute' => 'string', 'type' => 'int', 'values' => 'array', ), - 'SphinxClient::setRankingMode' => + 'sphinxclient::setrankingmode' => array ( 0 => 'bool', 'ranker' => 'int', ), - 'SphinxClient::setRetries' => + 'sphinxclient::setretries' => array ( 0 => 'bool', 'count' => 'int', 'delay=' => 'int', ), - 'SphinxClient::setSelect' => + 'sphinxclient::setselect' => array ( 0 => 'bool', 'clause' => 'string', ), - 'SphinxClient::setServer' => + 'sphinxclient::setserver' => array ( 0 => 'bool', 'server' => 'string', 'port' => 'int', ), - 'SphinxClient::setSortMode' => + 'sphinxclient::setsortmode' => array ( 0 => 'bool', 'mode' => 'int', 'sortby=' => 'string', ), - 'SphinxClient::status' => + 'sphinxclient::status' => array ( 0 => 'array', ), - 'SphinxClient::updateAttributes' => + 'sphinxclient::updateattributes' => array ( 0 => 'int', 'index' => 'string', @@ -37787,250 +37787,250 @@ 'values' => 'array', 'mva=' => 'bool', ), - 'SplDoublyLinkedList::__construct' => + 'spldoublylinkedlist::__construct' => array ( 0 => 'void', ), - 'SplDoublyLinkedList::add' => + 'spldoublylinkedlist::add' => array ( 0 => 'void', 'index' => 'int', 'value' => 'mixed', ), - 'SplDoublyLinkedList::bottom' => + 'spldoublylinkedlist::bottom' => array ( 0 => 'mixed', ), - 'SplDoublyLinkedList::count' => + 'spldoublylinkedlist::count' => array ( 0 => 'int', ), - 'SplDoublyLinkedList::current' => + 'spldoublylinkedlist::current' => array ( 0 => 'mixed', ), - 'SplDoublyLinkedList::getIteratorMode' => + 'spldoublylinkedlist::getiteratormode' => array ( 0 => 'int', ), - 'SplDoublyLinkedList::isEmpty' => + 'spldoublylinkedlist::isempty' => array ( 0 => 'bool', ), - 'SplDoublyLinkedList::key' => + 'spldoublylinkedlist::key' => array ( 0 => 'int', ), - 'SplDoublyLinkedList::next' => + 'spldoublylinkedlist::next' => array ( 0 => 'void', ), - 'SplDoublyLinkedList::offsetExists' => + 'spldoublylinkedlist::offsetexists' => array ( 0 => 'bool', 'index' => 'int', ), - 'SplDoublyLinkedList::offsetGet' => + 'spldoublylinkedlist::offsetget' => array ( 0 => 'mixed', 'index' => 'int', ), - 'SplDoublyLinkedList::offsetSet' => + 'spldoublylinkedlist::offsetset' => array ( 0 => 'void', 'index' => 'int|null', 'value' => 'mixed', ), - 'SplDoublyLinkedList::offsetUnset' => + 'spldoublylinkedlist::offsetunset' => array ( 0 => 'void', 'index' => 'int', ), - 'SplDoublyLinkedList::pop' => + 'spldoublylinkedlist::pop' => array ( 0 => 'mixed', ), - 'SplDoublyLinkedList::prev' => + 'spldoublylinkedlist::prev' => array ( 0 => 'void', ), - 'SplDoublyLinkedList::push' => + 'spldoublylinkedlist::push' => array ( 0 => 'void', 'value' => 'mixed', ), - 'SplDoublyLinkedList::rewind' => + 'spldoublylinkedlist::rewind' => array ( 0 => 'void', ), - 'SplDoublyLinkedList::serialize' => + 'spldoublylinkedlist::serialize' => array ( 0 => 'string', ), - 'SplDoublyLinkedList::setIteratorMode' => + 'spldoublylinkedlist::setiteratormode' => array ( 0 => 'int', 'mode' => 'int', ), - 'SplDoublyLinkedList::shift' => + 'spldoublylinkedlist::shift' => array ( 0 => 'mixed', ), - 'SplDoublyLinkedList::top' => + 'spldoublylinkedlist::top' => array ( 0 => 'mixed', ), - 'SplDoublyLinkedList::unserialize' => + 'spldoublylinkedlist::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'SplDoublyLinkedList::unshift' => + 'spldoublylinkedlist::unshift' => array ( 0 => 'void', 'value' => 'mixed', ), - 'SplDoublyLinkedList::valid' => + 'spldoublylinkedlist::valid' => array ( 0 => 'bool', ), - 'SplEnum::__construct' => + 'splenum::__construct' => array ( 0 => 'void', 'initial_value=' => 'mixed', 'strict=' => 'bool', ), - 'SplEnum::getConstList' => + 'splenum::getconstlist' => array ( 0 => 'array', 'include_default=' => 'bool', ), - 'SplFileInfo::__construct' => + 'splfileinfo::__construct' => array ( 0 => 'void', 'filename' => 'string', ), - 'SplFileInfo::__toString' => + 'splfileinfo::__tostring' => array ( 0 => 'string', ), - 'SplFileInfo::getATime' => + 'splfileinfo::getatime' => array ( 0 => 'false|int', ), - 'SplFileInfo::getBasename' => + 'splfileinfo::getbasename' => array ( 0 => 'string', 'suffix=' => 'string', ), - 'SplFileInfo::getCTime' => + 'splfileinfo::getctime' => array ( 0 => 'false|int', ), - 'SplFileInfo::getExtension' => + 'splfileinfo::getextension' => array ( 0 => 'string', ), - 'SplFileInfo::getFileInfo' => + 'splfileinfo::getfileinfo' => array ( 0 => 'SplFileInfo', 'class=' => 'class-string', ), - 'SplFileInfo::getFilename' => + 'splfileinfo::getfilename' => array ( 0 => 'string', ), - 'SplFileInfo::getGroup' => + 'splfileinfo::getgroup' => array ( 0 => 'false|int', ), - 'SplFileInfo::getInode' => + 'splfileinfo::getinode' => array ( 0 => 'false|int', ), - 'SplFileInfo::getLinkTarget' => + 'splfileinfo::getlinktarget' => array ( 0 => 'false|string', ), - 'SplFileInfo::getMTime' => + 'splfileinfo::getmtime' => array ( 0 => 'false|int', ), - 'SplFileInfo::getOwner' => + 'splfileinfo::getowner' => array ( 0 => 'false|int', ), - 'SplFileInfo::getPath' => + 'splfileinfo::getpath' => array ( 0 => 'string', ), - 'SplFileInfo::getPathInfo' => + 'splfileinfo::getpathinfo' => array ( 0 => 'SplFileInfo|null', 'class=' => 'class-string', ), - 'SplFileInfo::getPathname' => + 'splfileinfo::getpathname' => array ( 0 => 'string', ), - 'SplFileInfo::getPerms' => + 'splfileinfo::getperms' => array ( 0 => 'false|int', ), - 'SplFileInfo::getRealPath' => + 'splfileinfo::getrealpath' => array ( 0 => 'false|non-falsy-string', ), - 'SplFileInfo::getSize' => + 'splfileinfo::getsize' => array ( 0 => 'false|int', ), - 'SplFileInfo::getType' => + 'splfileinfo::gettype' => array ( 0 => 'false|string', ), - 'SplFileInfo::isDir' => + 'splfileinfo::isdir' => array ( 0 => 'bool', ), - 'SplFileInfo::isExecutable' => + 'splfileinfo::isexecutable' => array ( 0 => 'bool', ), - 'SplFileInfo::isFile' => + 'splfileinfo::isfile' => array ( 0 => 'bool', ), - 'SplFileInfo::isLink' => + 'splfileinfo::islink' => array ( 0 => 'bool', ), - 'SplFileInfo::isReadable' => + 'splfileinfo::isreadable' => array ( 0 => 'bool', ), - 'SplFileInfo::isWritable' => + 'splfileinfo::iswritable' => array ( 0 => 'bool', ), - 'SplFileInfo::openFile' => + 'splfileinfo::openfile' => array ( 0 => 'SplFileObject', 'mode=' => 'string', 'useIncludePath=' => 'bool', 'context=' => 'resource', ), - 'SplFileInfo::setFileClass' => + 'splfileinfo::setfileclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'SplFileInfo::setInfoClass' => + 'splfileinfo::setinfoclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'SplFileObject::__construct' => + 'splfileobject::__construct' => array ( 0 => 'void', 'filename' => 'string', @@ -38038,53 +38038,53 @@ 'useIncludePath=' => 'bool', 'context=' => 'null|resource', ), - 'SplFileObject::__toString' => + 'splfileobject::__tostring' => array ( 0 => 'string', ), - 'SplFileObject::current' => + 'splfileobject::current' => array ( 0 => 'array|false|string', ), - 'SplFileObject::eof' => + 'splfileobject::eof' => array ( 0 => 'bool', ), - 'SplFileObject::fflush' => + 'splfileobject::fflush' => array ( 0 => 'bool', ), - 'SplFileObject::fgetc' => + 'splfileobject::fgetc' => array ( 0 => 'false|string', ), - 'SplFileObject::fgetcsv' => + 'splfileobject::fgetcsv' => array ( 0 => 'array{0?: null|string, ..., string>}|false', 'separator=' => 'string', 'enclosure=' => 'string', 'escape=' => 'string', ), - 'SplFileObject::fgets' => + 'splfileobject::fgets' => array ( 0 => 'false|string', ), - 'SplFileObject::fgetss' => + 'splfileobject::fgetss' => array ( 0 => 'false|string', 'allowable_tags=' => 'string', ), - 'SplFileObject::flock' => + 'splfileobject::flock' => array ( 0 => 'bool', 'operation' => 'int', '&w_wouldBlock=' => 'int', ), - 'SplFileObject::fpassthru' => + 'splfileobject::fpassthru' => array ( 0 => 'int', ), - 'SplFileObject::fputcsv' => + 'splfileobject::fputcsv' => array ( 0 => 'false|int', 'fields' => 'array', @@ -38092,858 +38092,858 @@ 'enclosure=' => 'string', 'escape=' => 'string', ), - 'SplFileObject::fread' => + 'splfileobject::fread' => array ( 0 => 'false|string', 'length' => 'int', ), - 'SplFileObject::fscanf' => + 'splfileobject::fscanf' => array ( 0 => 'array|int', 'format' => 'string', '&...w_vars=' => 'float|int|string', ), - 'SplFileObject::fseek' => + 'splfileobject::fseek' => array ( 0 => 'int', 'offset' => 'int', 'whence=' => 'int', ), - 'SplFileObject::fstat' => + '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' => + 'splfileobject::ftell' => array ( 0 => 'false|int', ), - 'SplFileObject::ftruncate' => + 'splfileobject::ftruncate' => array ( 0 => 'bool', 'size' => 'int', ), - 'SplFileObject::fwrite' => + 'splfileobject::fwrite' => array ( 0 => 'int', 'data' => 'string', 'length=' => 'int', ), - 'SplFileObject::getATime' => + 'splfileobject::getatime' => array ( 0 => 'false|int', ), - 'SplFileObject::getBasename' => + 'splfileobject::getbasename' => array ( 0 => 'string', 'suffix=' => 'string', ), - 'SplFileObject::getCTime' => + 'splfileobject::getctime' => array ( 0 => 'false|int', ), - 'SplFileObject::getChildren' => + 'splfileobject::getchildren' => array ( 0 => 'null', ), - 'SplFileObject::getCsvControl' => + 'splfileobject::getcsvcontrol' => array ( 0 => 'array', ), - 'SplFileObject::getCurrentLine' => + 'splfileobject::getcurrentline' => array ( 0 => 'false|string', ), - 'SplFileObject::getExtension' => + 'splfileobject::getextension' => array ( 0 => 'string', ), - 'SplFileObject::getFileInfo' => + 'splfileobject::getfileinfo' => array ( 0 => 'SplFileInfo', 'class=' => 'class-string', ), - 'SplFileObject::getFilename' => + 'splfileobject::getfilename' => array ( 0 => 'string', ), - 'SplFileObject::getFlags' => + 'splfileobject::getflags' => array ( 0 => 'int', ), - 'SplFileObject::getGroup' => + 'splfileobject::getgroup' => array ( 0 => 'false|int', ), - 'SplFileObject::getInode' => + 'splfileobject::getinode' => array ( 0 => 'false|int', ), - 'SplFileObject::getLinkTarget' => + 'splfileobject::getlinktarget' => array ( 0 => 'false|string', ), - 'SplFileObject::getMaxLineLen' => + 'splfileobject::getmaxlinelen' => array ( 0 => 'int', ), - 'SplFileObject::getMTime' => + 'splfileobject::getmtime' => array ( 0 => 'false|int', ), - 'SplFileObject::getOwner' => + 'splfileobject::getowner' => array ( 0 => 'false|int', ), - 'SplFileObject::getPath' => + 'splfileobject::getpath' => array ( 0 => 'string', ), - 'SplFileObject::getPathInfo' => + 'splfileobject::getpathinfo' => array ( 0 => 'SplFileInfo|null', 'class=' => 'class-string', ), - 'SplFileObject::getPathname' => + 'splfileobject::getpathname' => array ( 0 => 'string', ), - 'SplFileObject::getPerms' => + 'splfileobject::getperms' => array ( 0 => 'false|int', ), - 'SplFileObject::getRealPath' => + 'splfileobject::getrealpath' => array ( 0 => 'false|non-falsy-string', ), - 'SplFileObject::getSize' => + 'splfileobject::getsize' => array ( 0 => 'false|int', ), - 'SplFileObject::getType' => + 'splfileobject::gettype' => array ( 0 => 'false|string', ), - 'SplFileObject::hasChildren' => + 'splfileobject::haschildren' => array ( 0 => 'false', ), - 'SplFileObject::isDir' => + 'splfileobject::isdir' => array ( 0 => 'bool', ), - 'SplFileObject::isExecutable' => + 'splfileobject::isexecutable' => array ( 0 => 'bool', ), - 'SplFileObject::isFile' => + 'splfileobject::isfile' => array ( 0 => 'bool', ), - 'SplFileObject::isLink' => + 'splfileobject::islink' => array ( 0 => 'bool', ), - 'SplFileObject::isReadable' => + 'splfileobject::isreadable' => array ( 0 => 'bool', ), - 'SplFileObject::isWritable' => + 'splfileobject::iswritable' => array ( 0 => 'bool', ), - 'SplFileObject::key' => + 'splfileobject::key' => array ( 0 => 'int', ), - 'SplFileObject::next' => + 'splfileobject::next' => array ( 0 => 'void', ), - 'SplFileObject::openFile' => + 'splfileobject::openfile' => array ( 0 => 'SplFileObject', 'mode=' => 'string', 'useIncludePath=' => 'bool', 'context=' => 'resource', ), - 'SplFileObject::rewind' => + 'splfileobject::rewind' => array ( 0 => 'void', ), - 'SplFileObject::seek' => + 'splfileobject::seek' => array ( 0 => 'void', 'line' => 'int', ), - 'SplFileObject::setCsvControl' => + 'splfileobject::setcsvcontrol' => array ( 0 => 'void', 'separator=' => 'string', 'enclosure=' => 'string', 'escape=' => 'string', ), - 'SplFileObject::setFileClass' => + 'splfileobject::setfileclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'SplFileObject::setFlags' => + 'splfileobject::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'SplFileObject::setInfoClass' => + 'splfileobject::setinfoclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'SplFileObject::setMaxLineLen' => + 'splfileobject::setmaxlinelen' => array ( 0 => 'void', 'maxLength' => 'int', ), - 'SplFileObject::valid' => + 'splfileobject::valid' => array ( 0 => 'bool', ), - 'SplFixedArray::__construct' => + 'splfixedarray::__construct' => array ( 0 => 'void', 'size=' => 'int', ), - 'SplFixedArray::__wakeup' => + 'splfixedarray::__wakeup' => array ( 0 => 'void', ), - 'SplFixedArray::count' => + 'splfixedarray::count' => array ( 0 => 'int', ), - 'SplFixedArray::current' => + 'splfixedarray::current' => array ( 0 => 'mixed', ), - 'SplFixedArray::fromArray' => + 'splfixedarray::fromarray' => array ( 0 => 'SplFixedArray', 'array' => 'array', 'preserveKeys=' => 'bool', ), - 'SplFixedArray::getSize' => + 'splfixedarray::getsize' => array ( 0 => 'int', ), - 'SplFixedArray::key' => + 'splfixedarray::key' => array ( 0 => 'int', ), - 'SplFixedArray::next' => + 'splfixedarray::next' => array ( 0 => 'void', ), - 'SplFixedArray::offsetExists' => + 'splfixedarray::offsetexists' => array ( 0 => 'bool', 'index' => 'int', ), - 'SplFixedArray::offsetGet' => + 'splfixedarray::offsetget' => array ( 0 => 'mixed', 'index' => 'int', ), - 'SplFixedArray::offsetSet' => + 'splfixedarray::offsetset' => array ( 0 => 'void', 'index' => 'int', 'value' => 'mixed', ), - 'SplFixedArray::offsetUnset' => + 'splfixedarray::offsetunset' => array ( 0 => 'void', 'index' => 'int', ), - 'SplFixedArray::rewind' => + 'splfixedarray::rewind' => array ( 0 => 'void', ), - 'SplFixedArray::setSize' => + 'splfixedarray::setsize' => array ( 0 => 'bool', 'size' => 'int', ), - 'SplFixedArray::toArray' => + 'splfixedarray::toarray' => array ( 0 => 'array', ), - 'SplFixedArray::valid' => + 'splfixedarray::valid' => array ( 0 => 'bool', ), - 'SplHeap::__construct' => + 'splheap::__construct' => array ( 0 => 'void', ), - 'SplHeap::compare' => + 'splheap::compare' => array ( 0 => 'int', 'value1' => 'mixed', 'value2' => 'mixed', ), - 'SplHeap::count' => + 'splheap::count' => array ( 0 => 'int', ), - 'SplHeap::current' => + 'splheap::current' => array ( 0 => 'mixed', ), - 'SplHeap::extract' => + 'splheap::extract' => array ( 0 => 'mixed', ), - 'SplHeap::insert' => + 'splheap::insert' => array ( 0 => 'bool', 'value' => 'mixed', ), - 'SplHeap::isCorrupted' => + 'splheap::iscorrupted' => array ( 0 => 'bool', ), - 'SplHeap::isEmpty' => + 'splheap::isempty' => array ( 0 => 'bool', ), - 'SplHeap::key' => + 'splheap::key' => array ( 0 => 'int', ), - 'SplHeap::next' => + 'splheap::next' => array ( 0 => 'void', ), - 'SplHeap::recoverFromCorruption' => + 'splheap::recoverfromcorruption' => array ( 0 => 'true', ), - 'SplHeap::rewind' => + 'splheap::rewind' => array ( 0 => 'void', ), - 'SplHeap::top' => + 'splheap::top' => array ( 0 => 'mixed', ), - 'SplHeap::valid' => + 'splheap::valid' => array ( 0 => 'bool', ), - 'SplMaxHeap::__construct' => + 'splmaxheap::__construct' => array ( 0 => 'void', ), - 'SplMaxHeap::compare' => + 'splmaxheap::compare' => array ( 0 => 'int', 'value1' => 'mixed', 'value2' => 'mixed', ), - 'SplMinHeap::compare' => + 'splminheap::compare' => array ( 0 => 'int', 'value1' => 'mixed', 'value2' => 'mixed', ), - 'SplMinHeap::count' => + 'splminheap::count' => array ( 0 => 'int', ), - 'SplMinHeap::current' => + 'splminheap::current' => array ( 0 => 'mixed', ), - 'SplMinHeap::extract' => + 'splminheap::extract' => array ( 0 => 'mixed', ), - 'SplMinHeap::insert' => + 'splminheap::insert' => array ( 0 => 'true', 'value' => 'mixed', ), - 'SplMinHeap::isCorrupted' => + 'splminheap::iscorrupted' => array ( 0 => 'bool', ), - 'SplMinHeap::isEmpty' => + 'splminheap::isempty' => array ( 0 => 'bool', ), - 'SplMinHeap::key' => + 'splminheap::key' => array ( 0 => 'int', ), - 'SplMinHeap::next' => + 'splminheap::next' => array ( 0 => 'void', ), - 'SplMinHeap::recoverFromCorruption' => + 'splminheap::recoverfromcorruption' => array ( 0 => 'true', ), - 'SplMinHeap::rewind' => + 'splminheap::rewind' => array ( 0 => 'void', ), - 'SplMinHeap::top' => + 'splminheap::top' => array ( 0 => 'mixed', ), - 'SplMinHeap::valid' => + 'splminheap::valid' => array ( 0 => 'bool', ), - 'SplObjectStorage::__construct' => + 'splobjectstorage::__construct' => array ( 0 => 'void', ), - 'SplObjectStorage::addAll' => + 'splobjectstorage::addall' => array ( 0 => 'int', 'storage' => 'SplObjectStorage', ), - 'SplObjectStorage::attach' => + 'splobjectstorage::attach' => array ( 0 => 'void', 'object' => 'object', 'info=' => 'mixed', ), - 'SplObjectStorage::contains' => + 'splobjectstorage::contains' => array ( 0 => 'bool', 'object' => 'object', ), - 'SplObjectStorage::count' => + 'splobjectstorage::count' => array ( 0 => 'int', 'mode=' => 'int', ), - 'SplObjectStorage::current' => + 'splobjectstorage::current' => array ( 0 => 'object', ), - 'SplObjectStorage::detach' => + 'splobjectstorage::detach' => array ( 0 => 'void', 'object' => 'object', ), - 'SplObjectStorage::getHash' => + 'splobjectstorage::gethash' => array ( 0 => 'string', 'object' => 'object', ), - 'SplObjectStorage::getInfo' => + 'splobjectstorage::getinfo' => array ( 0 => 'mixed', ), - 'SplObjectStorage::key' => + 'splobjectstorage::key' => array ( 0 => 'int', ), - 'SplObjectStorage::next' => + 'splobjectstorage::next' => array ( 0 => 'void', ), - 'SplObjectStorage::offsetExists' => + 'splobjectstorage::offsetexists' => array ( 0 => 'bool', 'object' => 'object', ), - 'SplObjectStorage::offsetGet' => + 'splobjectstorage::offsetget' => array ( 0 => 'mixed', 'object' => 'object', ), - 'SplObjectStorage::offsetSet' => + 'splobjectstorage::offsetset' => array ( 0 => 'void', 'object' => 'object', 'info=' => 'mixed', ), - 'SplObjectStorage::offsetUnset' => + 'splobjectstorage::offsetunset' => array ( 0 => 'void', 'object' => 'object', ), - 'SplObjectStorage::removeAll' => + 'splobjectstorage::removeall' => array ( 0 => 'int', 'storage' => 'SplObjectStorage', ), - 'SplObjectStorage::removeAllExcept' => + 'splobjectstorage::removeallexcept' => array ( 0 => 'int', 'storage' => 'SplObjectStorage', ), - 'SplObjectStorage::rewind' => + 'splobjectstorage::rewind' => array ( 0 => 'void', ), - 'SplObjectStorage::serialize' => + 'splobjectstorage::serialize' => array ( 0 => 'string', ), - 'SplObjectStorage::setInfo' => + 'splobjectstorage::setinfo' => array ( 0 => 'void', 'info' => 'mixed', ), - 'SplObjectStorage::unserialize' => + 'splobjectstorage::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'SplObjectStorage::valid' => + 'splobjectstorage::valid' => array ( 0 => 'bool', ), - 'SplObserver::update' => + 'splobserver::update' => array ( 0 => 'void', 'subject' => 'SplSubject', ), - 'SplPriorityQueue::__construct' => + 'splpriorityqueue::__construct' => array ( 0 => 'void', ), - 'SplPriorityQueue::compare' => + 'splpriorityqueue::compare' => array ( 0 => 'int', 'priority1' => 'mixed', 'priority2' => 'mixed', ), - 'SplPriorityQueue::count' => + 'splpriorityqueue::count' => array ( 0 => 'int', ), - 'SplPriorityQueue::current' => + 'splpriorityqueue::current' => array ( 0 => 'mixed', ), - 'SplPriorityQueue::extract' => + 'splpriorityqueue::extract' => array ( 0 => 'mixed', ), - 'SplPriorityQueue::getExtractFlags' => + 'splpriorityqueue::getextractflags' => array ( 0 => 'int', ), - 'SplPriorityQueue::insert' => + 'splpriorityqueue::insert' => array ( 0 => 'bool', 'value' => 'mixed', 'priority' => 'mixed', ), - 'SplPriorityQueue::isEmpty' => + 'splpriorityqueue::isempty' => array ( 0 => 'bool', ), - 'SplPriorityQueue::key' => + 'splpriorityqueue::key' => array ( 0 => 'int', ), - 'SplPriorityQueue::next' => + 'splpriorityqueue::next' => array ( 0 => 'void', ), - 'SplPriorityQueue::recoverFromCorruption' => + 'splpriorityqueue::recoverfromcorruption' => array ( 0 => 'void', ), - 'SplPriorityQueue::rewind' => + 'splpriorityqueue::rewind' => array ( 0 => 'void', ), - 'SplPriorityQueue::setExtractFlags' => + 'splpriorityqueue::setextractflags' => array ( 0 => 'int', 'flags' => 'int', ), - 'SplPriorityQueue::top' => + 'splpriorityqueue::top' => array ( 0 => 'mixed', ), - 'SplPriorityQueue::valid' => + 'splpriorityqueue::valid' => array ( 0 => 'bool', ), - 'SplQueue::dequeue' => + 'splqueue::dequeue' => array ( 0 => 'mixed', ), - 'SplQueue::enqueue' => + 'splqueue::enqueue' => array ( 0 => 'void', 'value' => 'mixed', ), - 'SplQueue::getIteratorMode' => + 'splqueue::getiteratormode' => array ( 0 => 'int', ), - 'SplQueue::isEmpty' => + 'splqueue::isempty' => array ( 0 => 'bool', ), - 'SplQueue::key' => + 'splqueue::key' => array ( 0 => 'int', ), - 'SplQueue::next' => + 'splqueue::next' => array ( 0 => 'void', ), - 'SplQueue::offsetExists' => + 'splqueue::offsetexists' => array ( 0 => 'bool', 'index' => 'mixed', ), - 'SplQueue::offsetGet' => + 'splqueue::offsetget' => array ( 0 => 'mixed', 'index' => 'mixed', ), - 'SplQueue::offsetSet' => + 'splqueue::offsetset' => array ( 0 => 'void', 'index' => 'int|null', 'value' => 'mixed', ), - 'SplQueue::offsetUnset' => + 'splqueue::offsetunset' => array ( 0 => 'void', 'index' => 'mixed', ), - 'SplQueue::pop' => + 'splqueue::pop' => array ( 0 => 'mixed', ), - 'SplQueue::prev' => + 'splqueue::prev' => array ( 0 => 'void', ), - 'SplQueue::push' => + 'splqueue::push' => array ( 0 => 'void', 'value' => 'mixed', ), - 'SplQueue::rewind' => + 'splqueue::rewind' => array ( 0 => 'void', ), - 'SplQueue::serialize' => + 'splqueue::serialize' => array ( 0 => 'string', ), - 'SplQueue::setIteratorMode' => + 'splqueue::setiteratormode' => array ( 0 => 'int', 'mode' => 'int', ), - 'SplQueue::shift' => + 'splqueue::shift' => array ( 0 => 'mixed', ), - 'SplQueue::top' => + 'splqueue::top' => array ( 0 => 'mixed', ), - 'SplQueue::unserialize' => + 'splqueue::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'SplQueue::unshift' => + 'splqueue::unshift' => array ( 0 => 'void', 'value' => 'mixed', ), - 'SplQueue::valid' => + 'splqueue::valid' => array ( 0 => 'bool', ), - 'SplStack::__construct' => + 'splstack::__construct' => array ( 0 => 'void', ), - 'SplStack::add' => + 'splstack::add' => array ( 0 => 'void', 'index' => 'int', 'value' => 'mixed', ), - 'SplStack::bottom' => + 'splstack::bottom' => array ( 0 => 'mixed', ), - 'SplStack::count' => + 'splstack::count' => array ( 0 => 'int', ), - 'SplStack::current' => + 'splstack::current' => array ( 0 => 'mixed', ), - 'SplStack::getIteratorMode' => + 'splstack::getiteratormode' => array ( 0 => 'int', ), - 'SplStack::isEmpty' => + 'splstack::isempty' => array ( 0 => 'bool', ), - 'SplStack::key' => + 'splstack::key' => array ( 0 => 'int', ), - 'SplStack::next' => + 'splstack::next' => array ( 0 => 'void', ), - 'SplStack::offsetExists' => + 'splstack::offsetexists' => array ( 0 => 'bool', 'index' => 'mixed', ), - 'SplStack::offsetGet' => + 'splstack::offsetget' => array ( 0 => 'mixed', 'index' => 'mixed', ), - 'SplStack::offsetSet' => + 'splstack::offsetset' => array ( 0 => 'void', 'index' => 'int|null', 'value' => 'mixed', ), - 'SplStack::offsetUnset' => + 'splstack::offsetunset' => array ( 0 => 'void', 'index' => 'mixed', ), - 'SplStack::pop' => + 'splstack::pop' => array ( 0 => 'mixed', ), - 'SplStack::prev' => + 'splstack::prev' => array ( 0 => 'void', ), - 'SplStack::push' => + 'splstack::push' => array ( 0 => 'void', 'value' => 'mixed', ), - 'SplStack::rewind' => + 'splstack::rewind' => array ( 0 => 'void', ), - 'SplStack::serialize' => + 'splstack::serialize' => array ( 0 => 'string', ), - 'SplStack::setIteratorMode' => + 'splstack::setiteratormode' => array ( 0 => 'int', 'mode' => 'int', ), - 'SplStack::shift' => + 'splstack::shift' => array ( 0 => 'mixed', ), - 'SplStack::top' => + 'splstack::top' => array ( 0 => 'mixed', ), - 'SplStack::unserialize' => + 'splstack::unserialize' => array ( 0 => 'void', 'data' => 'string', ), - 'SplStack::unshift' => + 'splstack::unshift' => array ( 0 => 'void', 'value' => 'mixed', ), - 'SplStack::valid' => + 'splstack::valid' => array ( 0 => 'bool', ), - 'SplSubject::attach' => + 'splsubject::attach' => array ( 0 => 'void', 'observer' => 'SplObserver', ), - 'SplSubject::detach' => + 'splsubject::detach' => array ( 0 => 'void', 'observer' => 'SplObserver', ), - 'SplSubject::notify' => + 'splsubject::notify' => array ( 0 => 'void', ), - 'SplTempFileObject::__construct' => + 'spltempfileobject::__construct' => array ( 0 => 'void', 'maxMemory=' => 'int', ), - 'SplTempFileObject::__toString' => + 'spltempfileobject::__tostring' => array ( 0 => 'string', ), - 'SplTempFileObject::current' => + 'spltempfileobject::current' => array ( 0 => 'array|false|string', ), - 'SplTempFileObject::eof' => + 'spltempfileobject::eof' => array ( 0 => 'bool', ), - 'SplTempFileObject::fflush' => + 'spltempfileobject::fflush' => array ( 0 => 'bool', ), - 'SplTempFileObject::fgetc' => + 'spltempfileobject::fgetc' => array ( 0 => 'false|string', ), - 'SplTempFileObject::fgetcsv' => + 'spltempfileobject::fgetcsv' => array ( 0 => 'array{0?: null|string, ..., string>}|false', 'separator=' => 'string', 'enclosure=' => 'string', 'escape=' => 'string', ), - 'SplTempFileObject::fgets' => + 'spltempfileobject::fgets' => array ( 0 => 'string', ), - 'SplTempFileObject::fgetss' => + 'spltempfileobject::fgetss' => array ( 0 => 'string', 'allowable_tags=' => 'string', ), - 'SplTempFileObject::flock' => + 'spltempfileobject::flock' => array ( 0 => 'bool', 'operation' => 'int', '&w_wouldBlock=' => 'int', ), - 'SplTempFileObject::fpassthru' => + 'spltempfileobject::fpassthru' => array ( 0 => 'int', ), - 'SplTempFileObject::fputcsv' => + 'spltempfileobject::fputcsv' => array ( 0 => 'false|int', 'fields' => 'array', @@ -38951,259 +38951,259 @@ 'enclosure=' => 'string', 'escape=' => 'string', ), - 'SplTempFileObject::fread' => + 'spltempfileobject::fread' => array ( 0 => 'false|string', 'length' => 'int', ), - 'SplTempFileObject::fscanf' => + 'spltempfileobject::fscanf' => array ( 0 => 'array|int', 'format' => 'string', '&...w_vars=' => 'float|int|string', ), - 'SplTempFileObject::fseek' => + 'spltempfileobject::fseek' => array ( 0 => 'int', 'offset' => 'int', 'whence=' => 'int', ), - 'SplTempFileObject::fstat' => + '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' => + 'spltempfileobject::ftell' => array ( 0 => 'false|int', ), - 'SplTempFileObject::ftruncate' => + 'spltempfileobject::ftruncate' => array ( 0 => 'bool', 'size' => 'int', ), - 'SplTempFileObject::fwrite' => + 'spltempfileobject::fwrite' => array ( 0 => 'int', 'data' => 'string', 'length=' => 'int', ), - 'SplTempFileObject::getATime' => + 'spltempfileobject::getatime' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getBasename' => + 'spltempfileobject::getbasename' => array ( 0 => 'string', 'suffix=' => 'string', ), - 'SplTempFileObject::getCTime' => + 'spltempfileobject::getctime' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getChildren' => + 'spltempfileobject::getchildren' => array ( 0 => 'null', ), - 'SplTempFileObject::getCsvControl' => + 'spltempfileobject::getcsvcontrol' => array ( 0 => 'array', ), - 'SplTempFileObject::getCurrentLine' => + 'spltempfileobject::getcurrentline' => array ( 0 => 'string', ), - 'SplTempFileObject::getExtension' => + 'spltempfileobject::getextension' => array ( 0 => 'string', ), - 'SplTempFileObject::getFileInfo' => + 'spltempfileobject::getfileinfo' => array ( 0 => 'SplFileInfo', 'class=' => 'class-string', ), - 'SplTempFileObject::getFilename' => + 'spltempfileobject::getfilename' => array ( 0 => 'string', ), - 'SplTempFileObject::getFlags' => + 'spltempfileobject::getflags' => array ( 0 => 'int', ), - 'SplTempFileObject::getGroup' => + 'spltempfileobject::getgroup' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getInode' => + 'spltempfileobject::getinode' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getLinkTarget' => + 'spltempfileobject::getlinktarget' => array ( 0 => 'false|string', ), - 'SplTempFileObject::getMaxLineLen' => + 'spltempfileobject::getmaxlinelen' => array ( 0 => 'int', ), - 'SplTempFileObject::getMTime' => + 'spltempfileobject::getmtime' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getOwner' => + 'spltempfileobject::getowner' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getPath' => + 'spltempfileobject::getpath' => array ( 0 => 'string', ), - 'SplTempFileObject::getPathInfo' => + 'spltempfileobject::getpathinfo' => array ( 0 => 'SplFileInfo|null', 'class=' => 'class-string', ), - 'SplTempFileObject::getPathname' => + 'spltempfileobject::getpathname' => array ( 0 => 'string', ), - 'SplTempFileObject::getPerms' => + 'spltempfileobject::getperms' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getRealPath' => + 'spltempfileobject::getrealpath' => array ( 0 => 'false|non-falsy-string', ), - 'SplTempFileObject::getSize' => + 'spltempfileobject::getsize' => array ( 0 => 'false|int', ), - 'SplTempFileObject::getType' => + 'spltempfileobject::gettype' => array ( 0 => 'false|string', ), - 'SplTempFileObject::hasChildren' => + 'spltempfileobject::haschildren' => array ( 0 => 'false', ), - 'SplTempFileObject::isDir' => + 'spltempfileobject::isdir' => array ( 0 => 'bool', ), - 'SplTempFileObject::isExecutable' => + 'spltempfileobject::isexecutable' => array ( 0 => 'bool', ), - 'SplTempFileObject::isFile' => + 'spltempfileobject::isfile' => array ( 0 => 'bool', ), - 'SplTempFileObject::isLink' => + 'spltempfileobject::islink' => array ( 0 => 'bool', ), - 'SplTempFileObject::isReadable' => + 'spltempfileobject::isreadable' => array ( 0 => 'bool', ), - 'SplTempFileObject::isWritable' => + 'spltempfileobject::iswritable' => array ( 0 => 'bool', ), - 'SplTempFileObject::key' => + 'spltempfileobject::key' => array ( 0 => 'int', ), - 'SplTempFileObject::next' => + 'spltempfileobject::next' => array ( 0 => 'void', ), - 'SplTempFileObject::openFile' => + 'spltempfileobject::openfile' => array ( 0 => 'SplTempFileObject', 'mode=' => 'string', 'useIncludePath=' => 'bool', 'context=' => 'resource', ), - 'SplTempFileObject::rewind' => + 'spltempfileobject::rewind' => array ( 0 => 'void', ), - 'SplTempFileObject::seek' => + 'spltempfileobject::seek' => array ( 0 => 'void', 'line' => 'int', ), - 'SplTempFileObject::setCsvControl' => + 'spltempfileobject::setcsvcontrol' => array ( 0 => 'void', 'separator=' => 'string', 'enclosure=' => 'string', 'escape=' => 'string', ), - 'SplTempFileObject::setFileClass' => + 'spltempfileobject::setfileclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'SplTempFileObject::setFlags' => + 'spltempfileobject::setflags' => array ( 0 => 'void', 'flags' => 'int', ), - 'SplTempFileObject::setInfoClass' => + 'spltempfileobject::setinfoclass' => array ( 0 => 'void', 'class=' => 'class-string', ), - 'SplTempFileObject::setMaxLineLen' => + 'spltempfileobject::setmaxlinelen' => array ( 0 => 'void', 'maxLength' => 'int', ), - 'SplTempFileObject::valid' => + 'spltempfileobject::valid' => array ( 0 => 'bool', ), - 'SplType::__construct' => + 'spltype::__construct' => array ( 0 => 'void', 'initial_value=' => 'mixed', 'strict=' => 'bool', ), - 'Spoofchecker::__construct' => + 'spoofchecker::__construct' => array ( 0 => 'void', ), - 'Spoofchecker::areConfusable' => + 'spoofchecker::areconfusable' => array ( 0 => 'bool', 'string1' => 'string', 'string2' => 'string', '&w_errorCode=' => 'int', ), - 'Spoofchecker::isSuspicious' => + 'spoofchecker::issuspicious' => array ( 0 => 'bool', 'string' => 'string', '&w_errorCode=' => 'int', ), - 'Spoofchecker::setAllowedLocales' => + 'spoofchecker::setallowedlocales' => array ( 0 => 'void', 'locales' => 'string', ), - 'Spoofchecker::setChecks' => + 'spoofchecker::setchecks' => array ( 0 => 'void', 'checks' => 'int', ), - 'Spoofchecker::setRestrictionLevel' => + 'spoofchecker::setrestrictionlevel' => array ( 0 => 'void', 'level' => 'int', ), - 'Stomp::__construct' => + 'stomp::__construct' => array ( 0 => 'void', 'broker=' => 'string', @@ -39211,630 +39211,630 @@ 'password=' => 'string', 'headers=' => 'array|null', ), - 'Stomp::abort' => + 'stomp::abort' => array ( 0 => 'bool', 'transaction_id' => 'string', 'headers=' => 'array|null', ), - 'Stomp::ack' => + 'stomp::ack' => array ( 0 => 'bool', 'msg' => 'mixed', 'headers=' => 'array|null', ), - 'Stomp::begin' => + 'stomp::begin' => array ( 0 => 'bool', 'transaction_id' => 'string', 'headers=' => 'array|null', ), - 'Stomp::commit' => + 'stomp::commit' => array ( 0 => 'bool', 'transaction_id' => 'string', 'headers=' => 'array|null', ), - 'Stomp::error' => + 'stomp::error' => array ( 0 => 'string', ), - 'Stomp::getReadTimeout' => + 'stomp::getreadtimeout' => array ( 0 => 'array', ), - 'Stomp::getSessionId' => + 'stomp::getsessionid' => array ( 0 => 'string', ), - 'Stomp::hasFrame' => + 'stomp::hasframe' => array ( 0 => 'bool', ), - 'Stomp::readFrame' => + 'stomp::readframe' => array ( 0 => 'array', 'class_name=' => 'string', ), - 'Stomp::send' => + 'stomp::send' => array ( 0 => 'bool', 'destination' => 'string', 'msg' => 'mixed', 'headers=' => 'array|null', ), - 'Stomp::setReadTimeout' => + 'stomp::setreadtimeout' => array ( 0 => 'void', 'seconds' => 'int', 'microseconds=' => 'int|null', ), - 'Stomp::subscribe' => + 'stomp::subscribe' => array ( 0 => 'bool', 'destination' => 'string', 'headers=' => 'array|null', ), - 'Stomp::unsubscribe' => + 'stomp::unsubscribe' => array ( 0 => 'bool', 'destination' => 'string', 'headers=' => 'array|null', ), - 'StompException::getDetails' => + 'stompexception::getdetails' => array ( 0 => 'string', ), - 'StompFrame::__construct' => + 'stompframe::__construct' => array ( 0 => 'void', 'command=' => 'string', 'headers=' => 'array|null', 'body=' => 'string', ), - 'Swish::__construct' => + 'swish::__construct' => array ( 0 => 'void', 'index_names' => 'string', ), - 'Swish::getMetaList' => + 'swish::getmetalist' => array ( 0 => 'array', 'index_name' => 'string', ), - 'Swish::getPropertyList' => + 'swish::getpropertylist' => array ( 0 => 'array', 'index_name' => 'string', ), - 'Swish::prepare' => + 'swish::prepare' => array ( 0 => 'object', 'query=' => 'string', ), - 'Swish::query' => + 'swish::query' => array ( 0 => 'object', 'query' => 'string', ), - 'SwishResult::getMetaList' => + 'swishresult::getmetalist' => array ( 0 => 'array', ), - 'SwishResult::stem' => + 'swishresult::stem' => array ( 0 => 'array', 'word' => 'string', ), - 'SwishResults::getParsedWords' => + 'swishresults::getparsedwords' => array ( 0 => 'array', 'index_name' => 'string', ), - 'SwishResults::getRemovedStopwords' => + 'swishresults::getremovedstopwords' => array ( 0 => 'array', 'index_name' => 'string', ), - 'SwishResults::nextResult' => + 'swishresults::nextresult' => array ( 0 => 'object', ), - 'SwishResults::seekResult' => + 'swishresults::seekresult' => array ( 0 => 'int', 'position' => 'int', ), - 'SwishSearch::execute' => + 'swishsearch::execute' => array ( 0 => 'object', 'query=' => 'string', ), - 'SwishSearch::resetLimit' => + 'swishsearch::resetlimit' => array ( 0 => 'mixed', ), - 'SwishSearch::setLimit' => + 'swishsearch::setlimit' => array ( 0 => 'mixed', 'property' => 'string', 'low' => 'string', 'high' => 'string', ), - 'SwishSearch::setPhraseDelimiter' => + 'swishsearch::setphrasedelimiter' => array ( 0 => 'mixed', 'delimiter' => 'string', ), - 'SwishSearch::setSort' => + 'swishsearch::setsort' => array ( 0 => 'mixed', 'sort' => 'string', ), - 'SwishSearch::setStructure' => + 'swishsearch::setstructure' => array ( 0 => 'mixed', 'structure' => 'int', ), - 'SyncEvent::__construct' => + 'syncevent::__construct' => array ( 0 => 'void', 'name=' => 'string', 'manual=' => 'bool', ), - 'SyncEvent::fire' => + 'syncevent::fire' => array ( 0 => 'bool', ), - 'SyncEvent::reset' => + 'syncevent::reset' => array ( 0 => 'bool', ), - 'SyncEvent::wait' => + 'syncevent::wait' => array ( 0 => 'bool', 'wait=' => 'int', ), - 'SyncMutex::__construct' => + 'syncmutex::__construct' => array ( 0 => 'void', 'name=' => 'string', ), - 'SyncMutex::lock' => + 'syncmutex::lock' => array ( 0 => 'bool', 'wait=' => 'int', ), - 'SyncMutex::unlock' => + 'syncmutex::unlock' => array ( 0 => 'bool', 'all=' => 'bool', ), - 'SyncReaderWriter::__construct' => + 'syncreaderwriter::__construct' => array ( 0 => 'void', 'name=' => 'string', 'autounlock=' => 'bool', ), - 'SyncReaderWriter::readlock' => + 'syncreaderwriter::readlock' => array ( 0 => 'bool', 'wait=' => 'int', ), - 'SyncReaderWriter::readunlock' => + 'syncreaderwriter::readunlock' => array ( 0 => 'bool', ), - 'SyncReaderWriter::writelock' => + 'syncreaderwriter::writelock' => array ( 0 => 'bool', 'wait=' => 'int', ), - 'SyncReaderWriter::writeunlock' => + 'syncreaderwriter::writeunlock' => array ( 0 => 'bool', ), - 'SyncSemaphore::__construct' => + 'syncsemaphore::__construct' => array ( 0 => 'void', 'name=' => 'string', 'initialval=' => 'int', 'autounlock=' => 'bool', ), - 'SyncSemaphore::lock' => + 'syncsemaphore::lock' => array ( 0 => 'bool', 'wait=' => 'int', ), - 'SyncSemaphore::unlock' => + 'syncsemaphore::unlock' => array ( 0 => 'bool', '&w_prevcount=' => 'int', ), - 'SyncSharedMemory::__construct' => + 'syncsharedmemory::__construct' => array ( 0 => 'void', 'name' => 'string', 'size' => 'int', ), - 'SyncSharedMemory::first' => + 'syncsharedmemory::first' => array ( 0 => 'bool', ), - 'SyncSharedMemory::read' => + 'syncsharedmemory::read' => array ( 0 => 'string', 'start=' => 'int', 'length=' => 'int', ), - 'SyncSharedMemory::size' => + 'syncsharedmemory::size' => array ( 0 => 'int', ), - 'SyncSharedMemory::write' => + 'syncsharedmemory::write' => array ( 0 => 'int', 'string=' => 'string', 'start=' => 'int', ), - 'Thread::__construct' => + 'thread::__construct' => array ( 0 => 'void', ), - 'Thread::addRef' => + 'thread::addref' => array ( 0 => 'void', ), - 'Thread::chunk' => + 'thread::chunk' => array ( 0 => 'array', 'size' => 'int', 'preserve' => 'bool', ), - 'Thread::count' => + 'thread::count' => array ( 0 => 'int', ), - 'Thread::delRef' => + 'thread::delref' => array ( 0 => 'void', ), - 'Thread::detach' => + 'thread::detach' => array ( 0 => 'void', ), - 'Thread::extend' => + 'thread::extend' => array ( 0 => 'bool', 'class' => 'string', ), - 'Thread::getCreatorId' => + 'thread::getcreatorid' => array ( 0 => 'int', ), - 'Thread::getCurrentThread' => + 'thread::getcurrentthread' => array ( 0 => 'Thread', ), - 'Thread::getCurrentThreadId' => + 'thread::getcurrentthreadid' => array ( 0 => 'int', ), - 'Thread::getRefCount' => + 'thread::getrefcount' => array ( 0 => 'int', ), - 'Thread::getTerminationInfo' => + 'thread::getterminationinfo' => array ( 0 => 'array', ), - 'Thread::getThreadId' => + 'thread::getthreadid' => array ( 0 => 'int', ), - 'Thread::globally' => + 'thread::globally' => array ( 0 => 'mixed', ), - 'Thread::isGarbage' => + 'thread::isgarbage' => array ( 0 => 'bool', ), - 'Thread::isJoined' => + 'thread::isjoined' => array ( 0 => 'bool', ), - 'Thread::isRunning' => + 'thread::isrunning' => array ( 0 => 'bool', ), - 'Thread::isStarted' => + 'thread::isstarted' => array ( 0 => 'bool', ), - 'Thread::isTerminated' => + 'thread::isterminated' => array ( 0 => 'bool', ), - 'Thread::isWaiting' => + 'thread::iswaiting' => array ( 0 => 'bool', ), - 'Thread::join' => + 'thread::join' => array ( 0 => 'bool', ), - 'Thread::kill' => + 'thread::kill' => array ( 0 => 'void', ), - 'Thread::lock' => + 'thread::lock' => array ( 0 => 'bool', ), - 'Thread::merge' => + 'thread::merge' => array ( 0 => 'bool', 'from' => 'mixed', 'overwrite=' => 'mixed', ), - 'Thread::notify' => + 'thread::notify' => array ( 0 => 'bool', ), - 'Thread::notifyOne' => + 'thread::notifyone' => array ( 0 => 'bool', ), - 'Thread::offsetExists' => + 'thread::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'Thread::offsetGet' => + 'thread::offsetget' => array ( 0 => 'mixed', 'offset' => 'int|string', ), - 'Thread::offsetSet' => + 'thread::offsetset' => array ( 0 => 'void', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'Thread::offsetUnset' => + 'thread::offsetunset' => array ( 0 => 'void', 'offset' => 'int|string', ), - 'Thread::pop' => + 'thread::pop' => array ( 0 => 'bool', ), - 'Thread::run' => + 'thread::run' => array ( 0 => 'void', ), - 'Thread::setGarbage' => + 'thread::setgarbage' => array ( 0 => 'void', ), - 'Thread::shift' => + 'thread::shift' => array ( 0 => 'bool', ), - 'Thread::start' => + 'thread::start' => array ( 0 => 'bool', 'options=' => 'int', ), - 'Thread::synchronized' => + 'thread::synchronized' => array ( 0 => 'mixed', 'block' => 'Closure', '_=' => 'mixed', ), - 'Thread::unlock' => + 'thread::unlock' => array ( 0 => 'bool', ), - 'Thread::wait' => + 'thread::wait' => array ( 0 => 'bool', 'timeout=' => 'int', ), - 'Threaded::__construct' => + 'threaded::__construct' => array ( 0 => 'void', ), - 'Threaded::addRef' => + 'threaded::addref' => array ( 0 => 'void', ), - 'Threaded::chunk' => + 'threaded::chunk' => array ( 0 => 'array', 'size' => 'int', 'preserve' => 'bool', ), - 'Threaded::count' => + 'threaded::count' => array ( 0 => 'int', ), - 'Threaded::delRef' => + 'threaded::delref' => array ( 0 => 'void', ), - 'Threaded::extend' => + 'threaded::extend' => array ( 0 => 'bool', 'class' => 'string', ), - 'Threaded::from' => + 'threaded::from' => array ( 0 => 'Threaded', 'run' => 'Closure', 'construct=' => 'Closure', 'args=' => 'array', ), - 'Threaded::getRefCount' => + 'threaded::getrefcount' => array ( 0 => 'int', ), - 'Threaded::getTerminationInfo' => + 'threaded::getterminationinfo' => array ( 0 => 'array', ), - 'Threaded::isGarbage' => + 'threaded::isgarbage' => array ( 0 => 'bool', ), - 'Threaded::isRunning' => + 'threaded::isrunning' => array ( 0 => 'bool', ), - 'Threaded::isTerminated' => + 'threaded::isterminated' => array ( 0 => 'bool', ), - 'Threaded::isWaiting' => + 'threaded::iswaiting' => array ( 0 => 'bool', ), - 'Threaded::lock' => + 'threaded::lock' => array ( 0 => 'bool', ), - 'Threaded::merge' => + 'threaded::merge' => array ( 0 => 'bool', 'from' => 'mixed', 'overwrite=' => 'bool', ), - 'Threaded::notify' => + 'threaded::notify' => array ( 0 => 'bool', ), - 'Threaded::notifyOne' => + 'threaded::notifyone' => array ( 0 => 'bool', ), - 'Threaded::offsetExists' => + 'threaded::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'Threaded::offsetGet' => + 'threaded::offsetget' => array ( 0 => 'mixed', 'offset' => 'int|string', ), - 'Threaded::offsetSet' => + 'threaded::offsetset' => array ( 0 => 'void', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'Threaded::offsetUnset' => + 'threaded::offsetunset' => array ( 0 => 'void', 'offset' => 'int|string', ), - 'Threaded::pop' => + 'threaded::pop' => array ( 0 => 'bool', ), - 'Threaded::run' => + 'threaded::run' => array ( 0 => 'void', ), - 'Threaded::setGarbage' => + 'threaded::setgarbage' => array ( 0 => 'void', ), - 'Threaded::shift' => + 'threaded::shift' => array ( 0 => 'mixed', ), - 'Threaded::synchronized' => + 'threaded::synchronized' => array ( 0 => 'mixed', 'block' => 'Closure', '...args=' => 'mixed', ), - 'Threaded::unlock' => + 'threaded::unlock' => array ( 0 => 'bool', ), - 'Threaded::wait' => + 'threaded::wait' => array ( 0 => 'bool', 'timeout=' => 'int', ), - 'Throwable::__toString' => + 'throwable::__tostring' => array ( 0 => 'string', ), - 'Throwable::getCode' => + 'throwable::getcode' => array ( 0 => 'int|string', ), - 'Throwable::getFile' => + 'throwable::getfile' => array ( 0 => 'string', ), - 'Throwable::getLine' => + 'throwable::getline' => array ( 0 => 'int', ), - 'Throwable::getMessage' => + 'throwable::getmessage' => array ( 0 => 'string', ), - 'Throwable::getPrevious' => + 'throwable::getprevious' => array ( 0 => 'Throwable|null', ), - 'Throwable::getTrace' => + 'throwable::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'Throwable::getTraceAsString' => + 'throwable::gettraceasstring' => array ( 0 => 'string', ), - 'TokyoTyrant::__construct' => + 'tokyotyrant::__construct' => array ( 0 => 'void', 'host=' => 'string', 'port=' => 'int', 'options=' => 'array', ), - 'TokyoTyrant::add' => + 'tokyotyrant::add' => array ( 0 => 'float|int', 'key' => 'string', 'increment' => 'float', 'type=' => 'int', ), - 'TokyoTyrant::connect' => + 'tokyotyrant::connect' => array ( 0 => 'TokyoTyrant', 'host' => 'string', 'port=' => 'int', 'options=' => 'array', ), - 'TokyoTyrant::connectUri' => + 'tokyotyrant::connecturi' => array ( 0 => 'TokyoTyrant', 'uri' => 'string', ), - 'TokyoTyrant::copy' => + 'tokyotyrant::copy' => array ( 0 => 'TokyoTyrant', 'path' => 'string', ), - 'TokyoTyrant::ext' => + 'tokyotyrant::ext' => array ( 0 => 'string', 'name' => 'string', @@ -39842,69 +39842,69 @@ 'key' => 'string', 'value' => 'string', ), - 'TokyoTyrant::fwmKeys' => + 'tokyotyrant::fwmkeys' => array ( 0 => 'array', 'prefix' => 'string', 'max_recs' => 'int', ), - 'TokyoTyrant::get' => + 'tokyotyrant::get' => array ( 0 => 'array', 'keys' => 'mixed', ), - 'TokyoTyrant::getIterator' => + 'tokyotyrant::getiterator' => array ( 0 => 'TokyoTyrantIterator', ), - 'TokyoTyrant::num' => + 'tokyotyrant::num' => array ( 0 => 'int', ), - 'TokyoTyrant::out' => + 'tokyotyrant::out' => array ( 0 => 'string', 'keys' => 'mixed', ), - 'TokyoTyrant::put' => + 'tokyotyrant::put' => array ( 0 => 'TokyoTyrant', 'keys' => 'mixed', 'value=' => 'string', ), - 'TokyoTyrant::putCat' => + 'tokyotyrant::putcat' => array ( 0 => 'TokyoTyrant', 'keys' => 'mixed', 'value=' => 'string', ), - 'TokyoTyrant::putKeep' => + 'tokyotyrant::putkeep' => array ( 0 => 'TokyoTyrant', 'keys' => 'mixed', 'value=' => 'string', ), - 'TokyoTyrant::putNr' => + 'tokyotyrant::putnr' => array ( 0 => 'TokyoTyrant', 'keys' => 'mixed', 'value=' => 'string', ), - 'TokyoTyrant::putShl' => + 'tokyotyrant::putshl' => array ( 0 => 'mixed', 'key' => 'string', 'value' => 'string', 'width' => 'int', ), - 'TokyoTyrant::restore' => + 'tokyotyrant::restore' => array ( 0 => 'mixed', 'log_dir' => 'string', 'timestamp' => 'int', 'check_consistency=' => 'bool', ), - 'TokyoTyrant::setMaster' => + 'tokyotyrant::setmaster' => array ( 0 => 'mixed', 'host' => 'string', @@ -39912,277 +39912,277 @@ 'timestamp' => 'int', 'check_consistency=' => 'bool', ), - 'TokyoTyrant::size' => + 'tokyotyrant::size' => array ( 0 => 'int', 'key' => 'string', ), - 'TokyoTyrant::stat' => + 'tokyotyrant::stat' => array ( 0 => 'array', ), - 'TokyoTyrant::sync' => + 'tokyotyrant::sync' => array ( 0 => 'mixed', ), - 'TokyoTyrant::tune' => + 'tokyotyrant::tune' => array ( 0 => 'TokyoTyrant', 'timeout' => 'float', 'options=' => 'int', ), - 'TokyoTyrant::vanish' => + 'tokyotyrant::vanish' => array ( 0 => 'mixed', ), - 'TokyoTyrantIterator::__construct' => + 'tokyotyrantiterator::__construct' => array ( 0 => 'void', 'object' => 'mixed', ), - 'TokyoTyrantIterator::current' => + 'tokyotyrantiterator::current' => array ( 0 => 'mixed', ), - 'TokyoTyrantIterator::key' => + 'tokyotyrantiterator::key' => array ( 0 => 'mixed', ), - 'TokyoTyrantIterator::next' => + 'tokyotyrantiterator::next' => array ( 0 => 'mixed', ), - 'TokyoTyrantIterator::rewind' => + 'tokyotyrantiterator::rewind' => array ( 0 => 'void', ), - 'TokyoTyrantIterator::valid' => + 'tokyotyrantiterator::valid' => array ( 0 => 'bool', ), - 'TokyoTyrantQuery::__construct' => + 'tokyotyrantquery::__construct' => array ( 0 => 'void', 'table' => 'TokyoTyrantTable', ), - 'TokyoTyrantQuery::addCond' => + 'tokyotyrantquery::addcond' => array ( 0 => 'mixed', 'name' => 'string', 'op' => 'int', 'expr' => 'string', ), - 'TokyoTyrantQuery::count' => + 'tokyotyrantquery::count' => array ( 0 => 'int', ), - 'TokyoTyrantQuery::current' => + 'tokyotyrantquery::current' => array ( 0 => 'array', ), - 'TokyoTyrantQuery::hint' => + 'tokyotyrantquery::hint' => array ( 0 => 'string', ), - 'TokyoTyrantQuery::key' => + 'tokyotyrantquery::key' => array ( 0 => 'string', ), - 'TokyoTyrantQuery::metaSearch' => + 'tokyotyrantquery::metasearch' => array ( 0 => 'array', 'queries' => 'array', 'type' => 'int', ), - 'TokyoTyrantQuery::next' => + 'tokyotyrantquery::next' => array ( 0 => 'array', ), - 'TokyoTyrantQuery::out' => + 'tokyotyrantquery::out' => array ( 0 => 'TokyoTyrantQuery', ), - 'TokyoTyrantQuery::rewind' => + 'tokyotyrantquery::rewind' => array ( 0 => 'bool', ), - 'TokyoTyrantQuery::search' => + 'tokyotyrantquery::search' => array ( 0 => 'array', ), - 'TokyoTyrantQuery::setLimit' => + 'tokyotyrantquery::setlimit' => array ( 0 => 'mixed', 'max=' => 'int', 'skip=' => 'int', ), - 'TokyoTyrantQuery::setOrder' => + 'tokyotyrantquery::setorder' => array ( 0 => 'mixed', 'name' => 'string', 'type' => 'int', ), - 'TokyoTyrantQuery::valid' => + 'tokyotyrantquery::valid' => array ( 0 => 'bool', ), - 'TokyoTyrantTable::add' => + 'tokyotyranttable::add' => array ( 0 => 'void', 'key' => 'string', 'increment' => 'mixed', 'type=' => 'string', ), - 'TokyoTyrantTable::genUid' => + 'tokyotyranttable::genuid' => array ( 0 => 'int', ), - 'TokyoTyrantTable::get' => + 'tokyotyranttable::get' => array ( 0 => 'array', 'keys' => 'mixed', ), - 'TokyoTyrantTable::getIterator' => + 'tokyotyranttable::getiterator' => array ( 0 => 'TokyoTyrantIterator', ), - 'TokyoTyrantTable::getQuery' => + 'tokyotyranttable::getquery' => array ( 0 => 'TokyoTyrantQuery', ), - 'TokyoTyrantTable::out' => + 'tokyotyranttable::out' => array ( 0 => 'void', 'keys' => 'mixed', ), - 'TokyoTyrantTable::put' => + 'tokyotyranttable::put' => array ( 0 => 'int', 'key' => 'string', 'columns' => 'array', ), - 'TokyoTyrantTable::putCat' => + 'tokyotyranttable::putcat' => array ( 0 => 'void', 'key' => 'string', 'columns' => 'array', ), - 'TokyoTyrantTable::putKeep' => + 'tokyotyranttable::putkeep' => array ( 0 => 'void', 'key' => 'string', 'columns' => 'array', ), - 'TokyoTyrantTable::putNr' => + 'tokyotyranttable::putnr' => array ( 0 => 'void', 'keys' => 'mixed', 'value=' => 'string', ), - 'TokyoTyrantTable::putShl' => + 'tokyotyranttable::putshl' => array ( 0 => 'void', 'key' => 'string', 'value' => 'string', 'width' => 'int', ), - 'TokyoTyrantTable::setIndex' => + 'tokyotyranttable::setindex' => array ( 0 => 'mixed', 'column' => 'string', 'type' => 'int', ), - 'Transliterator::create' => + 'transliterator::create' => array ( 0 => 'Transliterator|null', 'id' => 'string', 'direction=' => 'int', ), - 'Transliterator::createFromRules' => + 'transliterator::createfromrules' => array ( 0 => 'Transliterator|null', 'rules' => 'string', 'direction=' => 'int', ), - 'Transliterator::createInverse' => + 'transliterator::createinverse' => array ( 0 => 'Transliterator|null', ), - 'Transliterator::getErrorCode' => + 'transliterator::geterrorcode' => array ( 0 => 'int', ), - 'Transliterator::getErrorMessage' => + 'transliterator::geterrormessage' => array ( 0 => 'string', ), - 'Transliterator::listIDs' => + 'transliterator::listids' => array ( 0 => 'array', ), - 'Transliterator::transliterate' => + 'transliterator::transliterate' => array ( 0 => 'false|string', 'string' => 'string', 'start=' => 'int', 'end=' => 'int', ), - 'TypeError::__clone' => + 'typeerror::__clone' => array ( 0 => 'void', ), - 'TypeError::__construct' => + 'typeerror::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'TypeError::__toString' => + 'typeerror::__tostring' => array ( 0 => 'string', ), - 'TypeError::getCode' => + 'typeerror::getcode' => array ( 0 => 'int', ), - 'TypeError::getFile' => + 'typeerror::getfile' => array ( 0 => 'string', ), - 'TypeError::getLine' => + 'typeerror::getline' => array ( 0 => 'int', ), - 'TypeError::getMessage' => + 'typeerror::getmessage' => array ( 0 => 'string', ), - 'TypeError::getPrevious' => + 'typeerror::getprevious' => array ( 0 => 'Throwable|null', ), - 'TypeError::getTrace' => + 'typeerror::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'TypeError::getTraceAsString' => + 'typeerror::gettraceasstring' => array ( 0 => 'string', ), - 'UConverter::__construct' => + 'uconverter::__construct' => array ( 0 => 'void', 'destination_encoding=' => 'null|string', 'source_encoding=' => 'null|string', ), - 'UConverter::convert' => + 'uconverter::convert' => array ( 0 => 'string', 'str' => 'string', 'reverse=' => 'bool', ), - 'UConverter::fromUCallback' => + 'uconverter::fromucallback' => array ( 0 => 'array|int|null|string', 'reason' => 'int', @@ -40190,68 +40190,68 @@ 'codePoint' => 'int', '&w_error' => 'int', ), - 'UConverter::getAliases' => + 'uconverter::getaliases' => array ( 0 => 'array|false|null', 'name' => 'string', ), - 'UConverter::getAvailable' => + 'uconverter::getavailable' => array ( 0 => 'array', ), - 'UConverter::getDestinationEncoding' => + 'uconverter::getdestinationencoding' => array ( 0 => 'false|null|string', ), - 'UConverter::getDestinationType' => + 'uconverter::getdestinationtype' => array ( 0 => 'false|int|null', ), - 'UConverter::getErrorCode' => + 'uconverter::geterrorcode' => array ( 0 => 'int', ), - 'UConverter::getErrorMessage' => + 'uconverter::geterrormessage' => array ( 0 => 'null|string', ), - 'UConverter::getSourceEncoding' => + 'uconverter::getsourceencoding' => array ( 0 => 'false|null|string', ), - 'UConverter::getSourceType' => + 'uconverter::getsourcetype' => array ( 0 => 'false|int|null', ), - 'UConverter::getStandards' => + 'uconverter::getstandards' => array ( 0 => 'array|null', ), - 'UConverter::getSubstChars' => + 'uconverter::getsubstchars' => array ( 0 => 'false|null|string', ), - 'UConverter::reasonText' => + 'uconverter::reasontext' => array ( 0 => 'string', 'reason' => 'int', ), - 'UConverter::setDestinationEncoding' => + 'uconverter::setdestinationencoding' => array ( 0 => 'bool', 'encoding' => 'string', ), - 'UConverter::setSourceEncoding' => + 'uconverter::setsourceencoding' => array ( 0 => 'bool', 'encoding' => 'string', ), - 'UConverter::setSubstChars' => + 'uconverter::setsubstchars' => array ( 0 => 'bool', 'chars' => 'string', ), - 'UConverter::toUCallback' => + 'uconverter::toucallback' => array ( 0 => 'array|int|null|string', 'reason' => 'int', @@ -40259,7 +40259,7 @@ 'codeUnits' => 'string', '&w_error' => 'int', ), - 'UConverter::transcode' => + 'uconverter::transcode' => array ( 0 => 'string', 'str' => 'string', @@ -40267,93 +40267,93 @@ 'fromEncoding' => 'string', 'options=' => 'array|null', ), - 'UnderflowException::__clone' => + 'underflowexception::__clone' => array ( 0 => 'void', ), - 'UnderflowException::__construct' => + 'underflowexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'UnderflowException::__toString' => + 'underflowexception::__tostring' => array ( 0 => 'string', ), - 'UnderflowException::getCode' => + 'underflowexception::getcode' => array ( 0 => 'int', ), - 'UnderflowException::getFile' => + 'underflowexception::getfile' => array ( 0 => 'string', ), - 'UnderflowException::getLine' => + 'underflowexception::getline' => array ( 0 => 'int', ), - 'UnderflowException::getMessage' => + 'underflowexception::getmessage' => array ( 0 => 'string', ), - 'UnderflowException::getPrevious' => + 'underflowexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'UnderflowException::getTrace' => + 'underflowexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'UnderflowException::getTraceAsString' => + 'underflowexception::gettraceasstring' => array ( 0 => 'string', ), - 'UnexpectedValueException::__clone' => + 'unexpectedvalueexception::__clone' => array ( 0 => 'void', ), - 'UnexpectedValueException::__construct' => + 'unexpectedvalueexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Throwable|null', ), - 'UnexpectedValueException::__toString' => + 'unexpectedvalueexception::__tostring' => array ( 0 => 'string', ), - 'UnexpectedValueException::getCode' => + 'unexpectedvalueexception::getcode' => array ( 0 => 'int', ), - 'UnexpectedValueException::getFile' => + 'unexpectedvalueexception::getfile' => array ( 0 => 'string', ), - 'UnexpectedValueException::getLine' => + 'unexpectedvalueexception::getline' => array ( 0 => 'int', ), - 'UnexpectedValueException::getMessage' => + 'unexpectedvalueexception::getmessage' => array ( 0 => 'string', ), - 'UnexpectedValueException::getPrevious' => + 'unexpectedvalueexception::getprevious' => array ( 0 => 'Throwable|null', ), - 'UnexpectedValueException::getTrace' => + 'unexpectedvalueexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'UnexpectedValueException::getTraceAsString' => + 'unexpectedvalueexception::gettraceasstring' => array ( 0 => 'string', ), - 'V8Js::__construct' => + 'v8js::__construct' => array ( 0 => 'void', 'object_name=' => 'string', @@ -40362,22 +40362,22 @@ 'report_uncaught_exceptions=' => 'bool', 'snapshot_blob=' => 'string', ), - 'V8Js::clearPendingException' => + 'v8js::clearpendingexception' => array ( 0 => 'mixed', ), - 'V8Js::compileString' => + 'v8js::compilestring' => array ( 0 => 'resource', 'script' => 'mixed', 'identifier=' => 'string', ), - 'V8Js::createSnapshot' => + 'v8js::createsnapshot' => array ( 0 => 'false|string', 'embed_source' => 'string', ), - 'V8Js::executeScript' => + 'v8js::executescript' => array ( 0 => 'mixed', 'script' => 'resource', @@ -40385,22 +40385,22 @@ 'time_limit=' => 'int', 'memory_limit=' => 'int', ), - 'V8Js::executeString' => + 'v8js::executestring' => array ( 0 => 'mixed', 'script' => 'string', 'identifier=' => 'string', 'flags=' => 'int', ), - 'V8Js::getExtensions' => + 'v8js::getextensions' => array ( 0 => 'array', ), - 'V8Js::getPendingException' => + 'v8js::getpendingexception' => array ( 0 => 'V8JsException|null', ), - 'V8Js::registerExtension' => + 'v8js::registerextension' => array ( 0 => 'bool', 'extension_name' => 'string', @@ -40408,382 +40408,382 @@ 'dependencies=' => 'array', 'auto_enable=' => 'bool', ), - 'V8Js::setAverageObjectSize' => + 'v8js::setaverageobjectsize' => array ( 0 => 'mixed', 'average_object_size' => 'int', ), - 'V8Js::setMemoryLimit' => + 'v8js::setmemorylimit' => array ( 0 => 'mixed', 'limit' => 'int', ), - 'V8Js::setModuleLoader' => + 'v8js::setmoduleloader' => array ( 0 => 'mixed', 'loader' => 'callable', ), - 'V8Js::setModuleNormaliser' => + 'v8js::setmodulenormaliser' => array ( 0 => 'mixed', 'normaliser' => 'callable', ), - 'V8Js::setTimeLimit' => + 'v8js::settimelimit' => array ( 0 => 'mixed', 'limit' => 'int', ), - 'V8JsException::getJsFileName' => + 'v8jsexception::getjsfilename' => array ( 0 => 'string', ), - 'V8JsException::getJsLineNumber' => + 'v8jsexception::getjslinenumber' => array ( 0 => 'int', ), - 'V8JsException::getJsSourceLine' => + 'v8jsexception::getjssourceline' => array ( 0 => 'int', ), - 'V8JsException::getJsTrace' => + 'v8jsexception::getjstrace' => array ( 0 => 'string', ), - 'V8JsScriptException::__clone' => + 'v8jsscriptexception::__clone' => array ( 0 => 'void', ), - 'V8JsScriptException::__construct' => + 'v8jsscriptexception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'V8JsScriptException::__toString' => + 'v8jsscriptexception::__tostring' => array ( 0 => 'string', ), - 'V8JsScriptException::__wakeup' => + 'v8jsscriptexception::__wakeup' => array ( 0 => 'void', ), - 'V8JsScriptException::getCode' => + 'v8jsscriptexception::getcode' => array ( 0 => 'int', ), - 'V8JsScriptException::getFile' => + 'v8jsscriptexception::getfile' => array ( 0 => 'string', ), - 'V8JsScriptException::getJsEndColumn' => + 'v8jsscriptexception::getjsendcolumn' => array ( 0 => 'int', ), - 'V8JsScriptException::getJsFileName' => + 'v8jsscriptexception::getjsfilename' => array ( 0 => 'string', ), - 'V8JsScriptException::getJsLineNumber' => + 'v8jsscriptexception::getjslinenumber' => array ( 0 => 'int', ), - 'V8JsScriptException::getJsSourceLine' => + 'v8jsscriptexception::getjssourceline' => array ( 0 => 'string', ), - 'V8JsScriptException::getJsStartColumn' => + 'v8jsscriptexception::getjsstartcolumn' => array ( 0 => 'int', ), - 'V8JsScriptException::getJsTrace' => + 'v8jsscriptexception::getjstrace' => array ( 0 => 'string', ), - 'V8JsScriptException::getLine' => + 'v8jsscriptexception::getline' => array ( 0 => 'int', ), - 'V8JsScriptException::getMessage' => + 'v8jsscriptexception::getmessage' => array ( 0 => 'string', ), - 'V8JsScriptException::getPrevious' => + 'v8jsscriptexception::getprevious' => array ( 0 => 'Exception|Throwable', ), - 'V8JsScriptException::getTrace' => + 'v8jsscriptexception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'V8JsScriptException::getTraceAsString' => + 'v8jsscriptexception::gettraceasstring' => array ( 0 => 'string', ), - 'VARIANT::__construct' => + 'variant::__construct' => array ( 0 => 'void', 'value=' => 'mixed', 'type=' => 'int', 'codepage=' => 'int', ), - 'VarnishAdmin::__construct' => + 'varnishadmin::__construct' => array ( 0 => 'void', 'args=' => 'array', ), - 'VarnishAdmin::auth' => + 'varnishadmin::auth' => array ( 0 => 'bool', ), - 'VarnishAdmin::ban' => + 'varnishadmin::ban' => array ( 0 => 'int', 'vcl_regex' => 'string', ), - 'VarnishAdmin::banUrl' => + 'varnishadmin::banurl' => array ( 0 => 'int', 'vcl_regex' => 'string', ), - 'VarnishAdmin::clearPanic' => + 'varnishadmin::clearpanic' => array ( 0 => 'int', ), - 'VarnishAdmin::connect' => + 'varnishadmin::connect' => array ( 0 => 'bool', ), - 'VarnishAdmin::disconnect' => + 'varnishadmin::disconnect' => array ( 0 => 'bool', ), - 'VarnishAdmin::getPanic' => + 'varnishadmin::getpanic' => array ( 0 => 'string', ), - 'VarnishAdmin::getParams' => + 'varnishadmin::getparams' => array ( 0 => 'array', ), - 'VarnishAdmin::isRunning' => + 'varnishadmin::isrunning' => array ( 0 => 'bool', ), - 'VarnishAdmin::setCompat' => + 'varnishadmin::setcompat' => array ( 0 => 'void', 'compat' => 'int', ), - 'VarnishAdmin::setHost' => + 'varnishadmin::sethost' => array ( 0 => 'void', 'host' => 'string', ), - 'VarnishAdmin::setIdent' => + 'varnishadmin::setident' => array ( 0 => 'void', 'ident' => 'string', ), - 'VarnishAdmin::setParam' => + 'varnishadmin::setparam' => array ( 0 => 'int', 'name' => 'string', 'value' => 'int|string', ), - 'VarnishAdmin::setPort' => + 'varnishadmin::setport' => array ( 0 => 'void', 'port' => 'int', ), - 'VarnishAdmin::setSecret' => + 'varnishadmin::setsecret' => array ( 0 => 'void', 'secret' => 'string', ), - 'VarnishAdmin::setTimeout' => + 'varnishadmin::settimeout' => array ( 0 => 'void', 'timeout' => 'int', ), - 'VarnishAdmin::start' => + 'varnishadmin::start' => array ( 0 => 'int', ), - 'VarnishAdmin::stop' => + 'varnishadmin::stop' => array ( 0 => 'int', ), - 'VarnishLog::__construct' => + 'varnishlog::__construct' => array ( 0 => 'void', 'args=' => 'array', ), - 'VarnishLog::getLine' => + 'varnishlog::getline' => array ( 0 => 'array', ), - 'VarnishLog::getTagName' => + 'varnishlog::gettagname' => array ( 0 => 'string', 'index' => 'int', ), - 'VarnishStat::__construct' => + 'varnishstat::__construct' => array ( 0 => 'void', 'args=' => 'array', ), - 'VarnishStat::getSnapshot' => + 'varnishstat::getsnapshot' => array ( 0 => 'array', ), - 'Vtiful\\Kernel\\Chart::__construct' => + 'vtiful\\kernel\\chart::__construct' => array ( 0 => 'void', 'handle' => 'resource', 'type' => 'int', ), - 'Vtiful\\Kernel\\Chart::axisNameX' => + 'vtiful\\kernel\\chart::axisnamex' => array ( 0 => 'Vtiful\\Kernel\\Chart', 'name' => 'string', ), - 'Vtiful\\Kernel\\Chart::axisNameY' => + 'vtiful\\kernel\\chart::axisnamey' => array ( 0 => 'Vtiful\\Kernel\\Chart', 'name' => 'string', ), - 'Vtiful\\Kernel\\Chart::legendSetPosition' => + 'vtiful\\kernel\\chart::legendsetposition' => array ( 0 => 'Vtiful\\Kernel\\Chart', 'type' => 'int', ), - 'Vtiful\\Kernel\\Chart::series' => + 'vtiful\\kernel\\chart::series' => array ( 0 => 'Vtiful\\Kernel\\Chart', 'value' => 'string', 'categories=' => 'string', ), - 'Vtiful\\Kernel\\Chart::seriesName' => + 'vtiful\\kernel\\chart::seriesname' => array ( 0 => 'Vtiful\\Kernel\\Chart', 'value' => 'string', ), - 'Vtiful\\Kernel\\Chart::style' => + 'vtiful\\kernel\\chart::style' => array ( 0 => 'Vtiful\\Kernel\\Chart', 'style' => 'int', ), - 'Vtiful\\Kernel\\Chart::title' => + 'vtiful\\kernel\\chart::title' => array ( 0 => 'Vtiful\\Kernel\\Chart', 'title' => 'string', ), - 'Vtiful\\Kernel\\Chart::toResource' => + 'vtiful\\kernel\\chart::toresource' => array ( 0 => 'resource', ), - 'Vtiful\\Kernel\\Excel::__construct' => + 'vtiful\\kernel\\excel::__construct' => array ( 0 => 'void', 'config' => 'array', ), - 'Vtiful\\Kernel\\Excel::activateSheet' => + 'vtiful\\kernel\\excel::activatesheet' => array ( 0 => 'bool', 'sheet_name' => 'string', ), - 'Vtiful\\Kernel\\Excel::addSheet' => + 'vtiful\\kernel\\excel::addsheet' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'sheet_name=' => 'null|string', ), - 'Vtiful\\Kernel\\Excel::autoFilter' => + 'vtiful\\kernel\\excel::autofilter' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'range' => 'string', ), - 'Vtiful\\Kernel\\Excel::checkoutSheet' => + 'vtiful\\kernel\\excel::checkoutsheet' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'sheet_name' => 'string', ), - 'Vtiful\\Kernel\\Excel::close' => + 'vtiful\\kernel\\excel::close' => array ( 0 => 'Vtiful\\Kernel\\Excel', ), - 'Vtiful\\Kernel\\Excel::columnIndexFromString' => + 'vtiful\\kernel\\excel::columnindexfromstring' => array ( 0 => 'int', 'index' => 'string', ), - 'Vtiful\\Kernel\\Excel::constMemory' => + 'vtiful\\kernel\\excel::constmemory' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'file_name' => 'string', 'sheet_name=' => 'null|string', ), - 'Vtiful\\Kernel\\Excel::data' => + 'vtiful\\kernel\\excel::data' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'data' => 'array', ), - 'Vtiful\\Kernel\\Excel::defaultFormat' => + 'vtiful\\kernel\\excel::defaultformat' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'format_handle' => 'resource', ), - 'Vtiful\\Kernel\\Excel::existSheet' => + 'vtiful\\kernel\\excel::existsheet' => array ( 0 => 'bool', 'sheet_name' => 'string', ), - 'Vtiful\\Kernel\\Excel::fileName' => + 'vtiful\\kernel\\excel::filename' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'file_name' => 'string', 'sheet_name=' => 'null|string', ), - 'Vtiful\\Kernel\\Excel::freezePanes' => + 'vtiful\\kernel\\excel::freezepanes' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', 'column' => 'int', ), - 'Vtiful\\Kernel\\Excel::getHandle' => + 'vtiful\\kernel\\excel::gethandle' => array ( 0 => 'resource', ), - 'Vtiful\\Kernel\\Excel::getSheetData' => + 'vtiful\\kernel\\excel::getsheetdata' => array ( 0 => 'array|false', ), - 'Vtiful\\Kernel\\Excel::gridline' => + 'vtiful\\kernel\\excel::gridline' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'option=' => 'int', ), - 'Vtiful\\Kernel\\Excel::header' => + 'vtiful\\kernel\\excel::header' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'header' => 'array', 'format_handle=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::insertChart' => + 'vtiful\\kernel\\excel::insertchart' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', 'column' => 'int', 'chart_resource' => 'resource', ), - 'Vtiful\\Kernel\\Excel::insertComment' => + 'vtiful\\kernel\\excel::insertcomment' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', 'column' => 'int', 'comment' => 'string', ), - 'Vtiful\\Kernel\\Excel::insertDate' => + 'vtiful\\kernel\\excel::insertdate' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', @@ -40792,7 +40792,7 @@ 'format=' => 'null|string', 'format_handle=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::insertFormula' => + 'vtiful\\kernel\\excel::insertformula' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', @@ -40800,7 +40800,7 @@ 'formula' => 'string', 'format_handle=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::insertImage' => + 'vtiful\\kernel\\excel::insertimage' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', @@ -40809,7 +40809,7 @@ 'width=' => 'float|null', 'height=' => 'float|null', ), - 'Vtiful\\Kernel\\Excel::insertText' => + 'vtiful\\kernel\\excel::inserttext' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', @@ -40818,7 +40818,7 @@ 'format=' => 'null|string', 'format_handle=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::insertUrl' => + 'vtiful\\kernel\\excel::inserturl' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'row' => 'int', @@ -40828,45 +40828,45 @@ 'tool_tip=' => 'null|string', 'format=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::mergeCells' => + 'vtiful\\kernel\\excel::mergecells' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'range' => 'string', 'data' => 'string', 'format_handle=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::nextCellCallback' => + 'vtiful\\kernel\\excel::nextcellcallback' => array ( 0 => 'void', 'fci' => 'callable(int, int, mixed)', 'sheet_name=' => 'null|string', ), - 'Vtiful\\Kernel\\Excel::nextRow' => + 'vtiful\\kernel\\excel::nextrow' => array ( 0 => 'array|false', 'zv_type_t=' => 'array|null', ), - 'Vtiful\\Kernel\\Excel::openFile' => + 'vtiful\\kernel\\excel::openfile' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'zs_file_name' => 'string', ), - 'Vtiful\\Kernel\\Excel::openSheet' => + 'vtiful\\kernel\\excel::opensheet' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'zs_sheet_name=' => 'null|string', 'zl_flag=' => 'int|null', ), - 'Vtiful\\Kernel\\Excel::output' => + 'vtiful\\kernel\\excel::output' => array ( 0 => 'string', ), - 'Vtiful\\Kernel\\Excel::protection' => + 'vtiful\\kernel\\excel::protection' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'password=' => 'null|string', ), - 'Vtiful\\Kernel\\Excel::putCSV' => + 'vtiful\\kernel\\excel::putcsv' => array ( 0 => 'bool', 'fp' => 'resource', @@ -40874,7 +40874,7 @@ 'enclosure_str=' => 'null|string', 'escape_str=' => 'null|string', ), - 'Vtiful\\Kernel\\Excel::putCSVCallback' => + 'vtiful\\kernel\\excel::putcsvcallback' => array ( 0 => 'bool', 'callback' => 'callable(array):array', @@ -40883,31 +40883,31 @@ 'enclosure_str=' => 'null|string', 'escape_str=' => 'null|string', ), - 'Vtiful\\Kernel\\Excel::setColumn' => + 'vtiful\\kernel\\excel::setcolumn' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'range' => 'string', 'width' => 'float', 'format_handle=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::setCurrentSheetHide' => + 'vtiful\\kernel\\excel::setcurrentsheethide' => array ( 0 => 'Vtiful\\Kernel\\Excel', ), - 'Vtiful\\Kernel\\Excel::setCurrentSheetIsFirst' => + 'vtiful\\kernel\\excel::setcurrentsheetisfirst' => array ( 0 => 'Vtiful\\Kernel\\Excel', ), - 'Vtiful\\Kernel\\Excel::setGlobalType' => + 'vtiful\\kernel\\excel::setglobaltype' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'zv_type_t' => 'int', ), - 'Vtiful\\Kernel\\Excel::setLandscape' => + 'vtiful\\kernel\\excel::setlandscape' => array ( 0 => 'Vtiful\\Kernel\\Excel', ), - 'Vtiful\\Kernel\\Excel::setMargins' => + 'vtiful\\kernel\\excel::setmargins' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'left=' => 'float|null', @@ -40915,720 +40915,720 @@ 'top=' => 'float|null', 'bottom=' => 'float|null', ), - 'Vtiful\\Kernel\\Excel::setPaper' => + 'vtiful\\kernel\\excel::setpaper' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'paper' => 'int', ), - 'Vtiful\\Kernel\\Excel::setPortrait' => + 'vtiful\\kernel\\excel::setportrait' => array ( 0 => 'Vtiful\\Kernel\\Excel', ), - 'Vtiful\\Kernel\\Excel::setRow' => + 'vtiful\\kernel\\excel::setrow' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'range' => 'string', 'height' => 'float', 'format_handle=' => 'null|resource', ), - 'Vtiful\\Kernel\\Excel::setSkipRows' => + 'vtiful\\kernel\\excel::setskiprows' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'zv_skip_t' => 'int', ), - 'Vtiful\\Kernel\\Excel::setType' => + 'vtiful\\kernel\\excel::settype' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'zv_type_t' => 'array', ), - 'Vtiful\\Kernel\\Excel::sheetList' => + 'vtiful\\kernel\\excel::sheetlist' => array ( 0 => 'array', ), - 'Vtiful\\Kernel\\Excel::showComment' => + 'vtiful\\kernel\\excel::showcomment' => array ( 0 => 'Vtiful\\Kernel\\Excel', ), - 'Vtiful\\Kernel\\Excel::stringFromColumnIndex' => + 'vtiful\\kernel\\excel::stringfromcolumnindex' => array ( 0 => 'string', 'index' => 'int', ), - 'Vtiful\\Kernel\\Excel::timestampFromDateDouble' => + 'vtiful\\kernel\\excel::timestampfromdatedouble' => array ( 0 => 'int', 'index' => 'float|null', ), - 'Vtiful\\Kernel\\Excel::validation' => + 'vtiful\\kernel\\excel::validation' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'range' => 'string', 'validation_resource' => 'resource', ), - 'Vtiful\\Kernel\\Excel::zoom' => + 'vtiful\\kernel\\excel::zoom' => array ( 0 => 'Vtiful\\Kernel\\Excel', 'scale' => 'int', ), - 'Vtiful\\Kernel\\Format::__construct' => + 'vtiful\\kernel\\format::__construct' => array ( 0 => 'void', 'handle' => 'resource', ), - 'Vtiful\\Kernel\\Format::align' => + 'vtiful\\kernel\\format::align' => array ( 0 => 'Vtiful\\Kernel\\Format', '...style' => 'int', ), - 'Vtiful\\Kernel\\Format::background' => + 'vtiful\\kernel\\format::background' => array ( 0 => 'Vtiful\\Kernel\\Format', 'color' => 'int', 'pattern=' => 'int', ), - 'Vtiful\\Kernel\\Format::bold' => + 'vtiful\\kernel\\format::bold' => array ( 0 => 'Vtiful\\Kernel\\Format', ), - 'Vtiful\\Kernel\\Format::border' => + 'vtiful\\kernel\\format::border' => array ( 0 => 'Vtiful\\Kernel\\Format', 'style' => 'int', ), - 'Vtiful\\Kernel\\Format::font' => + 'vtiful\\kernel\\format::font' => array ( 0 => 'Vtiful\\Kernel\\Format', 'font' => 'string', ), - 'Vtiful\\Kernel\\Format::fontColor' => + 'vtiful\\kernel\\format::fontcolor' => array ( 0 => 'Vtiful\\Kernel\\Format', 'color' => 'int', ), - 'Vtiful\\Kernel\\Format::fontSize' => + 'vtiful\\kernel\\format::fontsize' => array ( 0 => 'Vtiful\\Kernel\\Format', 'size' => 'float', ), - 'Vtiful\\Kernel\\Format::italic' => + 'vtiful\\kernel\\format::italic' => array ( 0 => 'Vtiful\\Kernel\\Format', ), - 'Vtiful\\Kernel\\Format::number' => + 'vtiful\\kernel\\format::number' => array ( 0 => 'Vtiful\\Kernel\\Format', 'format' => 'string', ), - 'Vtiful\\Kernel\\Format::strikeout' => + 'vtiful\\kernel\\format::strikeout' => array ( 0 => 'Vtiful\\Kernel\\Format', ), - 'Vtiful\\Kernel\\Format::toResource' => + 'vtiful\\kernel\\format::toresource' => array ( 0 => 'resource', ), - 'Vtiful\\Kernel\\Format::underline' => + 'vtiful\\kernel\\format::underline' => array ( 0 => 'Vtiful\\Kernel\\Format', 'style' => 'int', ), - 'Vtiful\\Kernel\\Format::unlocked' => + 'vtiful\\kernel\\format::unlocked' => array ( 0 => 'Vtiful\\Kernel\\Format', ), - 'Vtiful\\Kernel\\Format::wrap' => + 'vtiful\\kernel\\format::wrap' => array ( 0 => 'Vtiful\\Kernel\\Format', ), - 'Vtiful\\Kernel\\Validation::__construct' => + 'vtiful\\kernel\\validation::__construct' => array ( 0 => 'void', ), - 'Vtiful\\Kernel\\Validation::criteriaType' => + 'vtiful\\kernel\\validation::criteriatype' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'type' => 'int', ), - 'Vtiful\\Kernel\\Validation::maximumFormula' => + 'vtiful\\kernel\\validation::maximumformula' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'maximum_formula' => 'string', ), - 'Vtiful\\Kernel\\Validation::maximumNumber' => + 'vtiful\\kernel\\validation::maximumnumber' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'maximum_number' => 'float', ), - 'Vtiful\\Kernel\\Validation::minimumFormula' => + 'vtiful\\kernel\\validation::minimumformula' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'minimum_formula' => 'string', ), - 'Vtiful\\Kernel\\Validation::minimumNumber' => + 'vtiful\\kernel\\validation::minimumnumber' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'minimum_number' => 'float', ), - 'Vtiful\\Kernel\\Validation::toResource' => + 'vtiful\\kernel\\validation::toresource' => array ( 0 => 'resource', ), - 'Vtiful\\Kernel\\Validation::validationType' => + 'vtiful\\kernel\\validation::validationtype' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'type' => 'int', ), - 'Vtiful\\Kernel\\Validation::valueList' => + 'vtiful\\kernel\\validation::valuelist' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'value_list' => 'array', ), - 'Vtiful\\Kernel\\Validation::valueNumber' => + 'vtiful\\kernel\\validation::valuenumber' => array ( 0 => 'Vtiful\\Kernel\\Validation|null', 'value_number' => 'int', ), - 'Weakref::acquire' => + 'weakref::acquire' => array ( 0 => 'bool', ), - 'Weakref::get' => + 'weakref::get' => array ( 0 => 'object', ), - 'Weakref::release' => + 'weakref::release' => array ( 0 => 'bool', ), - 'Weakref::valid' => + 'weakref::valid' => array ( 0 => 'bool', ), - 'Worker::__construct' => + 'worker::__construct' => array ( 0 => 'void', ), - 'Worker::addRef' => + 'worker::addref' => array ( 0 => 'void', ), - 'Worker::chunk' => + 'worker::chunk' => array ( 0 => 'array', 'size' => 'int', 'preserve' => 'bool', ), - 'Worker::collect' => + 'worker::collect' => array ( 0 => 'int', 'collector=' => 'callable', ), - 'Worker::count' => + 'worker::count' => array ( 0 => 'int', ), - 'Worker::delRef' => + 'worker::delref' => array ( 0 => 'void', ), - 'Worker::detach' => + 'worker::detach' => array ( 0 => 'void', ), - 'Worker::extend' => + 'worker::extend' => array ( 0 => 'bool', 'class' => 'string', ), - 'Worker::getCreatorId' => + 'worker::getcreatorid' => array ( 0 => 'int', ), - 'Worker::getCurrentThread' => + 'worker::getcurrentthread' => array ( 0 => 'Thread', ), - 'Worker::getCurrentThreadId' => + 'worker::getcurrentthreadid' => array ( 0 => 'int', ), - 'Worker::getRefCount' => + 'worker::getrefcount' => array ( 0 => 'int', ), - 'Worker::getStacked' => + 'worker::getstacked' => array ( 0 => 'int', ), - 'Worker::getTerminationInfo' => + 'worker::getterminationinfo' => array ( 0 => 'array', ), - 'Worker::getThreadId' => + 'worker::getthreadid' => array ( 0 => 'int', ), - 'Worker::globally' => + 'worker::globally' => array ( 0 => 'mixed', ), - 'Worker::isGarbage' => + 'worker::isgarbage' => array ( 0 => 'bool', ), - 'Worker::isJoined' => + 'worker::isjoined' => array ( 0 => 'bool', ), - 'Worker::isRunning' => + 'worker::isrunning' => array ( 0 => 'bool', ), - 'Worker::isShutdown' => + 'worker::isshutdown' => array ( 0 => 'bool', ), - 'Worker::isStarted' => + 'worker::isstarted' => array ( 0 => 'bool', ), - 'Worker::isTerminated' => + 'worker::isterminated' => array ( 0 => 'bool', ), - 'Worker::isWaiting' => + 'worker::iswaiting' => array ( 0 => 'bool', ), - 'Worker::isWorking' => + 'worker::isworking' => array ( 0 => 'bool', ), - 'Worker::join' => + 'worker::join' => array ( 0 => 'bool', ), - 'Worker::kill' => + 'worker::kill' => array ( 0 => 'bool', ), - 'Worker::lock' => + 'worker::lock' => array ( 0 => 'bool', ), - 'Worker::merge' => + 'worker::merge' => array ( 0 => 'bool', 'from' => 'mixed', 'overwrite=' => 'mixed', ), - 'Worker::notify' => + 'worker::notify' => array ( 0 => 'bool', ), - 'Worker::notifyOne' => + 'worker::notifyone' => array ( 0 => 'bool', ), - 'Worker::offsetExists' => + 'worker::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'Worker::offsetGet' => + 'worker::offsetget' => array ( 0 => 'mixed', 'offset' => 'int|string', ), - 'Worker::offsetSet' => + 'worker::offsetset' => array ( 0 => 'void', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'Worker::offsetUnset' => + 'worker::offsetunset' => array ( 0 => 'void', 'offset' => 'int|string', ), - 'Worker::pop' => + 'worker::pop' => array ( 0 => 'bool', ), - 'Worker::run' => + 'worker::run' => array ( 0 => 'void', ), - 'Worker::setGarbage' => + 'worker::setgarbage' => array ( 0 => 'void', ), - 'Worker::shift' => + 'worker::shift' => array ( 0 => 'bool', ), - 'Worker::shutdown' => + 'worker::shutdown' => array ( 0 => 'bool', ), - 'Worker::stack' => + 'worker::stack' => array ( 0 => 'int', '&rw_work' => 'Threaded', ), - 'Worker::start' => + 'worker::start' => array ( 0 => 'bool', 'options=' => 'int', ), - 'Worker::synchronized' => + 'worker::synchronized' => array ( 0 => 'mixed', 'block' => 'Closure', '_=' => 'mixed', ), - 'Worker::unlock' => + 'worker::unlock' => array ( 0 => 'bool', ), - 'Worker::unstack' => + 'worker::unstack' => array ( 0 => 'int', '&rw_work=' => 'Threaded', ), - 'Worker::wait' => + 'worker::wait' => array ( 0 => 'bool', 'timeout=' => 'int', ), - 'XMLDiff\\Base::__construct' => + 'xmldiff\\base::__construct' => array ( 0 => 'void', 'nsname' => 'string', ), - 'XMLDiff\\Base::diff' => + 'xmldiff\\base::diff' => array ( 0 => 'mixed', 'from' => 'mixed', 'to' => 'mixed', ), - 'XMLDiff\\Base::merge' => + 'xmldiff\\base::merge' => array ( 0 => 'mixed', 'src' => 'mixed', 'diff' => 'mixed', ), - 'XMLDiff\\DOM::diff' => + 'xmldiff\\dom::diff' => array ( 0 => 'DOMDocument', 'from' => 'DOMDocument', 'to' => 'DOMDocument', ), - 'XMLDiff\\DOM::merge' => + 'xmldiff\\dom::merge' => array ( 0 => 'DOMDocument', 'src' => 'DOMDocument', 'diff' => 'DOMDocument', ), - 'XMLDiff\\File::diff' => + 'xmldiff\\file::diff' => array ( 0 => 'string', 'from' => 'string', 'to' => 'string', ), - 'XMLDiff\\File::merge' => + 'xmldiff\\file::merge' => array ( 0 => 'string', 'src' => 'string', 'diff' => 'string', ), - 'XMLDiff\\Memory::diff' => + 'xmldiff\\memory::diff' => array ( 0 => 'string', 'from' => 'string', 'to' => 'string', ), - 'XMLDiff\\Memory::merge' => + 'xmldiff\\memory::merge' => array ( 0 => 'string', 'src' => 'string', 'diff' => 'string', ), - 'XMLReader::XML' => + 'xmlreader::xml' => array ( 0 => 'XMLReader|bool', 'source' => 'string', 'encoding=' => 'null|string', 'flags=' => 'int', ), - 'XMLReader::close' => + 'xmlreader::close' => array ( 0 => 'bool', ), - 'XMLReader::expand' => + 'xmlreader::expand' => array ( 0 => 'DOMNode|false', 'baseNode=' => 'DOMNode|null', ), - 'XMLReader::getAttribute' => + 'xmlreader::getattribute' => array ( 0 => 'null|string', 'name' => 'string', ), - 'XMLReader::getAttributeNo' => + 'xmlreader::getattributeno' => array ( 0 => 'null|string', 'index' => 'int', ), - 'XMLReader::getAttributeNs' => + 'xmlreader::getattributens' => array ( 0 => 'null|string', 'name' => 'string', 'namespace' => 'string', ), - 'XMLReader::getParserProperty' => + 'xmlreader::getparserproperty' => array ( 0 => 'bool', 'property' => 'int', ), - 'XMLReader::isValid' => + 'xmlreader::isvalid' => array ( 0 => 'bool', ), - 'XMLReader::lookupNamespace' => + 'xmlreader::lookupnamespace' => array ( 0 => 'null|string', 'prefix' => 'string', ), - 'XMLReader::moveToAttribute' => + 'xmlreader::movetoattribute' => array ( 0 => 'bool', 'name' => 'string', ), - 'XMLReader::moveToAttributeNo' => + 'xmlreader::movetoattributeno' => array ( 0 => 'bool', 'index' => 'int', ), - 'XMLReader::moveToAttributeNs' => + 'xmlreader::movetoattributens' => array ( 0 => 'bool', 'name' => 'string', 'namespace' => 'string', ), - 'XMLReader::moveToElement' => + 'xmlreader::movetoelement' => array ( 0 => 'bool', ), - 'XMLReader::moveToFirstAttribute' => + 'xmlreader::movetofirstattribute' => array ( 0 => 'bool', ), - 'XMLReader::moveToNextAttribute' => + 'xmlreader::movetonextattribute' => array ( 0 => 'bool', ), - 'XMLReader::next' => + 'xmlreader::next' => array ( 0 => 'bool', 'name=' => 'string', ), - 'XMLReader::open' => + 'xmlreader::open' => array ( 0 => 'XmlReader|bool', 'uri' => 'string', 'encoding=' => 'null|string', 'flags=' => 'int', ), - 'XMLReader::read' => + 'xmlreader::read' => array ( 0 => 'bool', ), - 'XMLReader::readInnerXML' => + 'xmlreader::readinnerxml' => array ( 0 => 'string', ), - 'XMLReader::readOuterXML' => + 'xmlreader::readouterxml' => array ( 0 => 'string', ), - 'XMLReader::readString' => + 'xmlreader::readstring' => array ( 0 => 'string', ), - 'XMLReader::setParserProperty' => + 'xmlreader::setparserproperty' => array ( 0 => 'bool', 'property' => 'int', 'value' => 'bool', ), - 'XMLReader::setRelaxNGSchema' => + 'xmlreader::setrelaxngschema' => array ( 0 => 'bool', 'filename' => 'null|string', ), - 'XMLReader::setRelaxNGSchemaSource' => + 'xmlreader::setrelaxngschemasource' => array ( 0 => 'bool', 'source' => 'null|string', ), - 'XMLReader::setSchema' => + 'xmlreader::setschema' => array ( 0 => 'bool', 'filename' => 'null|string', ), - 'XMLWriter::endAttribute' => + 'xmlwriter::endattribute' => array ( 0 => 'bool', ), - 'XMLWriter::endCdata' => + 'xmlwriter::endcdata' => array ( 0 => 'bool', ), - 'XMLWriter::endComment' => + 'xmlwriter::endcomment' => array ( 0 => 'bool', ), - 'XMLWriter::endDocument' => + 'xmlwriter::enddocument' => array ( 0 => 'bool', ), - 'XMLWriter::endDtd' => + 'xmlwriter::enddtd' => array ( 0 => 'bool', ), - 'XMLWriter::endDtdAttlist' => + 'xmlwriter::enddtdattlist' => array ( 0 => 'bool', ), - 'XMLWriter::endDtdElement' => + 'xmlwriter::enddtdelement' => array ( 0 => 'bool', ), - 'XMLWriter::endDtdEntity' => + 'xmlwriter::enddtdentity' => array ( 0 => 'bool', ), - 'XMLWriter::endElement' => + 'xmlwriter::endelement' => array ( 0 => 'bool', ), - 'XMLWriter::endPi' => + 'xmlwriter::endpi' => array ( 0 => 'bool', ), - 'XMLWriter::flush' => + 'xmlwriter::flush' => array ( 0 => 'false|int|string', 'empty=' => 'bool', ), - 'XMLWriter::fullEndElement' => + 'xmlwriter::fullendelement' => array ( 0 => 'bool', ), - 'XMLWriter::openMemory' => + 'xmlwriter::openmemory' => array ( 0 => 'bool', ), - 'XMLWriter::openUri' => + 'xmlwriter::openuri' => array ( 0 => 'bool', 'uri' => 'string', ), - 'XMLWriter::outputMemory' => + 'xmlwriter::outputmemory' => array ( 0 => 'string', 'flush=' => 'bool', ), - 'XMLWriter::setIndent' => + 'xmlwriter::setindent' => array ( 0 => 'bool', 'enable' => 'bool', ), - 'XMLWriter::setIndentString' => + 'xmlwriter::setindentstring' => array ( 0 => 'bool', 'indentation' => 'string', ), - 'XMLWriter::startAttribute' => + 'xmlwriter::startattribute' => array ( 0 => 'bool', 'name' => 'string', ), - 'XMLWriter::startAttributeNs' => + 'xmlwriter::startattributens' => array ( 0 => 'bool', 'prefix' => 'string', 'name' => 'string', 'namespace' => 'null|string', ), - 'XMLWriter::startCdata' => + 'xmlwriter::startcdata' => array ( 0 => 'bool', ), - 'XMLWriter::startComment' => + 'xmlwriter::startcomment' => array ( 0 => 'bool', ), - 'XMLWriter::startDocument' => + 'xmlwriter::startdocument' => array ( 0 => 'bool', 'version=' => 'null|string', 'encoding=' => 'null|string', 'standalone=' => 'null|string', ), - 'XMLWriter::startDtd' => + 'xmlwriter::startdtd' => array ( 0 => 'bool', 'qualifiedName' => 'string', 'publicId=' => 'null|string', 'systemId=' => 'null|string', ), - 'XMLWriter::startDtdAttlist' => + 'xmlwriter::startdtdattlist' => array ( 0 => 'bool', 'name' => 'string', ), - 'XMLWriter::startDtdElement' => + 'xmlwriter::startdtdelement' => array ( 0 => 'bool', 'qualifiedName' => 'string', ), - 'XMLWriter::startDtdEntity' => + 'xmlwriter::startdtdentity' => array ( 0 => 'bool', 'name' => 'string', 'isParam' => 'bool', ), - 'XMLWriter::startElement' => + 'xmlwriter::startelement' => array ( 0 => 'bool', 'name' => 'string', ), - 'XMLWriter::startElementNs' => + 'xmlwriter::startelementns' => array ( 0 => 'bool', 'prefix' => 'null|string', 'name' => 'string', 'namespace' => 'null|string', ), - 'XMLWriter::startPi' => + 'xmlwriter::startpi' => array ( 0 => 'bool', 'target' => 'string', ), - 'XMLWriter::text' => + 'xmlwriter::text' => array ( 0 => 'bool', 'content' => 'string', ), - 'XMLWriter::writeAttribute' => + 'xmlwriter::writeattribute' => array ( 0 => 'bool', 'name' => 'string', 'value' => 'string', ), - 'XMLWriter::writeAttributeNs' => + 'xmlwriter::writeattributens' => array ( 0 => 'bool', 'prefix' => 'string', @@ -41636,17 +41636,17 @@ 'namespace' => 'null|string', 'value' => 'string', ), - 'XMLWriter::writeCdata' => + 'xmlwriter::writecdata' => array ( 0 => 'bool', 'content' => 'string', ), - 'XMLWriter::writeComment' => + 'xmlwriter::writecomment' => array ( 0 => 'bool', 'content' => 'string', ), - 'XMLWriter::writeDtd' => + 'xmlwriter::writedtd' => array ( 0 => 'bool', 'name' => 'string', @@ -41654,19 +41654,19 @@ 'systemId=' => 'null|string', 'content=' => 'null|string', ), - 'XMLWriter::writeDtdAttlist' => + 'xmlwriter::writedtdattlist' => array ( 0 => 'bool', 'name' => 'string', 'content' => 'string', ), - 'XMLWriter::writeDtdElement' => + 'xmlwriter::writedtdelement' => array ( 0 => 'bool', 'name' => 'string', 'content' => 'string', ), - 'XMLWriter::writeDtdEntity' => + 'xmlwriter::writedtdentity' => array ( 0 => 'bool', 'name' => 'string', @@ -41676,13 +41676,13 @@ 'systemId' => 'string', 'notationData' => 'string', ), - 'XMLWriter::writeElement' => + 'xmlwriter::writeelement' => array ( 0 => 'bool', 'name' => 'string', 'content=' => 'null|string', ), - 'XMLWriter::writeElementNs' => + 'xmlwriter::writeelementns' => array ( 0 => 'bool', 'prefix' => 'null|string', @@ -41690,116 +41690,116 @@ 'namespace' => 'null|string', 'content=' => 'null|string', ), - 'XMLWriter::writePi' => + 'xmlwriter::writepi' => array ( 0 => 'bool', 'target' => 'string', 'content' => 'string', ), - 'XMLWriter::writeRaw' => + 'xmlwriter::writeraw' => array ( 0 => 'bool', 'content' => 'string', ), - 'XSLTProcessor::getParameter' => + 'xsltprocessor::getparameter' => array ( 0 => 'false|string', 'namespace' => 'string', 'name' => 'string', ), - 'XSLTProcessor::hasExsltSupport' => + 'xsltprocessor::hasexsltsupport' => array ( 0 => 'bool', ), - 'XSLTProcessor::importStylesheet' => + 'xsltprocessor::importstylesheet' => array ( 0 => 'bool', 'stylesheet' => 'object', ), - 'XSLTProcessor::registerPHPFunctions' => + 'xsltprocessor::registerphpfunctions' => array ( 0 => 'void', 'functions=' => 'array|null|string', ), - 'XSLTProcessor::removeParameter' => + 'xsltprocessor::removeparameter' => array ( 0 => 'bool', 'namespace' => 'string', 'name' => 'string', ), - 'XSLTProcessor::setParameter' => + 'xsltprocessor::setparameter' => array ( 0 => 'bool', 'namespace' => 'string', 'name' => 'string', 'value' => 'string', ), - 'XSLTProcessor::setParameter\'1' => + 'xsltprocessor::setparameter\'1' => array ( 0 => 'bool', 'namespace' => 'string', 'options' => 'array', ), - 'XSLTProcessor::setProfiling' => + 'xsltprocessor::setprofiling' => array ( 0 => 'bool', 'filename' => 'null|string', ), - 'XSLTProcessor::transformToDoc' => + 'xsltprocessor::transformtodoc' => array ( 0 => 'DOMDocument|false', 'document' => 'DOMNode', 'returnClass=' => 'null|string', ), - 'XSLTProcessor::transformToURI' => + 'xsltprocessor::transformtouri' => array ( 0 => 'int', 'document' => 'DOMDocument', 'uri' => 'string', ), - 'XSLTProcessor::transformToXML' => + 'xsltprocessor::transformtoxml' => array ( 0 => 'false|string', 'document' => 'DOMDocument', ), - 'Xcom::__construct' => + 'xcom::__construct' => array ( 0 => 'void', 'fabric_url=' => 'string', 'fabric_token=' => 'string', 'capability_token=' => 'string', ), - 'Xcom::decode' => + 'xcom::decode' => array ( 0 => 'object', 'avro_msg' => 'string', 'json_schema' => 'string', ), - 'Xcom::encode' => + 'xcom::encode' => array ( 0 => 'string', 'data' => 'stdClass', 'avro_schema' => 'string', ), - 'Xcom::getDebugOutput' => + 'xcom::getdebugoutput' => array ( 0 => 'string', ), - 'Xcom::getLastResponse' => + 'xcom::getlastresponse' => array ( 0 => 'string', ), - 'Xcom::getLastResponseInfo' => + 'xcom::getlastresponseinfo' => array ( 0 => 'array', ), - 'Xcom::getOnboardingURL' => + 'xcom::getonboardingurl' => array ( 0 => 'string', 'capability_name' => 'string', 'agreement_url' => 'string', ), - 'Xcom::send' => + 'xcom::send' => array ( 0 => 'int', 'topic' => 'string', @@ -41807,7 +41807,7 @@ 'json_schema=' => 'string', 'http_headers=' => 'array', ), - 'Xcom::sendAsync' => + 'xcom::sendasync' => array ( 0 => 'int', 'topic' => 'string', @@ -41815,31 +41815,31 @@ 'json_schema=' => 'string', 'http_headers=' => 'array', ), - 'XsltProcessor::getSecurityPrefs' => + 'xsltprocessor::getsecurityprefs' => array ( 0 => 'int', ), - 'XsltProcessor::setSecurityPrefs' => + 'xsltprocessor::setsecurityprefs' => array ( 0 => 'int', 'preferences' => 'int', ), - 'Yaconf::get' => + 'yaconf::get' => array ( 0 => 'mixed', 'name' => 'string', 'default_value=' => 'mixed', ), - 'Yaconf::has' => + 'yaconf::has' => array ( 0 => 'bool', 'name' => 'string', ), - 'Yaf\\Action_Abstract::__clone' => + 'yaf\\action_abstract::__clone' => array ( 0 => 'void', ), - 'Yaf\\Action_Abstract::__construct' => + 'yaf\\action_abstract::__construct' => array ( 0 => 'void', 'request' => 'Yaf\\Request_Abstract', @@ -41847,17 +41847,17 @@ 'view' => 'Yaf\\View_Interface', 'invokeArgs=' => 'array|null', ), - 'Yaf\\Action_Abstract::display' => + 'yaf\\action_abstract::display' => array ( 0 => 'bool', 'tpl' => 'string', 'parameters=' => 'array|null', ), - 'Yaf\\Action_Abstract::execute' => + 'yaf\\action_abstract::execute' => array ( 0 => 'mixed', ), - 'Yaf\\Action_Abstract::forward' => + 'yaf\\action_abstract::forward' => array ( 0 => 'bool', 'module' => 'string', @@ -41865,342 +41865,342 @@ 'action=' => 'string', 'parameters=' => 'array|null', ), - 'Yaf\\Action_Abstract::getController' => + 'yaf\\action_abstract::getcontroller' => array ( 0 => 'Yaf\\Controller_Abstract', ), - 'Yaf\\Action_Abstract::getInvokeArg' => + 'yaf\\action_abstract::getinvokearg' => array ( 0 => 'mixed|null', 'name' => 'string', ), - 'Yaf\\Action_Abstract::getInvokeArgs' => + 'yaf\\action_abstract::getinvokeargs' => array ( 0 => 'array', ), - 'Yaf\\Action_Abstract::getModuleName' => + 'yaf\\action_abstract::getmodulename' => array ( 0 => 'string', ), - 'Yaf\\Action_Abstract::getRequest' => + 'yaf\\action_abstract::getrequest' => array ( 0 => 'Yaf\\Request_Abstract', ), - 'Yaf\\Action_Abstract::getResponse' => + 'yaf\\action_abstract::getresponse' => array ( 0 => 'Yaf\\Response_Abstract', ), - 'Yaf\\Action_Abstract::getView' => + 'yaf\\action_abstract::getview' => array ( 0 => 'Yaf\\View_Interface', ), - 'Yaf\\Action_Abstract::getViewpath' => + 'yaf\\action_abstract::getviewpath' => array ( 0 => 'string', ), - 'Yaf\\Action_Abstract::init' => + 'yaf\\action_abstract::init' => array ( 0 => 'mixed', ), - 'Yaf\\Action_Abstract::initView' => + 'yaf\\action_abstract::initview' => array ( 0 => 'Yaf\\Response_Abstract', 'options=' => 'array|null', ), - 'Yaf\\Action_Abstract::redirect' => + 'yaf\\action_abstract::redirect' => array ( 0 => 'bool', 'url' => 'string', ), - 'Yaf\\Action_Abstract::render' => + 'yaf\\action_abstract::render' => array ( 0 => 'string', 'tpl' => 'string', 'parameters=' => 'array|null', ), - 'Yaf\\Action_Abstract::setViewpath' => + 'yaf\\action_abstract::setviewpath' => array ( 0 => 'bool', 'view_directory' => 'string', ), - 'Yaf\\Application::__clone' => + 'yaf\\application::__clone' => array ( 0 => 'void', ), - 'Yaf\\Application::__construct' => + 'yaf\\application::__construct' => array ( 0 => 'void', 'config' => 'array|string', 'envrion=' => 'string', ), - 'Yaf\\Application::__destruct' => + 'yaf\\application::__destruct' => array ( 0 => 'void', ), - 'Yaf\\Application::__sleep' => + 'yaf\\application::__sleep' => array ( 0 => 'array', ), - 'Yaf\\Application::__wakeup' => + 'yaf\\application::__wakeup' => array ( 0 => 'void', ), - 'Yaf\\Application::app' => + 'yaf\\application::app' => array ( 0 => 'Yaf\\Application|null', ), - 'Yaf\\Application::bootstrap' => + 'yaf\\application::bootstrap' => array ( 0 => 'Yaf\\Application', 'bootstrap=' => 'Yaf\\Bootstrap_Abstract|null', ), - 'Yaf\\Application::clearLastError' => + 'yaf\\application::clearlasterror' => array ( 0 => 'void', ), - 'Yaf\\Application::environ' => + 'yaf\\application::environ' => array ( 0 => 'string', ), - 'Yaf\\Application::execute' => + 'yaf\\application::execute' => array ( 0 => 'void', 'entry' => 'callable', '_=' => 'string', ), - 'Yaf\\Application::getAppDirectory' => + 'yaf\\application::getappdirectory' => array ( 0 => 'string', ), - 'Yaf\\Application::getConfig' => + 'yaf\\application::getconfig' => array ( 0 => 'Yaf\\Config_Abstract', ), - 'Yaf\\Application::getDispatcher' => + 'yaf\\application::getdispatcher' => array ( 0 => 'Yaf\\Dispatcher', ), - 'Yaf\\Application::getLastErrorMsg' => + 'yaf\\application::getlasterrormsg' => array ( 0 => 'string', ), - 'Yaf\\Application::getLastErrorNo' => + 'yaf\\application::getlasterrorno' => array ( 0 => 'int', ), - 'Yaf\\Application::getModules' => + 'yaf\\application::getmodules' => array ( 0 => 'array', ), - 'Yaf\\Application::run' => + 'yaf\\application::run' => array ( 0 => 'void', ), - 'Yaf\\Application::setAppDirectory' => + 'yaf\\application::setappdirectory' => array ( 0 => 'Yaf\\Application', 'directory' => 'string', ), - 'Yaf\\Config\\Ini::__construct' => + 'yaf\\config\\ini::__construct' => array ( 0 => 'void', 'config_file' => 'string', 'section=' => 'string', ), - 'Yaf\\Config\\Ini::__get' => + 'yaf\\config\\ini::__get' => array ( 0 => 'mixed', 'name=' => 'mixed', ), - 'Yaf\\Config\\Ini::__isset' => + 'yaf\\config\\ini::__isset' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Yaf\\Config\\Ini::__set' => + 'yaf\\config\\ini::__set' => array ( 0 => 'void', 'name' => 'mixed', 'value' => 'mixed', ), - 'Yaf\\Config\\Ini::count' => + 'yaf\\config\\ini::count' => array ( 0 => 'int', ), - 'Yaf\\Config\\Ini::current' => + 'yaf\\config\\ini::current' => array ( 0 => 'mixed', ), - 'Yaf\\Config\\Ini::get' => + 'yaf\\config\\ini::get' => array ( 0 => 'mixed', 'name=' => 'mixed', ), - 'Yaf\\Config\\Ini::key' => + 'yaf\\config\\ini::key' => array ( 0 => 'int|string', ), - 'Yaf\\Config\\Ini::next' => + 'yaf\\config\\ini::next' => array ( 0 => 'void', ), - 'Yaf\\Config\\Ini::offsetExists' => + 'yaf\\config\\ini::offsetexists' => array ( 0 => 'bool', 'name' => 'int|string', ), - 'Yaf\\Config\\Ini::offsetGet' => + 'yaf\\config\\ini::offsetget' => array ( 0 => 'mixed', 'name' => 'int|string', ), - 'Yaf\\Config\\Ini::offsetSet' => + 'yaf\\config\\ini::offsetset' => array ( 0 => 'void', 'name' => 'int|null|string', 'value' => 'mixed', ), - 'Yaf\\Config\\Ini::offsetUnset' => + 'yaf\\config\\ini::offsetunset' => array ( 0 => 'void', 'name' => 'int|string', ), - 'Yaf\\Config\\Ini::readonly' => + 'yaf\\config\\ini::readonly' => array ( 0 => 'bool', ), - 'Yaf\\Config\\Ini::rewind' => + 'yaf\\config\\ini::rewind' => array ( 0 => 'void', ), - 'Yaf\\Config\\Ini::set' => + 'yaf\\config\\ini::set' => array ( 0 => 'Yaf\\Config_Abstract', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf\\Config\\Ini::toArray' => + 'yaf\\config\\ini::toarray' => array ( 0 => 'array', ), - 'Yaf\\Config\\Ini::valid' => + 'yaf\\config\\ini::valid' => array ( 0 => 'bool', ), - 'Yaf\\Config\\Simple::__construct' => + 'yaf\\config\\simple::__construct' => array ( 0 => 'void', 'array' => 'array', 'readonly=' => 'string', ), - 'Yaf\\Config\\Simple::__get' => + 'yaf\\config\\simple::__get' => array ( 0 => 'mixed', 'name=' => 'mixed', ), - 'Yaf\\Config\\Simple::__isset' => + 'yaf\\config\\simple::__isset' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Yaf\\Config\\Simple::__set' => + 'yaf\\config\\simple::__set' => array ( 0 => 'void', 'name' => 'mixed', 'value' => 'mixed', ), - 'Yaf\\Config\\Simple::count' => + 'yaf\\config\\simple::count' => array ( 0 => 'int', ), - 'Yaf\\Config\\Simple::current' => + 'yaf\\config\\simple::current' => array ( 0 => 'mixed', ), - 'Yaf\\Config\\Simple::get' => + 'yaf\\config\\simple::get' => array ( 0 => 'mixed', 'name=' => 'mixed', ), - 'Yaf\\Config\\Simple::key' => + 'yaf\\config\\simple::key' => array ( 0 => 'int|string', ), - 'Yaf\\Config\\Simple::next' => + 'yaf\\config\\simple::next' => array ( 0 => 'void', ), - 'Yaf\\Config\\Simple::offsetExists' => + 'yaf\\config\\simple::offsetexists' => array ( 0 => 'bool', 'name' => 'int|string', ), - 'Yaf\\Config\\Simple::offsetGet' => + 'yaf\\config\\simple::offsetget' => array ( 0 => 'mixed', 'name' => 'int|string', ), - 'Yaf\\Config\\Simple::offsetSet' => + 'yaf\\config\\simple::offsetset' => array ( 0 => 'void', 'name' => 'int|null|string', 'value' => 'mixed', ), - 'Yaf\\Config\\Simple::offsetUnset' => + 'yaf\\config\\simple::offsetunset' => array ( 0 => 'void', 'name' => 'int|string', ), - 'Yaf\\Config\\Simple::readonly' => + 'yaf\\config\\simple::readonly' => array ( 0 => 'bool', ), - 'Yaf\\Config\\Simple::rewind' => + 'yaf\\config\\simple::rewind' => array ( 0 => 'void', ), - 'Yaf\\Config\\Simple::set' => + 'yaf\\config\\simple::set' => array ( 0 => 'Yaf\\Config_Abstract', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf\\Config\\Simple::toArray' => + 'yaf\\config\\simple::toarray' => array ( 0 => 'array', ), - 'Yaf\\Config\\Simple::valid' => + 'yaf\\config\\simple::valid' => array ( 0 => 'bool', ), - 'Yaf\\Config_Abstract::__construct' => + 'yaf\\config_abstract::__construct' => array ( 0 => 'void', ), - 'Yaf\\Config_Abstract::get' => + 'yaf\\config_abstract::get' => array ( 0 => 'mixed', 'name=' => 'string', ), - 'Yaf\\Config_Abstract::readonly' => + 'yaf\\config_abstract::readonly' => array ( 0 => 'bool', ), - 'Yaf\\Config_Abstract::set' => + 'yaf\\config_abstract::set' => array ( 0 => 'Yaf\\Config_Abstract', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf\\Config_Abstract::toArray' => + 'yaf\\config_abstract::toarray' => array ( 0 => 'array', ), - 'Yaf\\Controller_Abstract::__clone' => + 'yaf\\controller_abstract::__clone' => array ( 0 => 'void', ), - 'Yaf\\Controller_Abstract::__construct' => + 'yaf\\controller_abstract::__construct' => array ( 0 => 'void', 'request' => 'Yaf\\Request_Abstract', @@ -42208,13 +42208,13 @@ 'view' => 'Yaf\\View_Interface', 'invokeArgs=' => 'array|null', ), - 'Yaf\\Controller_Abstract::display' => + 'yaf\\controller_abstract::display' => array ( 0 => 'bool', 'tpl' => 'string', 'parameters=' => 'array|null', ), - 'Yaf\\Controller_Abstract::forward' => + 'yaf\\controller_abstract::forward' => array ( 0 => 'bool', 'module' => 'string', @@ -42222,484 +42222,484 @@ 'action=' => 'string', 'parameters=' => 'array|null', ), - 'Yaf\\Controller_Abstract::getInvokeArg' => + 'yaf\\controller_abstract::getinvokearg' => array ( 0 => 'mixed|null', 'name' => 'string', ), - 'Yaf\\Controller_Abstract::getInvokeArgs' => + 'yaf\\controller_abstract::getinvokeargs' => array ( 0 => 'array', ), - 'Yaf\\Controller_Abstract::getModuleName' => + 'yaf\\controller_abstract::getmodulename' => array ( 0 => 'string', ), - 'Yaf\\Controller_Abstract::getRequest' => + 'yaf\\controller_abstract::getrequest' => array ( 0 => 'Yaf\\Request_Abstract', ), - 'Yaf\\Controller_Abstract::getResponse' => + 'yaf\\controller_abstract::getresponse' => array ( 0 => 'Yaf\\Response_Abstract', ), - 'Yaf\\Controller_Abstract::getView' => + 'yaf\\controller_abstract::getview' => array ( 0 => 'Yaf\\View_Interface', ), - 'Yaf\\Controller_Abstract::getViewpath' => + 'yaf\\controller_abstract::getviewpath' => array ( 0 => 'string', ), - 'Yaf\\Controller_Abstract::init' => + 'yaf\\controller_abstract::init' => array ( 0 => 'mixed', ), - 'Yaf\\Controller_Abstract::initView' => + 'yaf\\controller_abstract::initview' => array ( 0 => 'Yaf\\Response_Abstract', 'options=' => 'array|null', ), - 'Yaf\\Controller_Abstract::redirect' => + 'yaf\\controller_abstract::redirect' => array ( 0 => 'bool', 'url' => 'string', ), - 'Yaf\\Controller_Abstract::render' => + 'yaf\\controller_abstract::render' => array ( 0 => 'string', 'tpl' => 'string', 'parameters=' => 'array|null', ), - 'Yaf\\Controller_Abstract::setViewpath' => + 'yaf\\controller_abstract::setviewpath' => array ( 0 => 'bool', 'view_directory' => 'string', ), - 'Yaf\\Dispatcher::__clone' => + 'yaf\\dispatcher::__clone' => array ( 0 => 'void', ), - 'Yaf\\Dispatcher::__construct' => + 'yaf\\dispatcher::__construct' => array ( 0 => 'void', ), - 'Yaf\\Dispatcher::__sleep' => + 'yaf\\dispatcher::__sleep' => array ( 0 => 'list', ), - 'Yaf\\Dispatcher::__wakeup' => + 'yaf\\dispatcher::__wakeup' => array ( 0 => 'void', ), - 'Yaf\\Dispatcher::autoRender' => + 'yaf\\dispatcher::autorender' => array ( 0 => 'Yaf\\Dispatcher', 'flag=' => 'bool', ), - 'Yaf\\Dispatcher::catchException' => + 'yaf\\dispatcher::catchexception' => array ( 0 => 'Yaf\\Dispatcher', 'flag=' => 'bool', ), - 'Yaf\\Dispatcher::disableView' => + 'yaf\\dispatcher::disableview' => array ( 0 => 'bool', ), - 'Yaf\\Dispatcher::dispatch' => + 'yaf\\dispatcher::dispatch' => array ( 0 => 'Yaf\\Response_Abstract', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Dispatcher::enableView' => + 'yaf\\dispatcher::enableview' => array ( 0 => 'Yaf\\Dispatcher', ), - 'Yaf\\Dispatcher::flushInstantly' => + 'yaf\\dispatcher::flushinstantly' => array ( 0 => 'Yaf\\Dispatcher', 'flag=' => 'bool', ), - 'Yaf\\Dispatcher::getApplication' => + 'yaf\\dispatcher::getapplication' => array ( 0 => 'Yaf\\Application', ), - 'Yaf\\Dispatcher::getInstance' => + 'yaf\\dispatcher::getinstance' => array ( 0 => 'Yaf\\Dispatcher', ), - 'Yaf\\Dispatcher::getRequest' => + 'yaf\\dispatcher::getrequest' => array ( 0 => 'Yaf\\Request_Abstract', ), - 'Yaf\\Dispatcher::getRouter' => + 'yaf\\dispatcher::getrouter' => array ( 0 => 'Yaf\\Router', ), - 'Yaf\\Dispatcher::initView' => + 'yaf\\dispatcher::initview' => array ( 0 => 'Yaf\\View_Interface', 'templates_dir' => 'string', 'options=' => 'array|null', ), - 'Yaf\\Dispatcher::registerPlugin' => + 'yaf\\dispatcher::registerplugin' => array ( 0 => 'Yaf\\Dispatcher', 'plugin' => 'Yaf\\Plugin_Abstract', ), - 'Yaf\\Dispatcher::returnResponse' => + 'yaf\\dispatcher::returnresponse' => array ( 0 => 'Yaf\\Dispatcher', 'flag' => 'bool', ), - 'Yaf\\Dispatcher::setDefaultAction' => + 'yaf\\dispatcher::setdefaultaction' => array ( 0 => 'Yaf\\Dispatcher', 'action' => 'string', ), - 'Yaf\\Dispatcher::setDefaultController' => + 'yaf\\dispatcher::setdefaultcontroller' => array ( 0 => 'Yaf\\Dispatcher', 'controller' => 'string', ), - 'Yaf\\Dispatcher::setDefaultModule' => + 'yaf\\dispatcher::setdefaultmodule' => array ( 0 => 'Yaf\\Dispatcher', 'module' => 'string', ), - 'Yaf\\Dispatcher::setErrorHandler' => + 'yaf\\dispatcher::seterrorhandler' => array ( 0 => 'Yaf\\Dispatcher', 'callback' => 'callable', 'error_types' => 'int', ), - 'Yaf\\Dispatcher::setRequest' => + 'yaf\\dispatcher::setrequest' => array ( 0 => 'Yaf\\Dispatcher', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Dispatcher::setView' => + 'yaf\\dispatcher::setview' => array ( 0 => 'Yaf\\Dispatcher', 'view' => 'Yaf\\View_Interface', ), - 'Yaf\\Dispatcher::throwException' => + 'yaf\\dispatcher::throwexception' => array ( 0 => 'Yaf\\Dispatcher', 'flag=' => 'bool', ), - 'Yaf\\Loader::__clone' => + 'yaf\\loader::__clone' => array ( 0 => 'void', ), - 'Yaf\\Loader::__construct' => + 'yaf\\loader::__construct' => array ( 0 => 'void', ), - 'Yaf\\Loader::__sleep' => + 'yaf\\loader::__sleep' => array ( 0 => 'list', ), - 'Yaf\\Loader::__wakeup' => + 'yaf\\loader::__wakeup' => array ( 0 => 'void', ), - 'Yaf\\Loader::autoload' => + 'yaf\\loader::autoload' => array ( 0 => 'bool', 'class_name' => 'string', ), - 'Yaf\\Loader::clearLocalNamespace' => + 'yaf\\loader::clearlocalnamespace' => array ( 0 => 'mixed', ), - 'Yaf\\Loader::getInstance' => + 'yaf\\loader::getinstance' => array ( 0 => 'Yaf\\Loader', 'local_library_path=' => 'string', 'global_library_path=' => 'string', ), - 'Yaf\\Loader::getLibraryPath' => + 'yaf\\loader::getlibrarypath' => array ( 0 => 'string', 'is_global=' => 'bool', ), - 'Yaf\\Loader::getLocalNamespace' => + 'yaf\\loader::getlocalnamespace' => array ( 0 => 'string', ), - 'Yaf\\Loader::import' => + 'yaf\\loader::import' => array ( 0 => 'bool', 'file' => 'string', ), - 'Yaf\\Loader::isLocalName' => + 'yaf\\loader::islocalname' => array ( 0 => 'bool', 'class_name' => 'string', ), - 'Yaf\\Loader::registerLocalNamespace' => + 'yaf\\loader::registerlocalnamespace' => array ( 0 => 'bool', 'name_prefix' => 'array|string', ), - 'Yaf\\Loader::setLibraryPath' => + 'yaf\\loader::setlibrarypath' => array ( 0 => 'Yaf\\Loader', 'directory' => 'string', 'global=' => 'bool', ), - 'Yaf\\Plugin_Abstract::dispatchLoopShutdown' => + 'yaf\\plugin_abstract::dispatchloopshutdown' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', 'response' => 'Yaf\\Response_Abstract', ), - 'Yaf\\Plugin_Abstract::dispatchLoopStartup' => + 'yaf\\plugin_abstract::dispatchloopstartup' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', 'response' => 'Yaf\\Response_Abstract', ), - 'Yaf\\Plugin_Abstract::postDispatch' => + 'yaf\\plugin_abstract::postdispatch' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', 'response' => 'Yaf\\Response_Abstract', ), - 'Yaf\\Plugin_Abstract::preDispatch' => + 'yaf\\plugin_abstract::predispatch' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', 'response' => 'Yaf\\Response_Abstract', ), - 'Yaf\\Plugin_Abstract::preResponse' => + 'yaf\\plugin_abstract::preresponse' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', 'response' => 'Yaf\\Response_Abstract', ), - 'Yaf\\Plugin_Abstract::routerShutdown' => + 'yaf\\plugin_abstract::routershutdown' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', 'response' => 'Yaf\\Response_Abstract', ), - 'Yaf\\Plugin_Abstract::routerStartup' => + 'yaf\\plugin_abstract::routerstartup' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', 'response' => 'Yaf\\Response_Abstract', ), - 'Yaf\\Registry::__clone' => + 'yaf\\registry::__clone' => array ( 0 => 'void', ), - 'Yaf\\Registry::__construct' => + 'yaf\\registry::__construct' => array ( 0 => 'void', ), - 'Yaf\\Registry::del' => + 'yaf\\registry::del' => array ( 0 => 'bool|null', 'name' => 'string', ), - 'Yaf\\Registry::get' => + 'yaf\\registry::get' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Yaf\\Registry::has' => + 'yaf\\registry::has' => array ( 0 => 'bool', 'name' => 'string', ), - 'Yaf\\Registry::set' => + 'yaf\\registry::set' => array ( 0 => 'bool', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf\\Request\\Http::__clone' => + 'yaf\\request\\http::__clone' => array ( 0 => 'void', ), - 'Yaf\\Request\\Http::__construct' => + 'yaf\\request\\http::__construct' => array ( 0 => 'void', 'request_uri' => 'string', 'base_uri' => 'string', ), - 'Yaf\\Request\\Http::get' => + 'yaf\\request\\http::get' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'string', ), - 'Yaf\\Request\\Http::getActionName' => + 'yaf\\request\\http::getactionname' => array ( 0 => 'string', ), - 'Yaf\\Request\\Http::getBaseUri' => + 'yaf\\request\\http::getbaseuri' => array ( 0 => 'string', ), - 'Yaf\\Request\\Http::getControllerName' => + 'yaf\\request\\http::getcontrollername' => array ( 0 => 'string', ), - 'Yaf\\Request\\Http::getCookie' => + 'yaf\\request\\http::getcookie' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::getEnv' => + 'yaf\\request\\http::getenv' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::getException' => + 'yaf\\request\\http::getexception' => array ( 0 => 'Yaf\\Exception', ), - 'Yaf\\Request\\Http::getFiles' => + 'yaf\\request\\http::getfiles' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::getLanguage' => + 'yaf\\request\\http::getlanguage' => array ( 0 => 'string', ), - 'Yaf\\Request\\Http::getMethod' => + 'yaf\\request\\http::getmethod' => array ( 0 => 'string', ), - 'Yaf\\Request\\Http::getModuleName' => + 'yaf\\request\\http::getmodulename' => array ( 0 => 'string', ), - 'Yaf\\Request\\Http::getParam' => + 'yaf\\request\\http::getparam' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::getParams' => + 'yaf\\request\\http::getparams' => array ( 0 => 'array', ), - 'Yaf\\Request\\Http::getPost' => + 'yaf\\request\\http::getpost' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::getQuery' => + 'yaf\\request\\http::getquery' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::getRequest' => + 'yaf\\request\\http::getrequest' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::getRequestUri' => + 'yaf\\request\\http::getrequesturi' => array ( 0 => 'string', ), - 'Yaf\\Request\\Http::getServer' => + 'yaf\\request\\http::getserver' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Http::isCli' => + 'yaf\\request\\http::iscli' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isDispatched' => + 'yaf\\request\\http::isdispatched' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isGet' => + 'yaf\\request\\http::isget' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isHead' => + 'yaf\\request\\http::ishead' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isOptions' => + 'yaf\\request\\http::isoptions' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isPost' => + 'yaf\\request\\http::ispost' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isPut' => + 'yaf\\request\\http::isput' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isRouted' => + 'yaf\\request\\http::isrouted' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::isXmlHttpRequest' => + 'yaf\\request\\http::isxmlhttprequest' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::setActionName' => + 'yaf\\request\\http::setactionname' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'action' => 'string', ), - 'Yaf\\Request\\Http::setBaseUri' => + 'yaf\\request\\http::setbaseuri' => array ( 0 => 'bool', 'uri' => 'string', ), - 'Yaf\\Request\\Http::setControllerName' => + 'yaf\\request\\http::setcontrollername' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'controller' => 'string', ), - 'Yaf\\Request\\Http::setDispatched' => + 'yaf\\request\\http::setdispatched' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Http::setModuleName' => + 'yaf\\request\\http::setmodulename' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'module' => 'string', ), - 'Yaf\\Request\\Http::setParam' => + 'yaf\\request\\http::setparam' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'name' => 'array|string', 'value=' => 'string', ), - 'Yaf\\Request\\Http::setRequestUri' => + 'yaf\\request\\http::setrequesturi' => array ( 0 => 'mixed', 'uri' => 'string', ), - 'Yaf\\Request\\Http::setRouted' => + 'yaf\\request\\http::setrouted' => array ( 0 => 'Yaf\\Request_Abstract|bool', ), - 'Yaf\\Request\\Simple::__clone' => + 'yaf\\request\\simple::__clone' => array ( 0 => 'void', ), - 'Yaf\\Request\\Simple::__construct' => + 'yaf\\request\\simple::__construct' => array ( 0 => 'void', 'method' => 'string', @@ -42707,408 +42707,408 @@ 'action' => 'string', 'params=' => 'string', ), - 'Yaf\\Request\\Simple::get' => + 'yaf\\request\\simple::get' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'string', ), - 'Yaf\\Request\\Simple::getActionName' => + 'yaf\\request\\simple::getactionname' => array ( 0 => 'string', ), - 'Yaf\\Request\\Simple::getBaseUri' => + 'yaf\\request\\simple::getbaseuri' => array ( 0 => 'string', ), - 'Yaf\\Request\\Simple::getControllerName' => + 'yaf\\request\\simple::getcontrollername' => array ( 0 => 'string', ), - 'Yaf\\Request\\Simple::getCookie' => + 'yaf\\request\\simple::getcookie' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'string', ), - 'Yaf\\Request\\Simple::getEnv' => + 'yaf\\request\\simple::getenv' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Simple::getException' => + 'yaf\\request\\simple::getexception' => array ( 0 => 'Yaf\\Exception', ), - 'Yaf\\Request\\Simple::getFiles' => + 'yaf\\request\\simple::getfiles' => array ( 0 => 'array', 'name=' => 'mixed', 'default=' => 'null', ), - 'Yaf\\Request\\Simple::getLanguage' => + 'yaf\\request\\simple::getlanguage' => array ( 0 => 'string', ), - 'Yaf\\Request\\Simple::getMethod' => + 'yaf\\request\\simple::getmethod' => array ( 0 => 'string', ), - 'Yaf\\Request\\Simple::getModuleName' => + 'yaf\\request\\simple::getmodulename' => array ( 0 => 'string', ), - 'Yaf\\Request\\Simple::getParam' => + 'yaf\\request\\simple::getparam' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Simple::getParams' => + 'yaf\\request\\simple::getparams' => array ( 0 => 'array', ), - 'Yaf\\Request\\Simple::getPost' => + 'yaf\\request\\simple::getpost' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'string', ), - 'Yaf\\Request\\Simple::getQuery' => + 'yaf\\request\\simple::getquery' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'string', ), - 'Yaf\\Request\\Simple::getRequest' => + 'yaf\\request\\simple::getrequest' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'string', ), - 'Yaf\\Request\\Simple::getRequestUri' => + 'yaf\\request\\simple::getrequesturi' => array ( 0 => 'string', ), - 'Yaf\\Request\\Simple::getServer' => + 'yaf\\request\\simple::getserver' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request\\Simple::isCli' => + 'yaf\\request\\simple::iscli' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isDispatched' => + 'yaf\\request\\simple::isdispatched' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isGet' => + 'yaf\\request\\simple::isget' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isHead' => + 'yaf\\request\\simple::ishead' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isOptions' => + 'yaf\\request\\simple::isoptions' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isPost' => + 'yaf\\request\\simple::ispost' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isPut' => + 'yaf\\request\\simple::isput' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isRouted' => + 'yaf\\request\\simple::isrouted' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::isXmlHttpRequest' => + 'yaf\\request\\simple::isxmlhttprequest' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::setActionName' => + 'yaf\\request\\simple::setactionname' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'action' => 'string', ), - 'Yaf\\Request\\Simple::setBaseUri' => + 'yaf\\request\\simple::setbaseuri' => array ( 0 => 'bool', 'uri' => 'string', ), - 'Yaf\\Request\\Simple::setControllerName' => + 'yaf\\request\\simple::setcontrollername' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'controller' => 'string', ), - 'Yaf\\Request\\Simple::setDispatched' => + 'yaf\\request\\simple::setdispatched' => array ( 0 => 'bool', ), - 'Yaf\\Request\\Simple::setModuleName' => + 'yaf\\request\\simple::setmodulename' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'module' => 'string', ), - 'Yaf\\Request\\Simple::setParam' => + 'yaf\\request\\simple::setparam' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'name' => 'array|string', 'value=' => 'string', ), - 'Yaf\\Request\\Simple::setRequestUri' => + 'yaf\\request\\simple::setrequesturi' => array ( 0 => 'mixed', 'uri' => 'string', ), - 'Yaf\\Request\\Simple::setRouted' => + 'yaf\\request\\simple::setrouted' => array ( 0 => 'Yaf\\Request_Abstract|bool', ), - 'Yaf\\Request_Abstract::getActionName' => + 'yaf\\request_abstract::getactionname' => array ( 0 => 'string', ), - 'Yaf\\Request_Abstract::getBaseUri' => + 'yaf\\request_abstract::getbaseuri' => array ( 0 => 'string', ), - 'Yaf\\Request_Abstract::getControllerName' => + 'yaf\\request_abstract::getcontrollername' => array ( 0 => 'string', ), - 'Yaf\\Request_Abstract::getEnv' => + 'yaf\\request_abstract::getenv' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request_Abstract::getException' => + 'yaf\\request_abstract::getexception' => array ( 0 => 'Yaf\\Exception', ), - 'Yaf\\Request_Abstract::getLanguage' => + 'yaf\\request_abstract::getlanguage' => array ( 0 => 'string', ), - 'Yaf\\Request_Abstract::getMethod' => + 'yaf\\request_abstract::getmethod' => array ( 0 => 'string', ), - 'Yaf\\Request_Abstract::getModuleName' => + 'yaf\\request_abstract::getmodulename' => array ( 0 => 'string', ), - 'Yaf\\Request_Abstract::getParam' => + 'yaf\\request_abstract::getparam' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request_Abstract::getParams' => + 'yaf\\request_abstract::getparams' => array ( 0 => 'array', ), - 'Yaf\\Request_Abstract::getRequestUri' => + 'yaf\\request_abstract::getrequesturi' => array ( 0 => 'string', ), - 'Yaf\\Request_Abstract::getServer' => + 'yaf\\request_abstract::getserver' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf\\Request_Abstract::isCli' => + 'yaf\\request_abstract::iscli' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isDispatched' => + 'yaf\\request_abstract::isdispatched' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isGet' => + 'yaf\\request_abstract::isget' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isHead' => + 'yaf\\request_abstract::ishead' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isOptions' => + 'yaf\\request_abstract::isoptions' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isPost' => + 'yaf\\request_abstract::ispost' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isPut' => + 'yaf\\request_abstract::isput' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isRouted' => + 'yaf\\request_abstract::isrouted' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::isXmlHttpRequest' => + 'yaf\\request_abstract::isxmlhttprequest' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::setActionName' => + 'yaf\\request_abstract::setactionname' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'action' => 'string', ), - 'Yaf\\Request_Abstract::setBaseUri' => + 'yaf\\request_abstract::setbaseuri' => array ( 0 => 'bool', 'uri' => 'string', ), - 'Yaf\\Request_Abstract::setControllerName' => + 'yaf\\request_abstract::setcontrollername' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'controller' => 'string', ), - 'Yaf\\Request_Abstract::setDispatched' => + 'yaf\\request_abstract::setdispatched' => array ( 0 => 'bool', ), - 'Yaf\\Request_Abstract::setModuleName' => + 'yaf\\request_abstract::setmodulename' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'module' => 'string', ), - 'Yaf\\Request_Abstract::setParam' => + 'yaf\\request_abstract::setparam' => array ( 0 => 'Yaf\\Request_Abstract|bool', 'name' => 'array|string', 'value=' => 'string', ), - 'Yaf\\Request_Abstract::setRequestUri' => + 'yaf\\request_abstract::setrequesturi' => array ( 0 => 'mixed', 'uri' => 'string', ), - 'Yaf\\Request_Abstract::setRouted' => + 'yaf\\request_abstract::setrouted' => array ( 0 => 'Yaf\\Request_Abstract|bool', ), - 'Yaf\\Response\\Cli::__clone' => + 'yaf\\response\\cli::__clone' => array ( 0 => 'void', ), - 'Yaf\\Response\\Cli::__construct' => + 'yaf\\response\\cli::__construct' => array ( 0 => 'void', ), - 'Yaf\\Response\\Cli::__destruct' => + 'yaf\\response\\cli::__destruct' => array ( 0 => 'void', ), - 'Yaf\\Response\\Cli::__toString' => + 'yaf\\response\\cli::__tostring' => array ( 0 => 'string', ), - 'Yaf\\Response\\Cli::appendBody' => + 'yaf\\response\\cli::appendbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response\\Cli::clearBody' => + 'yaf\\response\\cli::clearbody' => array ( 0 => 'bool', 'key=' => 'string', ), - 'Yaf\\Response\\Cli::getBody' => + 'yaf\\response\\cli::getbody' => array ( 0 => 'mixed', 'key=' => 'null|string', ), - 'Yaf\\Response\\Cli::prependBody' => + 'yaf\\response\\cli::prependbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response\\Cli::setBody' => + 'yaf\\response\\cli::setbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response\\Http::__clone' => + 'yaf\\response\\http::__clone' => array ( 0 => 'void', ), - 'Yaf\\Response\\Http::__construct' => + 'yaf\\response\\http::__construct' => array ( 0 => 'void', ), - 'Yaf\\Response\\Http::__destruct' => + 'yaf\\response\\http::__destruct' => array ( 0 => 'void', ), - 'Yaf\\Response\\Http::__toString' => + 'yaf\\response\\http::__tostring' => array ( 0 => 'string', ), - 'Yaf\\Response\\Http::appendBody' => + 'yaf\\response\\http::appendbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response\\Http::clearBody' => + 'yaf\\response\\http::clearbody' => array ( 0 => 'bool', 'key=' => 'string', ), - 'Yaf\\Response\\Http::clearHeaders' => + 'yaf\\response\\http::clearheaders' => array ( 0 => 'Yaf\\Response_Abstract|false', 'name=' => 'string', ), - 'Yaf\\Response\\Http::getBody' => + 'yaf\\response\\http::getbody' => array ( 0 => 'mixed', 'key=' => 'null|string', ), - 'Yaf\\Response\\Http::getHeader' => + 'yaf\\response\\http::getheader' => array ( 0 => 'mixed', 'name=' => 'string', ), - 'Yaf\\Response\\Http::prependBody' => + 'yaf\\response\\http::prependbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response\\Http::response' => + 'yaf\\response\\http::response' => array ( 0 => 'bool', ), - 'Yaf\\Response\\Http::setAllHeaders' => + 'yaf\\response\\http::setallheaders' => array ( 0 => 'bool', 'headers' => 'array', ), - 'Yaf\\Response\\Http::setBody' => + 'yaf\\response\\http::setbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response\\Http::setHeader' => + 'yaf\\response\\http::setheader' => array ( 0 => 'bool', 'name' => 'string', @@ -43116,73 +43116,73 @@ 'replace=' => 'bool', 'response_code=' => 'int', ), - 'Yaf\\Response\\Http::setRedirect' => + 'yaf\\response\\http::setredirect' => array ( 0 => 'bool', 'url' => 'string', ), - 'Yaf\\Response_Abstract::__clone' => + 'yaf\\response_abstract::__clone' => array ( 0 => 'void', ), - 'Yaf\\Response_Abstract::__construct' => + 'yaf\\response_abstract::__construct' => array ( 0 => 'void', ), - 'Yaf\\Response_Abstract::__destruct' => + 'yaf\\response_abstract::__destruct' => array ( 0 => 'void', ), - 'Yaf\\Response_Abstract::__toString' => + 'yaf\\response_abstract::__tostring' => array ( 0 => 'void', ), - 'Yaf\\Response_Abstract::appendBody' => + 'yaf\\response_abstract::appendbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response_Abstract::clearBody' => + 'yaf\\response_abstract::clearbody' => array ( 0 => 'bool', 'key=' => 'string', ), - 'Yaf\\Response_Abstract::getBody' => + 'yaf\\response_abstract::getbody' => array ( 0 => 'mixed', 'key=' => 'null|string', ), - 'Yaf\\Response_Abstract::prependBody' => + 'yaf\\response_abstract::prependbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Response_Abstract::setBody' => + 'yaf\\response_abstract::setbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf\\Route\\Map::__construct' => + 'yaf\\route\\map::__construct' => array ( 0 => 'void', 'controller_prefer=' => 'bool', 'delimiter=' => 'string', ), - 'Yaf\\Route\\Map::assemble' => + 'yaf\\route\\map::assemble' => array ( 0 => 'bool', 'info' => 'array', 'query=' => 'array|null', ), - 'Yaf\\Route\\Map::route' => + 'yaf\\route\\map::route' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Route\\Regex::__construct' => + 'yaf\\route\\regex::__construct' => array ( 0 => 'void', 'match' => 'string', @@ -43191,42 +43191,42 @@ 'verify=' => 'array|null', 'reverse=' => 'string', ), - 'Yaf\\Route\\Regex::addConfig' => + 'yaf\\route\\regex::addconfig' => array ( 0 => 'Yaf\\Router|bool', 'config' => 'Yaf\\Config_Abstract', ), - 'Yaf\\Route\\Regex::addRoute' => + 'yaf\\route\\regex::addroute' => array ( 0 => 'Yaf\\Router|bool', 'name' => 'string', 'route' => 'Yaf\\Route_Interface', ), - 'Yaf\\Route\\Regex::assemble' => + 'yaf\\route\\regex::assemble' => array ( 0 => 'bool', 'info' => 'array', 'query=' => 'array|null', ), - 'Yaf\\Route\\Regex::getCurrentRoute' => + 'yaf\\route\\regex::getcurrentroute' => array ( 0 => 'string', ), - 'Yaf\\Route\\Regex::getRoute' => + 'yaf\\route\\regex::getroute' => array ( 0 => 'Yaf\\Route_Interface', 'name' => 'string', ), - 'Yaf\\Route\\Regex::getRoutes' => + 'yaf\\route\\regex::getroutes' => array ( 0 => 'array', ), - 'Yaf\\Route\\Regex::route' => + 'yaf\\route\\regex::route' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Route\\Rewrite::__construct' => + 'yaf\\route\\rewrite::__construct' => array ( 0 => 'void', 'match' => 'string', @@ -43234,348 +43234,348 @@ 'verify=' => 'array|null', 'reverse=' => 'string', ), - 'Yaf\\Route\\Rewrite::addConfig' => + 'yaf\\route\\rewrite::addconfig' => array ( 0 => 'Yaf\\Router|bool', 'config' => 'Yaf\\Config_Abstract', ), - 'Yaf\\Route\\Rewrite::addRoute' => + 'yaf\\route\\rewrite::addroute' => array ( 0 => 'Yaf\\Router|bool', 'name' => 'string', 'route' => 'Yaf\\Route_Interface', ), - 'Yaf\\Route\\Rewrite::assemble' => + 'yaf\\route\\rewrite::assemble' => array ( 0 => 'bool', 'info' => 'array', 'query=' => 'array|null', ), - 'Yaf\\Route\\Rewrite::getCurrentRoute' => + 'yaf\\route\\rewrite::getcurrentroute' => array ( 0 => 'string', ), - 'Yaf\\Route\\Rewrite::getRoute' => + 'yaf\\route\\rewrite::getroute' => array ( 0 => 'Yaf\\Route_Interface', 'name' => 'string', ), - 'Yaf\\Route\\Rewrite::getRoutes' => + 'yaf\\route\\rewrite::getroutes' => array ( 0 => 'array', ), - 'Yaf\\Route\\Rewrite::route' => + 'yaf\\route\\rewrite::route' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Route\\Simple::__construct' => + 'yaf\\route\\simple::__construct' => array ( 0 => 'void', 'module_name' => 'string', 'controller_name' => 'string', 'action_name' => 'string', ), - 'Yaf\\Route\\Simple::assemble' => + 'yaf\\route\\simple::assemble' => array ( 0 => 'bool', 'info' => 'array', 'query=' => 'array|null', ), - 'Yaf\\Route\\Simple::route' => + 'yaf\\route\\simple::route' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Route\\Supervar::__construct' => + 'yaf\\route\\supervar::__construct' => array ( 0 => 'void', 'supervar_name' => 'string', ), - 'Yaf\\Route\\Supervar::assemble' => + 'yaf\\route\\supervar::assemble' => array ( 0 => 'bool', 'info' => 'array', 'query=' => 'array|null', ), - 'Yaf\\Route\\Supervar::route' => + 'yaf\\route\\supervar::route' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Route_Interface::__construct' => + 'yaf\\route_interface::__construct' => array ( 0 => 'Yaf\\Route_Interface', ), - 'Yaf\\Route_Interface::assemble' => + 'yaf\\route_interface::assemble' => array ( 0 => 'bool', 'info' => 'array', 'query=' => 'array|null', ), - 'Yaf\\Route_Interface::route' => + 'yaf\\route_interface::route' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Route_Static::assemble' => + 'yaf\\route_static::assemble' => array ( 0 => 'bool', 'info' => 'array', 'query=' => 'array|null', ), - 'Yaf\\Route_Static::match' => + 'yaf\\route_static::match' => array ( 0 => 'bool', 'uri' => 'string', ), - 'Yaf\\Route_Static::route' => + 'yaf\\route_static::route' => array ( 0 => 'bool', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Router::__construct' => + 'yaf\\router::__construct' => array ( 0 => 'void', ), - 'Yaf\\Router::addConfig' => + 'yaf\\router::addconfig' => array ( 0 => 'Yaf\\Router|false', 'config' => 'Yaf\\Config_Abstract', ), - 'Yaf\\Router::addRoute' => + 'yaf\\router::addroute' => array ( 0 => 'Yaf\\Router|false', 'name' => 'string', 'route' => 'Yaf\\Route_Interface', ), - 'Yaf\\Router::getCurrentRoute' => + 'yaf\\router::getcurrentroute' => array ( 0 => 'string', ), - 'Yaf\\Router::getRoute' => + 'yaf\\router::getroute' => array ( 0 => 'Yaf\\Route_Interface', 'name' => 'string', ), - 'Yaf\\Router::getRoutes' => + 'yaf\\router::getroutes' => array ( 0 => 'array', ), - 'Yaf\\Router::route' => + 'yaf\\router::route' => array ( 0 => 'Yaf\\Router|false', 'request' => 'Yaf\\Request_Abstract', ), - 'Yaf\\Session::__clone' => + 'yaf\\session::__clone' => array ( 0 => 'void', ), - 'Yaf\\Session::__construct' => + 'yaf\\session::__construct' => array ( 0 => 'void', ), - 'Yaf\\Session::__get' => + 'yaf\\session::__get' => array ( 0 => 'void', 'name' => 'mixed', ), - 'Yaf\\Session::__isset' => + 'yaf\\session::__isset' => array ( 0 => 'void', 'name' => 'mixed', ), - 'Yaf\\Session::__set' => + 'yaf\\session::__set' => array ( 0 => 'void', 'name' => 'mixed', 'value' => 'mixed', ), - 'Yaf\\Session::__sleep' => + 'yaf\\session::__sleep' => array ( 0 => 'list', ), - 'Yaf\\Session::__unset' => + 'yaf\\session::__unset' => array ( 0 => 'void', 'name' => 'mixed', ), - 'Yaf\\Session::__wakeup' => + 'yaf\\session::__wakeup' => array ( 0 => 'void', ), - 'Yaf\\Session::count' => + 'yaf\\session::count' => array ( 0 => 'int', ), - 'Yaf\\Session::current' => + 'yaf\\session::current' => array ( 0 => 'mixed', ), - 'Yaf\\Session::del' => + 'yaf\\session::del' => array ( 0 => 'Yaf\\Session|false', 'name' => 'string', ), - 'Yaf\\Session::get' => + 'yaf\\session::get' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Yaf\\Session::getInstance' => + 'yaf\\session::getinstance' => array ( 0 => 'Yaf\\Session', ), - 'Yaf\\Session::has' => + 'yaf\\session::has' => array ( 0 => 'bool', 'name' => 'string', ), - 'Yaf\\Session::key' => + 'yaf\\session::key' => array ( 0 => 'int|string', ), - 'Yaf\\Session::next' => + 'yaf\\session::next' => array ( 0 => 'void', ), - 'Yaf\\Session::offsetExists' => + 'yaf\\session::offsetexists' => array ( 0 => 'bool', 'name' => 'int|string', ), - 'Yaf\\Session::offsetGet' => + 'yaf\\session::offsetget' => array ( 0 => 'mixed', 'name' => 'int|string', ), - 'Yaf\\Session::offsetSet' => + 'yaf\\session::offsetset' => array ( 0 => 'void', 'name' => 'int|null|string', 'value' => 'mixed', ), - 'Yaf\\Session::offsetUnset' => + 'yaf\\session::offsetunset' => array ( 0 => 'void', 'name' => 'int|string', ), - 'Yaf\\Session::rewind' => + 'yaf\\session::rewind' => array ( 0 => 'void', ), - 'Yaf\\Session::set' => + 'yaf\\session::set' => array ( 0 => 'Yaf\\Session|false', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf\\Session::start' => + 'yaf\\session::start' => array ( 0 => 'Yaf\\Session', ), - 'Yaf\\Session::valid' => + 'yaf\\session::valid' => array ( 0 => 'bool', ), - 'Yaf\\View\\Simple::__construct' => + 'yaf\\view\\simple::__construct' => array ( 0 => 'void', 'template_dir' => 'string', 'options=' => 'array|null', ), - 'Yaf\\View\\Simple::__get' => + 'yaf\\view\\simple::__get' => array ( 0 => 'mixed', 'name=' => 'null', ), - 'Yaf\\View\\Simple::__isset' => + 'yaf\\view\\simple::__isset' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Yaf\\View\\Simple::__set' => + 'yaf\\view\\simple::__set' => array ( 0 => 'void', 'name' => 'string', 'value=' => 'mixed', ), - 'Yaf\\View\\Simple::assign' => + 'yaf\\view\\simple::assign' => array ( 0 => 'Yaf\\View\\Simple', 'name' => 'array|string', 'value=' => 'mixed', ), - 'Yaf\\View\\Simple::assignRef' => + 'yaf\\view\\simple::assignref' => array ( 0 => 'Yaf\\View\\Simple', 'name' => 'string', '&value' => 'mixed', ), - 'Yaf\\View\\Simple::clear' => + 'yaf\\view\\simple::clear' => array ( 0 => 'Yaf\\View\\Simple', 'name=' => 'string', ), - 'Yaf\\View\\Simple::display' => + 'yaf\\view\\simple::display' => array ( 0 => 'bool', 'tpl' => 'string', 'tpl_vars=' => 'array|null', ), - 'Yaf\\View\\Simple::eval' => + 'yaf\\view\\simple::eval' => array ( 0 => 'bool|null', 'tpl_str' => 'string', 'vars=' => 'array|null', ), - 'Yaf\\View\\Simple::getScriptPath' => + 'yaf\\view\\simple::getscriptpath' => array ( 0 => 'string', ), - 'Yaf\\View\\Simple::render' => + 'yaf\\view\\simple::render' => array ( 0 => 'null|string', 'tpl' => 'string', 'tpl_vars=' => 'array|null', ), - 'Yaf\\View\\Simple::setScriptPath' => + 'yaf\\view\\simple::setscriptpath' => array ( 0 => 'Yaf\\View\\Simple', 'template_dir' => 'string', ), - 'Yaf\\View_Interface::assign' => + 'yaf\\view_interface::assign' => array ( 0 => 'bool', 'name' => 'array|string', 'value' => 'mixed', ), - 'Yaf\\View_Interface::display' => + 'yaf\\view_interface::display' => array ( 0 => 'bool', 'tpl' => 'string', 'tpl_vars=' => 'array|null', ), - 'Yaf\\View_Interface::getScriptPath' => + 'yaf\\view_interface::getscriptpath' => array ( 0 => 'string', ), - 'Yaf\\View_Interface::render' => + 'yaf\\view_interface::render' => array ( 0 => 'string', 'tpl' => 'string', 'tpl_vars=' => 'array|null', ), - 'Yaf\\View_Interface::setScriptPath' => + 'yaf\\view_interface::setscriptpath' => array ( 0 => 'void', 'template_dir' => 'string', ), - 'Yaf_Action_Abstract::__clone' => + 'yaf_action_abstract::__clone' => array ( 0 => 'void', ), - 'Yaf_Action_Abstract::__construct' => + 'yaf_action_abstract::__construct' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', @@ -43583,19 +43583,19 @@ 'view' => 'Yaf_View_Interface', 'invokeArgs=' => 'array|null', ), - 'Yaf_Action_Abstract::display' => + 'yaf_action_abstract::display' => array ( 0 => 'bool', 'tpl' => 'string', 'parameters=' => 'array|null', ), - 'Yaf_Action_Abstract::execute' => + 'yaf_action_abstract::execute' => array ( 0 => 'mixed', 'arg=' => 'mixed', '...args=' => 'mixed', ), - 'Yaf_Action_Abstract::forward' => + 'yaf_action_abstract::forward' => array ( 0 => 'bool', 'module' => 'string', @@ -43603,368 +43603,368 @@ 'action=' => 'string', 'parameters=' => 'array|null', ), - 'Yaf_Action_Abstract::getController' => + 'yaf_action_abstract::getcontroller' => array ( 0 => 'Yaf_Controller_Abstract', ), - 'Yaf_Action_Abstract::getControllerName' => + 'yaf_action_abstract::getcontrollername' => array ( 0 => 'string', ), - 'Yaf_Action_Abstract::getInvokeArg' => + 'yaf_action_abstract::getinvokearg' => array ( 0 => 'mixed|null', 'name' => 'string', ), - 'Yaf_Action_Abstract::getInvokeArgs' => + 'yaf_action_abstract::getinvokeargs' => array ( 0 => 'array', ), - 'Yaf_Action_Abstract::getModuleName' => + 'yaf_action_abstract::getmodulename' => array ( 0 => 'string', ), - 'Yaf_Action_Abstract::getRequest' => + 'yaf_action_abstract::getrequest' => array ( 0 => 'Yaf_Request_Abstract', ), - 'Yaf_Action_Abstract::getResponse' => + 'yaf_action_abstract::getresponse' => array ( 0 => 'Yaf_Response_Abstract', ), - 'Yaf_Action_Abstract::getView' => + 'yaf_action_abstract::getview' => array ( 0 => 'Yaf_View_Interface', ), - 'Yaf_Action_Abstract::getViewpath' => + 'yaf_action_abstract::getviewpath' => array ( 0 => 'string', ), - 'Yaf_Action_Abstract::init' => + 'yaf_action_abstract::init' => array ( 0 => 'mixed', ), - 'Yaf_Action_Abstract::initView' => + 'yaf_action_abstract::initview' => array ( 0 => 'Yaf_Response_Abstract', 'options=' => 'array|null', ), - 'Yaf_Action_Abstract::redirect' => + 'yaf_action_abstract::redirect' => array ( 0 => 'bool', 'url' => 'string', ), - 'Yaf_Action_Abstract::render' => + 'yaf_action_abstract::render' => array ( 0 => 'string', 'tpl' => 'string', 'parameters=' => 'array|null', ), - 'Yaf_Action_Abstract::setViewpath' => + 'yaf_action_abstract::setviewpath' => array ( 0 => 'bool', 'view_directory' => 'string', ), - 'Yaf_Application::__clone' => + 'yaf_application::__clone' => array ( 0 => 'void', ), - 'Yaf_Application::__construct' => + 'yaf_application::__construct' => array ( 0 => 'void', 'config' => 'mixed', 'envrion=' => 'string', ), - 'Yaf_Application::__destruct' => + 'yaf_application::__destruct' => array ( 0 => 'void', ), - 'Yaf_Application::__sleep' => + 'yaf_application::__sleep' => array ( 0 => 'list', ), - 'Yaf_Application::__wakeup' => + 'yaf_application::__wakeup' => array ( 0 => 'void', ), - 'Yaf_Application::app' => + 'yaf_application::app' => array ( 0 => 'Yaf_Application|null', ), - 'Yaf_Application::bootstrap' => + 'yaf_application::bootstrap' => array ( 0 => 'Yaf_Application', 'bootstrap=' => 'Yaf_Bootstrap_Abstract', ), - 'Yaf_Application::clearLastError' => + 'yaf_application::clearlasterror' => array ( 0 => 'Yaf_Application', ), - 'Yaf_Application::environ' => + 'yaf_application::environ' => array ( 0 => 'string', ), - 'Yaf_Application::execute' => + 'yaf_application::execute' => array ( 0 => 'void', 'entry' => 'callable', '...args' => 'string', ), - 'Yaf_Application::getAppDirectory' => + 'yaf_application::getappdirectory' => array ( 0 => 'Yaf_Application', ), - 'Yaf_Application::getConfig' => + 'yaf_application::getconfig' => array ( 0 => 'Yaf_Config_Abstract', ), - 'Yaf_Application::getDispatcher' => + 'yaf_application::getdispatcher' => array ( 0 => 'Yaf_Dispatcher', ), - 'Yaf_Application::getLastErrorMsg' => + 'yaf_application::getlasterrormsg' => array ( 0 => 'string', ), - 'Yaf_Application::getLastErrorNo' => + 'yaf_application::getlasterrorno' => array ( 0 => 'int', ), - 'Yaf_Application::getModules' => + 'yaf_application::getmodules' => array ( 0 => 'array', ), - 'Yaf_Application::run' => + 'yaf_application::run' => array ( 0 => 'void', ), - 'Yaf_Application::setAppDirectory' => + 'yaf_application::setappdirectory' => array ( 0 => 'Yaf_Application', 'directory' => 'string', ), - 'Yaf_Config_Abstract::__construct' => + 'yaf_config_abstract::__construct' => array ( 0 => 'void', ), - 'Yaf_Config_Abstract::get' => + 'yaf_config_abstract::get' => array ( 0 => 'mixed', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf_Config_Abstract::readonly' => + 'yaf_config_abstract::readonly' => array ( 0 => 'bool', ), - 'Yaf_Config_Abstract::set' => + 'yaf_config_abstract::set' => array ( 0 => 'Yaf_Config_Abstract', ), - 'Yaf_Config_Abstract::toArray' => + 'yaf_config_abstract::toarray' => array ( 0 => 'array', ), - 'Yaf_Config_Ini::__construct' => + 'yaf_config_ini::__construct' => array ( 0 => 'void', 'config_file' => 'string', 'section=' => 'string', ), - 'Yaf_Config_Ini::__get' => + 'yaf_config_ini::__get' => array ( 0 => 'void', 'name=' => 'string', ), - 'Yaf_Config_Ini::__isset' => + 'yaf_config_ini::__isset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Ini::__set' => + 'yaf_config_ini::__set' => array ( 0 => 'void', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf_Config_Ini::count' => + 'yaf_config_ini::count' => array ( 0 => 'void', ), - 'Yaf_Config_Ini::current' => + 'yaf_config_ini::current' => array ( 0 => 'void', ), - 'Yaf_Config_Ini::get' => + 'yaf_config_ini::get' => array ( 0 => 'mixed', 'name=' => 'mixed', ), - 'Yaf_Config_Ini::key' => + 'yaf_config_ini::key' => array ( 0 => 'void', ), - 'Yaf_Config_Ini::next' => + 'yaf_config_ini::next' => array ( 0 => 'void', ), - 'Yaf_Config_Ini::offsetExists' => + 'yaf_config_ini::offsetexists' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Ini::offsetGet' => + 'yaf_config_ini::offsetget' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Ini::offsetSet' => + 'yaf_config_ini::offsetset' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Yaf_Config_Ini::offsetUnset' => + 'yaf_config_ini::offsetunset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Ini::readonly' => + 'yaf_config_ini::readonly' => array ( 0 => 'void', ), - 'Yaf_Config_Ini::rewind' => + 'yaf_config_ini::rewind' => array ( 0 => 'void', ), - 'Yaf_Config_Ini::set' => + 'yaf_config_ini::set' => array ( 0 => 'Yaf_Config_Abstract', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf_Config_Ini::toArray' => + 'yaf_config_ini::toarray' => array ( 0 => 'array', ), - 'Yaf_Config_Ini::valid' => + 'yaf_config_ini::valid' => array ( 0 => 'void', ), - 'Yaf_Config_Simple::__construct' => + 'yaf_config_simple::__construct' => array ( 0 => 'void', 'config_file' => 'string', 'section=' => 'string', ), - 'Yaf_Config_Simple::__get' => + 'yaf_config_simple::__get' => array ( 0 => 'void', 'name=' => 'string', ), - 'Yaf_Config_Simple::__isset' => + 'yaf_config_simple::__isset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Simple::__set' => + 'yaf_config_simple::__set' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Yaf_Config_Simple::count' => + 'yaf_config_simple::count' => array ( 0 => 'void', ), - 'Yaf_Config_Simple::current' => + 'yaf_config_simple::current' => array ( 0 => 'void', ), - 'Yaf_Config_Simple::get' => + 'yaf_config_simple::get' => array ( 0 => 'mixed', 'name=' => 'mixed', ), - 'Yaf_Config_Simple::key' => + 'yaf_config_simple::key' => array ( 0 => 'void', ), - 'Yaf_Config_Simple::next' => + 'yaf_config_simple::next' => array ( 0 => 'void', ), - 'Yaf_Config_Simple::offsetExists' => + 'yaf_config_simple::offsetexists' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Simple::offsetGet' => + 'yaf_config_simple::offsetget' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Simple::offsetSet' => + 'yaf_config_simple::offsetset' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Yaf_Config_Simple::offsetUnset' => + 'yaf_config_simple::offsetunset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Config_Simple::readonly' => + 'yaf_config_simple::readonly' => array ( 0 => 'void', ), - 'Yaf_Config_Simple::rewind' => + 'yaf_config_simple::rewind' => array ( 0 => 'void', ), - 'Yaf_Config_Simple::set' => + 'yaf_config_simple::set' => array ( 0 => 'Yaf_Config_Abstract', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf_Config_Simple::toArray' => + 'yaf_config_simple::toarray' => array ( 0 => 'array', ), - 'Yaf_Config_Simple::valid' => + 'yaf_config_simple::valid' => array ( 0 => 'void', ), - 'Yaf_Controller_Abstract::__clone' => + 'yaf_controller_abstract::__clone' => array ( 0 => 'void', ), - 'Yaf_Controller_Abstract::__construct' => + 'yaf_controller_abstract::__construct' => array ( 0 => 'void', ), - 'Yaf_Controller_Abstract::display' => + 'yaf_controller_abstract::display' => array ( 0 => 'bool', 'tpl' => 'string', 'parameters=' => 'array', ), - 'Yaf_Controller_Abstract::forward' => + 'yaf_controller_abstract::forward' => array ( 0 => 'void', 'action' => 'string', 'parameters=' => 'array', ), - 'Yaf_Controller_Abstract::forward\'1' => + 'yaf_controller_abstract::forward\'1' => array ( 0 => 'void', 'controller' => 'string', 'action' => 'string', 'parameters=' => 'array', ), - 'Yaf_Controller_Abstract::forward\'2' => + 'yaf_controller_abstract::forward\'2' => array ( 0 => 'void', 'module' => 'string', @@ -43972,978 +43972,978 @@ 'action' => 'string', 'parameters=' => 'array', ), - 'Yaf_Controller_Abstract::getInvokeArg' => + 'yaf_controller_abstract::getinvokearg' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Controller_Abstract::getInvokeArgs' => + 'yaf_controller_abstract::getinvokeargs' => array ( 0 => 'void', ), - 'Yaf_Controller_Abstract::getModuleName' => + 'yaf_controller_abstract::getmodulename' => array ( 0 => 'string', ), - 'Yaf_Controller_Abstract::getName' => + 'yaf_controller_abstract::getname' => array ( 0 => 'string', ), - 'Yaf_Controller_Abstract::getRequest' => + 'yaf_controller_abstract::getrequest' => array ( 0 => 'Yaf_Request_Abstract', ), - 'Yaf_Controller_Abstract::getResponse' => + 'yaf_controller_abstract::getresponse' => array ( 0 => 'Yaf_Response_Abstract', ), - 'Yaf_Controller_Abstract::getView' => + 'yaf_controller_abstract::getview' => array ( 0 => 'Yaf_View_Interface', ), - 'Yaf_Controller_Abstract::getViewpath' => + 'yaf_controller_abstract::getviewpath' => array ( 0 => 'void', ), - 'Yaf_Controller_Abstract::init' => + 'yaf_controller_abstract::init' => array ( 0 => 'void', ), - 'Yaf_Controller_Abstract::initView' => + 'yaf_controller_abstract::initview' => array ( 0 => 'void', 'options=' => 'array', ), - 'Yaf_Controller_Abstract::redirect' => + 'yaf_controller_abstract::redirect' => array ( 0 => 'bool', 'url' => 'string', ), - 'Yaf_Controller_Abstract::render' => + 'yaf_controller_abstract::render' => array ( 0 => 'string', 'tpl' => 'string', 'parameters=' => 'array', ), - 'Yaf_Controller_Abstract::setViewpath' => + 'yaf_controller_abstract::setviewpath' => array ( 0 => 'void', 'view_directory' => 'string', ), - 'Yaf_Dispatcher::__clone' => + 'yaf_dispatcher::__clone' => array ( 0 => 'void', ), - 'Yaf_Dispatcher::__construct' => + 'yaf_dispatcher::__construct' => array ( 0 => 'void', ), - 'Yaf_Dispatcher::__sleep' => + 'yaf_dispatcher::__sleep' => array ( 0 => 'list', ), - 'Yaf_Dispatcher::__wakeup' => + 'yaf_dispatcher::__wakeup' => array ( 0 => 'void', ), - 'Yaf_Dispatcher::autoRender' => + 'yaf_dispatcher::autorender' => array ( 0 => 'Yaf_Dispatcher', 'flag=' => 'bool', ), - 'Yaf_Dispatcher::catchException' => + 'yaf_dispatcher::catchexception' => array ( 0 => 'Yaf_Dispatcher', 'flag=' => 'bool', ), - 'Yaf_Dispatcher::disableView' => + 'yaf_dispatcher::disableview' => array ( 0 => 'bool', ), - 'Yaf_Dispatcher::dispatch' => + 'yaf_dispatcher::dispatch' => array ( 0 => 'Yaf_Response_Abstract', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Dispatcher::enableView' => + 'yaf_dispatcher::enableview' => array ( 0 => 'Yaf_Dispatcher', ), - 'Yaf_Dispatcher::flushInstantly' => + 'yaf_dispatcher::flushinstantly' => array ( 0 => 'Yaf_Dispatcher', 'flag=' => 'bool', ), - 'Yaf_Dispatcher::getApplication' => + 'yaf_dispatcher::getapplication' => array ( 0 => 'Yaf_Application', ), - 'Yaf_Dispatcher::getDefaultAction' => + 'yaf_dispatcher::getdefaultaction' => array ( 0 => 'string', ), - 'Yaf_Dispatcher::getDefaultController' => + 'yaf_dispatcher::getdefaultcontroller' => array ( 0 => 'string', ), - 'Yaf_Dispatcher::getDefaultModule' => + 'yaf_dispatcher::getdefaultmodule' => array ( 0 => 'string', ), - 'Yaf_Dispatcher::getInstance' => + 'yaf_dispatcher::getinstance' => array ( 0 => 'Yaf_Dispatcher', ), - 'Yaf_Dispatcher::getRequest' => + 'yaf_dispatcher::getrequest' => array ( 0 => 'Yaf_Request_Abstract', ), - 'Yaf_Dispatcher::getRouter' => + 'yaf_dispatcher::getrouter' => array ( 0 => 'Yaf_Router', ), - 'Yaf_Dispatcher::initView' => + 'yaf_dispatcher::initview' => array ( 0 => 'Yaf_View_Interface', 'templates_dir' => 'string', 'options=' => 'array', ), - 'Yaf_Dispatcher::registerPlugin' => + 'yaf_dispatcher::registerplugin' => array ( 0 => 'Yaf_Dispatcher', 'plugin' => 'Yaf_Plugin_Abstract', ), - 'Yaf_Dispatcher::returnResponse' => + 'yaf_dispatcher::returnresponse' => array ( 0 => 'Yaf_Dispatcher', 'flag' => 'bool', ), - 'Yaf_Dispatcher::setDefaultAction' => + 'yaf_dispatcher::setdefaultaction' => array ( 0 => 'Yaf_Dispatcher', 'action' => 'string', ), - 'Yaf_Dispatcher::setDefaultController' => + 'yaf_dispatcher::setdefaultcontroller' => array ( 0 => 'Yaf_Dispatcher', 'controller' => 'string', ), - 'Yaf_Dispatcher::setDefaultModule' => + 'yaf_dispatcher::setdefaultmodule' => array ( 0 => 'Yaf_Dispatcher', 'module' => 'string', ), - 'Yaf_Dispatcher::setErrorHandler' => + 'yaf_dispatcher::seterrorhandler' => array ( 0 => 'Yaf_Dispatcher', 'callback' => 'callable', 'error_types' => 'int', ), - 'Yaf_Dispatcher::setRequest' => + 'yaf_dispatcher::setrequest' => array ( 0 => 'Yaf_Dispatcher', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Dispatcher::setView' => + 'yaf_dispatcher::setview' => array ( 0 => 'Yaf_Dispatcher', 'view' => 'Yaf_View_Interface', ), - 'Yaf_Dispatcher::throwException' => + 'yaf_dispatcher::throwexception' => array ( 0 => 'Yaf_Dispatcher', 'flag=' => 'bool', ), - 'Yaf_Exception::__construct' => + 'yaf_exception::__construct' => array ( 0 => 'void', ), - 'Yaf_Exception::getPrevious' => + 'yaf_exception::getprevious' => array ( 0 => 'void', ), - 'Yaf_Loader::__clone' => + 'yaf_loader::__clone' => array ( 0 => 'void', ), - 'Yaf_Loader::__construct' => + 'yaf_loader::__construct' => array ( 0 => 'void', ), - 'Yaf_Loader::__sleep' => + 'yaf_loader::__sleep' => array ( 0 => 'list', ), - 'Yaf_Loader::__wakeup' => + 'yaf_loader::__wakeup' => array ( 0 => 'void', ), - 'Yaf_Loader::autoload' => + 'yaf_loader::autoload' => array ( 0 => 'void', ), - 'Yaf_Loader::clearLocalNamespace' => + 'yaf_loader::clearlocalnamespace' => array ( 0 => 'void', ), - 'Yaf_Loader::getInstance' => + 'yaf_loader::getinstance' => array ( 0 => 'Yaf_Loader', ), - 'Yaf_Loader::getLibraryPath' => + 'yaf_loader::getlibrarypath' => array ( 0 => 'Yaf_Loader', 'is_global=' => 'bool', ), - 'Yaf_Loader::getLocalNamespace' => + 'yaf_loader::getlocalnamespace' => array ( 0 => 'void', ), - 'Yaf_Loader::getNamespacePath' => + 'yaf_loader::getnamespacepath' => array ( 0 => 'string', 'namespaces' => 'string', ), - 'Yaf_Loader::import' => + 'yaf_loader::import' => array ( 0 => 'bool', ), - 'Yaf_Loader::isLocalName' => + 'yaf_loader::islocalname' => array ( 0 => 'bool', ), - 'Yaf_Loader::registerLocalNamespace' => + 'yaf_loader::registerlocalnamespace' => array ( 0 => 'void', 'prefix' => 'mixed', ), - 'Yaf_Loader::registerNamespace' => + 'yaf_loader::registernamespace' => array ( 0 => 'bool', 'namespaces' => 'array|string', 'path=' => 'string', ), - 'Yaf_Loader::setLibraryPath' => + 'yaf_loader::setlibrarypath' => array ( 0 => 'Yaf_Loader', 'directory' => 'string', 'is_global=' => 'bool', ), - 'Yaf_Plugin_Abstract::dispatchLoopShutdown' => + 'yaf_plugin_abstract::dispatchloopshutdown' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', 'response' => 'Yaf_Response_Abstract', ), - 'Yaf_Plugin_Abstract::dispatchLoopStartup' => + 'yaf_plugin_abstract::dispatchloopstartup' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', 'response' => 'Yaf_Response_Abstract', ), - 'Yaf_Plugin_Abstract::postDispatch' => + 'yaf_plugin_abstract::postdispatch' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', 'response' => 'Yaf_Response_Abstract', ), - 'Yaf_Plugin_Abstract::preDispatch' => + 'yaf_plugin_abstract::predispatch' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', 'response' => 'Yaf_Response_Abstract', ), - 'Yaf_Plugin_Abstract::preResponse' => + 'yaf_plugin_abstract::preresponse' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', 'response' => 'Yaf_Response_Abstract', ), - 'Yaf_Plugin_Abstract::routerShutdown' => + 'yaf_plugin_abstract::routershutdown' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', 'response' => 'Yaf_Response_Abstract', ), - 'Yaf_Plugin_Abstract::routerStartup' => + 'yaf_plugin_abstract::routerstartup' => array ( 0 => 'void', 'request' => 'Yaf_Request_Abstract', 'response' => 'Yaf_Response_Abstract', ), - 'Yaf_Registry::__clone' => + 'yaf_registry::__clone' => array ( 0 => 'void', ), - 'Yaf_Registry::__construct' => + 'yaf_registry::__construct' => array ( 0 => 'void', ), - 'Yaf_Registry::del' => + 'yaf_registry::del' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Registry::get' => + 'yaf_registry::get' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Yaf_Registry::has' => + 'yaf_registry::has' => array ( 0 => 'bool', 'name' => 'string', ), - 'Yaf_Registry::set' => + 'yaf_registry::set' => array ( 0 => 'bool', 'name' => 'string', 'value' => 'string', ), - 'Yaf_Request_Abstract::clearParams' => + 'yaf_request_abstract::clearparams' => array ( 0 => 'bool', ), - 'Yaf_Request_Abstract::getActionName' => + 'yaf_request_abstract::getactionname' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getBaseUri' => + 'yaf_request_abstract::getbaseuri' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getControllerName' => + 'yaf_request_abstract::getcontrollername' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getEnv' => + 'yaf_request_abstract::getenv' => array ( 0 => 'void', 'name' => 'string', 'default=' => 'string', ), - 'Yaf_Request_Abstract::getException' => + 'yaf_request_abstract::getexception' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getLanguage' => + 'yaf_request_abstract::getlanguage' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getMethod' => + 'yaf_request_abstract::getmethod' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getModuleName' => + 'yaf_request_abstract::getmodulename' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getParam' => + 'yaf_request_abstract::getparam' => array ( 0 => 'void', 'name' => 'string', 'default=' => 'string', ), - 'Yaf_Request_Abstract::getParams' => + 'yaf_request_abstract::getparams' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getRequestUri' => + 'yaf_request_abstract::getrequesturi' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::getServer' => + 'yaf_request_abstract::getserver' => array ( 0 => 'void', 'name' => 'string', 'default=' => 'string', ), - 'Yaf_Request_Abstract::isCli' => + 'yaf_request_abstract::iscli' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isDispatched' => + 'yaf_request_abstract::isdispatched' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isGet' => + 'yaf_request_abstract::isget' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isHead' => + 'yaf_request_abstract::ishead' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isOptions' => + 'yaf_request_abstract::isoptions' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isPost' => + 'yaf_request_abstract::ispost' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isPut' => + 'yaf_request_abstract::isput' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isRouted' => + 'yaf_request_abstract::isrouted' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::isXmlHttpRequest' => + 'yaf_request_abstract::isxmlhttprequest' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::setActionName' => + 'yaf_request_abstract::setactionname' => array ( 0 => 'void', 'action' => 'string', ), - 'Yaf_Request_Abstract::setBaseUri' => + 'yaf_request_abstract::setbaseuri' => array ( 0 => 'bool', 'uir' => 'string', ), - 'Yaf_Request_Abstract::setControllerName' => + 'yaf_request_abstract::setcontrollername' => array ( 0 => 'void', 'controller' => 'string', ), - 'Yaf_Request_Abstract::setDispatched' => + 'yaf_request_abstract::setdispatched' => array ( 0 => 'void', ), - 'Yaf_Request_Abstract::setModuleName' => + 'yaf_request_abstract::setmodulename' => array ( 0 => 'void', 'module' => 'string', ), - 'Yaf_Request_Abstract::setParam' => + 'yaf_request_abstract::setparam' => array ( 0 => 'void', 'name' => 'string', 'value=' => 'string', ), - 'Yaf_Request_Abstract::setRequestUri' => + 'yaf_request_abstract::setrequesturi' => array ( 0 => 'void', 'uir' => 'string', ), - 'Yaf_Request_Abstract::setRouted' => + 'yaf_request_abstract::setrouted' => array ( 0 => 'void', 'flag=' => 'string', ), - 'Yaf_Request_Http::__clone' => + 'yaf_request_http::__clone' => array ( 0 => 'void', ), - 'Yaf_Request_Http::__construct' => + 'yaf_request_http::__construct' => array ( 0 => 'void', ), - 'Yaf_Request_Http::get' => + 'yaf_request_http::get' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'string', ), - 'Yaf_Request_Http::getActionName' => + 'yaf_request_http::getactionname' => array ( 0 => 'string', ), - 'Yaf_Request_Http::getBaseUri' => + 'yaf_request_http::getbaseuri' => array ( 0 => 'string', ), - 'Yaf_Request_Http::getControllerName' => + 'yaf_request_http::getcontrollername' => array ( 0 => 'string', ), - 'Yaf_Request_Http::getCookie' => + 'yaf_request_http::getcookie' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'string', ), - 'Yaf_Request_Http::getEnv' => + 'yaf_request_http::getenv' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf_Request_Http::getException' => + 'yaf_request_http::getexception' => array ( 0 => 'Yaf_Exception', ), - 'Yaf_Request_Http::getFiles' => + 'yaf_request_http::getfiles' => array ( 0 => 'void', ), - 'Yaf_Request_Http::getLanguage' => + 'yaf_request_http::getlanguage' => array ( 0 => 'string', ), - 'Yaf_Request_Http::getMethod' => + 'yaf_request_http::getmethod' => array ( 0 => 'string', ), - 'Yaf_Request_Http::getModuleName' => + 'yaf_request_http::getmodulename' => array ( 0 => 'string', ), - 'Yaf_Request_Http::getParam' => + 'yaf_request_http::getparam' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'mixed', ), - 'Yaf_Request_Http::getParams' => + 'yaf_request_http::getparams' => array ( 0 => 'array', ), - 'Yaf_Request_Http::getPost' => + 'yaf_request_http::getpost' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'string', ), - 'Yaf_Request_Http::getQuery' => + 'yaf_request_http::getquery' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'string', ), - 'Yaf_Request_Http::getRaw' => + 'yaf_request_http::getraw' => array ( 0 => 'mixed', ), - 'Yaf_Request_Http::getRequest' => + 'yaf_request_http::getrequest' => array ( 0 => 'void', ), - 'Yaf_Request_Http::getRequestUri' => + 'yaf_request_http::getrequesturi' => array ( 0 => 'string', ), - 'Yaf_Request_Http::getServer' => + 'yaf_request_http::getserver' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf_Request_Http::isCli' => + 'yaf_request_http::iscli' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isDispatched' => + 'yaf_request_http::isdispatched' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isGet' => + 'yaf_request_http::isget' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isHead' => + 'yaf_request_http::ishead' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isOptions' => + 'yaf_request_http::isoptions' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isPost' => + 'yaf_request_http::ispost' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isPut' => + 'yaf_request_http::isput' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isRouted' => + 'yaf_request_http::isrouted' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::isXmlHttpRequest' => + 'yaf_request_http::isxmlhttprequest' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::setActionName' => + 'yaf_request_http::setactionname' => array ( 0 => 'Yaf_Request_Abstract|bool', 'action' => 'string', ), - 'Yaf_Request_Http::setBaseUri' => + 'yaf_request_http::setbaseuri' => array ( 0 => 'bool', 'uri' => 'string', ), - 'Yaf_Request_Http::setControllerName' => + 'yaf_request_http::setcontrollername' => array ( 0 => 'Yaf_Request_Abstract|bool', 'controller' => 'string', ), - 'Yaf_Request_Http::setDispatched' => + 'yaf_request_http::setdispatched' => array ( 0 => 'bool', ), - 'Yaf_Request_Http::setModuleName' => + 'yaf_request_http::setmodulename' => array ( 0 => 'Yaf_Request_Abstract|bool', 'module' => 'string', ), - 'Yaf_Request_Http::setParam' => + 'yaf_request_http::setparam' => array ( 0 => 'Yaf_Request_Abstract|bool', 'name' => 'array|string', 'value=' => 'string', ), - 'Yaf_Request_Http::setRequestUri' => + 'yaf_request_http::setrequesturi' => array ( 0 => 'mixed', 'uri' => 'string', ), - 'Yaf_Request_Http::setRouted' => + 'yaf_request_http::setrouted' => array ( 0 => 'Yaf_Request_Abstract|bool', ), - 'Yaf_Request_Simple::__clone' => + 'yaf_request_simple::__clone' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::__construct' => + 'yaf_request_simple::__construct' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::get' => + 'yaf_request_simple::get' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::getActionName' => + 'yaf_request_simple::getactionname' => array ( 0 => 'string', ), - 'Yaf_Request_Simple::getBaseUri' => + 'yaf_request_simple::getbaseuri' => array ( 0 => 'string', ), - 'Yaf_Request_Simple::getControllerName' => + 'yaf_request_simple::getcontrollername' => array ( 0 => 'string', ), - 'Yaf_Request_Simple::getCookie' => + 'yaf_request_simple::getcookie' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::getEnv' => + 'yaf_request_simple::getenv' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf_Request_Simple::getException' => + 'yaf_request_simple::getexception' => array ( 0 => 'Yaf_Exception', ), - 'Yaf_Request_Simple::getFiles' => + 'yaf_request_simple::getfiles' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::getLanguage' => + 'yaf_request_simple::getlanguage' => array ( 0 => 'string', ), - 'Yaf_Request_Simple::getMethod' => + 'yaf_request_simple::getmethod' => array ( 0 => 'string', ), - 'Yaf_Request_Simple::getModuleName' => + 'yaf_request_simple::getmodulename' => array ( 0 => 'string', ), - 'Yaf_Request_Simple::getParam' => + 'yaf_request_simple::getparam' => array ( 0 => 'mixed', 'name' => 'string', 'default=' => 'mixed', ), - 'Yaf_Request_Simple::getParams' => + 'yaf_request_simple::getparams' => array ( 0 => 'array', ), - 'Yaf_Request_Simple::getPost' => + 'yaf_request_simple::getpost' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::getQuery' => + 'yaf_request_simple::getquery' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::getRequest' => + 'yaf_request_simple::getrequest' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::getRequestUri' => + 'yaf_request_simple::getrequesturi' => array ( 0 => 'string', ), - 'Yaf_Request_Simple::getServer' => + 'yaf_request_simple::getserver' => array ( 0 => 'mixed', 'name=' => 'string', 'default=' => 'mixed', ), - 'Yaf_Request_Simple::isCli' => + 'yaf_request_simple::iscli' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isDispatched' => + 'yaf_request_simple::isdispatched' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isGet' => + 'yaf_request_simple::isget' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isHead' => + 'yaf_request_simple::ishead' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isOptions' => + 'yaf_request_simple::isoptions' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isPost' => + 'yaf_request_simple::ispost' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isPut' => + 'yaf_request_simple::isput' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isRouted' => + 'yaf_request_simple::isrouted' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::isXmlHttpRequest' => + 'yaf_request_simple::isxmlhttprequest' => array ( 0 => 'void', ), - 'Yaf_Request_Simple::setActionName' => + 'yaf_request_simple::setactionname' => array ( 0 => 'Yaf_Request_Abstract|bool', 'action' => 'string', ), - 'Yaf_Request_Simple::setBaseUri' => + 'yaf_request_simple::setbaseuri' => array ( 0 => 'bool', 'uri' => 'string', ), - 'Yaf_Request_Simple::setControllerName' => + 'yaf_request_simple::setcontrollername' => array ( 0 => 'Yaf_Request_Abstract|bool', 'controller' => 'string', ), - 'Yaf_Request_Simple::setDispatched' => + 'yaf_request_simple::setdispatched' => array ( 0 => 'bool', ), - 'Yaf_Request_Simple::setModuleName' => + 'yaf_request_simple::setmodulename' => array ( 0 => 'Yaf_Request_Abstract|bool', 'module' => 'string', ), - 'Yaf_Request_Simple::setParam' => + 'yaf_request_simple::setparam' => array ( 0 => 'Yaf_Request_Abstract|bool', 'name' => 'array|string', 'value=' => 'string', ), - 'Yaf_Request_Simple::setRequestUri' => + 'yaf_request_simple::setrequesturi' => array ( 0 => 'mixed', 'uri' => 'string', ), - 'Yaf_Request_Simple::setRouted' => + 'yaf_request_simple::setrouted' => array ( 0 => 'Yaf_Request_Abstract|bool', ), - 'Yaf_Response_Abstract::__clone' => + 'yaf_response_abstract::__clone' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::__construct' => + 'yaf_response_abstract::__construct' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::__destruct' => + 'yaf_response_abstract::__destruct' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::__toString' => + 'yaf_response_abstract::__tostring' => array ( 0 => 'string', ), - 'Yaf_Response_Abstract::appendBody' => + 'yaf_response_abstract::appendbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Abstract::clearBody' => + 'yaf_response_abstract::clearbody' => array ( 0 => 'bool', 'key=' => 'string', ), - 'Yaf_Response_Abstract::clearHeaders' => + 'yaf_response_abstract::clearheaders' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::getBody' => + 'yaf_response_abstract::getbody' => array ( 0 => 'mixed', 'key=' => 'string', ), - 'Yaf_Response_Abstract::getHeader' => + 'yaf_response_abstract::getheader' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::prependBody' => + 'yaf_response_abstract::prependbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Abstract::response' => + 'yaf_response_abstract::response' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::setAllHeaders' => + 'yaf_response_abstract::setallheaders' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::setBody' => + 'yaf_response_abstract::setbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Abstract::setHeader' => + 'yaf_response_abstract::setheader' => array ( 0 => 'void', ), - 'Yaf_Response_Abstract::setRedirect' => + 'yaf_response_abstract::setredirect' => array ( 0 => 'void', ), - 'Yaf_Response_Cli::__clone' => + 'yaf_response_cli::__clone' => array ( 0 => 'void', ), - 'Yaf_Response_Cli::__construct' => + 'yaf_response_cli::__construct' => array ( 0 => 'void', ), - 'Yaf_Response_Cli::__destruct' => + 'yaf_response_cli::__destruct' => array ( 0 => 'void', ), - 'Yaf_Response_Cli::__toString' => + 'yaf_response_cli::__tostring' => array ( 0 => 'string', ), - 'Yaf_Response_Cli::appendBody' => + 'yaf_response_cli::appendbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Cli::clearBody' => + 'yaf_response_cli::clearbody' => array ( 0 => 'bool', 'key=' => 'string', ), - 'Yaf_Response_Cli::getBody' => + 'yaf_response_cli::getbody' => array ( 0 => 'mixed', 'key=' => 'null|string', ), - 'Yaf_Response_Cli::prependBody' => + 'yaf_response_cli::prependbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Cli::setBody' => + 'yaf_response_cli::setbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Http::__clone' => + 'yaf_response_http::__clone' => array ( 0 => 'void', ), - 'Yaf_Response_Http::__construct' => + 'yaf_response_http::__construct' => array ( 0 => 'void', ), - 'Yaf_Response_Http::__destruct' => + 'yaf_response_http::__destruct' => array ( 0 => 'void', ), - 'Yaf_Response_Http::__toString' => + 'yaf_response_http::__tostring' => array ( 0 => 'string', ), - 'Yaf_Response_Http::appendBody' => + 'yaf_response_http::appendbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Http::clearBody' => + 'yaf_response_http::clearbody' => array ( 0 => 'bool', 'key=' => 'string', ), - 'Yaf_Response_Http::clearHeaders' => + 'yaf_response_http::clearheaders' => array ( 0 => 'Yaf_Response_Abstract|false', 'name=' => 'string', ), - 'Yaf_Response_Http::getBody' => + 'yaf_response_http::getbody' => array ( 0 => 'mixed', 'key=' => 'null|string', ), - 'Yaf_Response_Http::getHeader' => + 'yaf_response_http::getheader' => array ( 0 => 'mixed', 'name=' => 'string', ), - 'Yaf_Response_Http::prependBody' => + 'yaf_response_http::prependbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Http::response' => + 'yaf_response_http::response' => array ( 0 => 'bool', ), - 'Yaf_Response_Http::setAllHeaders' => + 'yaf_response_http::setallheaders' => array ( 0 => 'bool', 'headers' => 'array', ), - 'Yaf_Response_Http::setBody' => + 'yaf_response_http::setbody' => array ( 0 => 'bool', 'content' => 'string', 'key=' => 'string', ), - 'Yaf_Response_Http::setHeader' => + 'yaf_response_http::setheader' => array ( 0 => 'bool', 'name' => 'string', @@ -44951,44 +44951,44 @@ 'replace=' => 'bool', 'response_code=' => 'int', ), - 'Yaf_Response_Http::setRedirect' => + 'yaf_response_http::setredirect' => array ( 0 => 'bool', 'url' => 'string', ), - 'Yaf_Route_Interface::__construct' => + 'yaf_route_interface::__construct' => array ( 0 => 'void', ), - 'Yaf_Route_Interface::assemble' => + 'yaf_route_interface::assemble' => array ( 0 => 'string', 'info' => 'array', 'query=' => 'array', ), - 'Yaf_Route_Interface::route' => + 'yaf_route_interface::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Route_Map::__construct' => + 'yaf_route_map::__construct' => array ( 0 => 'void', 'controller_prefer=' => 'string', 'delimiter=' => 'string', ), - 'Yaf_Route_Map::assemble' => + 'yaf_route_map::assemble' => array ( 0 => 'string', 'info' => 'array', 'query=' => 'array', ), - 'Yaf_Route_Map::route' => + 'yaf_route_map::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Route_Regex::__construct' => + 'yaf_route_regex::__construct' => array ( 0 => 'void', 'match' => 'string', @@ -44997,439 +44997,439 @@ 'verify=' => 'array', 'reverse=' => 'string', ), - 'Yaf_Route_Regex::addConfig' => + 'yaf_route_regex::addconfig' => array ( 0 => 'Yaf_Router|bool', 'config' => 'Yaf_Config_Abstract', ), - 'Yaf_Route_Regex::addRoute' => + 'yaf_route_regex::addroute' => array ( 0 => 'Yaf_Router|bool', 'name' => 'string', 'route' => 'Yaf_Route_Interface', ), - 'Yaf_Route_Regex::assemble' => + 'yaf_route_regex::assemble' => array ( 0 => 'string', 'info' => 'array', 'query=' => 'array', ), - 'Yaf_Route_Regex::getCurrentRoute' => + 'yaf_route_regex::getcurrentroute' => array ( 0 => 'string', ), - 'Yaf_Route_Regex::getRoute' => + 'yaf_route_regex::getroute' => array ( 0 => 'Yaf_Route_Interface', 'name' => 'string', ), - 'Yaf_Route_Regex::getRoutes' => + 'yaf_route_regex::getroutes' => array ( 0 => 'array', ), - 'Yaf_Route_Regex::route' => + 'yaf_route_regex::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Route_Rewrite::__construct' => + 'yaf_route_rewrite::__construct' => array ( 0 => 'void', 'match' => 'string', 'route' => 'array', 'verify=' => 'array', ), - 'Yaf_Route_Rewrite::addConfig' => + 'yaf_route_rewrite::addconfig' => array ( 0 => 'Yaf_Router|bool', 'config' => 'Yaf_Config_Abstract', ), - 'Yaf_Route_Rewrite::addRoute' => + 'yaf_route_rewrite::addroute' => array ( 0 => 'Yaf_Router|bool', 'name' => 'string', 'route' => 'Yaf_Route_Interface', ), - 'Yaf_Route_Rewrite::assemble' => + 'yaf_route_rewrite::assemble' => array ( 0 => 'string', 'info' => 'array', 'query=' => 'array', ), - 'Yaf_Route_Rewrite::getCurrentRoute' => + 'yaf_route_rewrite::getcurrentroute' => array ( 0 => 'string', ), - 'Yaf_Route_Rewrite::getRoute' => + 'yaf_route_rewrite::getroute' => array ( 0 => 'Yaf_Route_Interface', 'name' => 'string', ), - 'Yaf_Route_Rewrite::getRoutes' => + 'yaf_route_rewrite::getroutes' => array ( 0 => 'array', ), - 'Yaf_Route_Rewrite::route' => + 'yaf_route_rewrite::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Route_Simple::__construct' => + 'yaf_route_simple::__construct' => array ( 0 => 'void', 'module_name' => 'string', 'controller_name' => 'string', 'action_name' => 'string', ), - 'Yaf_Route_Simple::assemble' => + 'yaf_route_simple::assemble' => array ( 0 => 'string', 'info' => 'array', 'query=' => 'array', ), - 'Yaf_Route_Simple::route' => + 'yaf_route_simple::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Route_Static::assemble' => + 'yaf_route_static::assemble' => array ( 0 => 'string', 'info' => 'array', 'query=' => 'array', ), - 'Yaf_Route_Static::match' => + 'yaf_route_static::match' => array ( 0 => 'void', 'uri' => 'string', ), - 'Yaf_Route_Static::route' => + 'yaf_route_static::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Route_Supervar::__construct' => + 'yaf_route_supervar::__construct' => array ( 0 => 'void', 'supervar_name' => 'string', ), - 'Yaf_Route_Supervar::assemble' => + 'yaf_route_supervar::assemble' => array ( 0 => 'string', 'info' => 'array', 'query=' => 'array', ), - 'Yaf_Route_Supervar::route' => + 'yaf_route_supervar::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Router::__construct' => + 'yaf_router::__construct' => array ( 0 => 'void', ), - 'Yaf_Router::addConfig' => + 'yaf_router::addconfig' => array ( 0 => 'bool', 'config' => 'Yaf_Config_Abstract', ), - 'Yaf_Router::addRoute' => + 'yaf_router::addroute' => array ( 0 => 'bool', 'name' => 'string', 'route' => 'Yaf_Route_Interface', ), - 'Yaf_Router::getCurrentRoute' => + 'yaf_router::getcurrentroute' => array ( 0 => 'string', ), - 'Yaf_Router::getRoute' => + 'yaf_router::getroute' => array ( 0 => 'Yaf_Route_Interface', 'name' => 'string', ), - 'Yaf_Router::getRoutes' => + 'yaf_router::getroutes' => array ( 0 => 'mixed', ), - 'Yaf_Router::route' => + 'yaf_router::route' => array ( 0 => 'bool', 'request' => 'Yaf_Request_Abstract', ), - 'Yaf_Session::__clone' => + 'yaf_session::__clone' => array ( 0 => 'void', ), - 'Yaf_Session::__construct' => + 'yaf_session::__construct' => array ( 0 => 'void', ), - 'Yaf_Session::__get' => + 'yaf_session::__get' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::__isset' => + 'yaf_session::__isset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::__set' => + 'yaf_session::__set' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Yaf_Session::__sleep' => + 'yaf_session::__sleep' => array ( 0 => 'list', ), - 'Yaf_Session::__unset' => + 'yaf_session::__unset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::__wakeup' => + 'yaf_session::__wakeup' => array ( 0 => 'void', ), - 'Yaf_Session::count' => + 'yaf_session::count' => array ( 0 => 'void', ), - 'Yaf_Session::current' => + 'yaf_session::current' => array ( 0 => 'void', ), - 'Yaf_Session::del' => + 'yaf_session::del' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::get' => + 'yaf_session::get' => array ( 0 => 'mixed', 'name' => 'string', ), - 'Yaf_Session::getInstance' => + 'yaf_session::getinstance' => array ( 0 => 'void', ), - 'Yaf_Session::has' => + 'yaf_session::has' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::key' => + 'yaf_session::key' => array ( 0 => 'void', ), - 'Yaf_Session::next' => + 'yaf_session::next' => array ( 0 => 'void', ), - 'Yaf_Session::offsetExists' => + 'yaf_session::offsetexists' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::offsetGet' => + 'yaf_session::offsetget' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::offsetSet' => + 'yaf_session::offsetset' => array ( 0 => 'void', 'name' => 'string', 'value' => 'string', ), - 'Yaf_Session::offsetUnset' => + 'yaf_session::offsetunset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_Session::rewind' => + 'yaf_session::rewind' => array ( 0 => 'void', ), - 'Yaf_Session::set' => + 'yaf_session::set' => array ( 0 => 'Yaf_Session|bool', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf_Session::start' => + 'yaf_session::start' => array ( 0 => 'void', ), - 'Yaf_Session::valid' => + 'yaf_session::valid' => array ( 0 => 'void', ), - 'Yaf_View_Interface::assign' => + 'yaf_view_interface::assign' => array ( 0 => 'bool', 'name' => 'string', 'value=' => 'string', ), - 'Yaf_View_Interface::display' => + 'yaf_view_interface::display' => array ( 0 => 'bool', 'tpl' => 'string', 'tpl_vars=' => 'array', ), - 'Yaf_View_Interface::getScriptPath' => + 'yaf_view_interface::getscriptpath' => array ( 0 => 'string', ), - 'Yaf_View_Interface::render' => + 'yaf_view_interface::render' => array ( 0 => 'string', 'tpl' => 'string', 'tpl_vars=' => 'array', ), - 'Yaf_View_Interface::setScriptPath' => + 'yaf_view_interface::setscriptpath' => array ( 0 => 'void', 'template_dir' => 'string', ), - 'Yaf_View_Simple::__construct' => + 'yaf_view_simple::__construct' => array ( 0 => 'void', 'tempalte_dir' => 'string', 'options=' => 'array', ), - 'Yaf_View_Simple::__get' => + 'yaf_view_simple::__get' => array ( 0 => 'void', 'name=' => 'string', ), - 'Yaf_View_Simple::__isset' => + 'yaf_view_simple::__isset' => array ( 0 => 'void', 'name' => 'string', ), - 'Yaf_View_Simple::__set' => + 'yaf_view_simple::__set' => array ( 0 => 'void', 'name' => 'string', 'value' => 'mixed', ), - 'Yaf_View_Simple::assign' => + 'yaf_view_simple::assign' => array ( 0 => 'bool', 'name' => 'string', 'value=' => 'mixed', ), - 'Yaf_View_Simple::assignRef' => + 'yaf_view_simple::assignref' => array ( 0 => 'bool', 'name' => 'string', '&rw_value' => 'mixed', ), - 'Yaf_View_Simple::clear' => + 'yaf_view_simple::clear' => array ( 0 => 'bool', 'name=' => 'string', ), - 'Yaf_View_Simple::display' => + 'yaf_view_simple::display' => array ( 0 => 'bool', 'tpl' => 'string', 'tpl_vars=' => 'array', ), - 'Yaf_View_Simple::eval' => + 'yaf_view_simple::eval' => array ( 0 => 'string', 'tpl_content' => 'string', 'tpl_vars=' => 'array', ), - 'Yaf_View_Simple::getScriptPath' => + 'yaf_view_simple::getscriptpath' => array ( 0 => 'string', ), - 'Yaf_View_Simple::render' => + 'yaf_view_simple::render' => array ( 0 => 'string', 'tpl' => 'string', 'tpl_vars=' => 'array', ), - 'Yaf_View_Simple::setScriptPath' => + 'yaf_view_simple::setscriptpath' => array ( 0 => 'bool', 'template_dir' => 'string', ), - 'Yar_Client::__call' => + 'yar_client::__call' => array ( 0 => 'void', 'method' => 'string', 'parameters' => 'array', ), - 'Yar_Client::__construct' => + 'yar_client::__construct' => array ( 0 => 'void', 'url' => 'string', ), - 'Yar_Client::setOpt' => + 'yar_client::setopt' => array ( 0 => 'Yar_Client|false', 'name' => 'int', 'value' => 'mixed', ), - 'Yar_Client_Exception::__clone' => + 'yar_client_exception::__clone' => array ( 0 => 'void', ), - 'Yar_Client_Exception::__construct' => + 'yar_client_exception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'Yar_Client_Exception::__toString' => + 'yar_client_exception::__tostring' => array ( 0 => 'string', ), - 'Yar_Client_Exception::__wakeup' => + 'yar_client_exception::__wakeup' => array ( 0 => 'void', ), - 'Yar_Client_Exception::getCode' => + 'yar_client_exception::getcode' => array ( 0 => 'int', ), - 'Yar_Client_Exception::getFile' => + 'yar_client_exception::getfile' => array ( 0 => 'string', ), - 'Yar_Client_Exception::getLine' => + 'yar_client_exception::getline' => array ( 0 => 'int', ), - 'Yar_Client_Exception::getMessage' => + 'yar_client_exception::getmessage' => array ( 0 => 'string', ), - 'Yar_Client_Exception::getPrevious' => + 'yar_client_exception::getprevious' => array ( 0 => 'Exception|Throwable|null', ), - 'Yar_Client_Exception::getTrace' => + 'yar_client_exception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'Yar_Client_Exception::getTraceAsString' => + 'yar_client_exception::gettraceasstring' => array ( 0 => 'string', ), - 'Yar_Client_Exception::getType' => + 'yar_client_exception::gettype' => array ( 0 => 'string', ), - 'Yar_Concurrent_Client::call' => + 'yar_concurrent_client::call' => array ( 0 => 'int', 'uri' => 'string', @@ -45437,182 +45437,182 @@ 'parameters' => 'array', 'callback=' => 'callable', ), - 'Yar_Concurrent_Client::loop' => + 'yar_concurrent_client::loop' => array ( 0 => 'bool', 'callback=' => 'callable', 'error_callback=' => 'callable', ), - 'Yar_Concurrent_Client::reset' => + 'yar_concurrent_client::reset' => array ( 0 => 'bool', ), - 'Yar_Server::__construct' => + 'yar_server::__construct' => array ( 0 => 'void', 'object' => 'object', ), - 'Yar_Server::handle' => + 'yar_server::handle' => array ( 0 => 'bool', ), - 'Yar_Server_Exception::__clone' => + 'yar_server_exception::__clone' => array ( 0 => 'void', ), - 'Yar_Server_Exception::__construct' => + 'yar_server_exception::__construct' => array ( 0 => 'void', 'message=' => 'string', 'code=' => 'int', 'previous=' => 'Exception|Throwable|null', ), - 'Yar_Server_Exception::__toString' => + 'yar_server_exception::__tostring' => array ( 0 => 'string', ), - 'Yar_Server_Exception::__wakeup' => + 'yar_server_exception::__wakeup' => array ( 0 => 'void', ), - 'Yar_Server_Exception::getCode' => + 'yar_server_exception::getcode' => array ( 0 => 'int', ), - 'Yar_Server_Exception::getFile' => + 'yar_server_exception::getfile' => array ( 0 => 'string', ), - 'Yar_Server_Exception::getLine' => + 'yar_server_exception::getline' => array ( 0 => 'int', ), - 'Yar_Server_Exception::getMessage' => + 'yar_server_exception::getmessage' => array ( 0 => 'string', ), - 'Yar_Server_Exception::getPrevious' => + 'yar_server_exception::getprevious' => array ( 0 => 'Exception|Throwable|null', ), - 'Yar_Server_Exception::getTrace' => + 'yar_server_exception::gettrace' => array ( 0 => 'list, class?: class-string, file?: string, function: string, line?: int, type?: \'->\'|\'::\'}>', ), - 'Yar_Server_Exception::getTraceAsString' => + 'yar_server_exception::gettraceasstring' => array ( 0 => 'string', ), - 'Yar_Server_Exception::getType' => + 'yar_server_exception::gettype' => array ( 0 => 'string', ), - 'ZMQ::__construct' => + 'zmq::__construct' => array ( 0 => 'void', ), - 'ZMQContext::__construct' => + 'zmqcontext::__construct' => array ( 0 => 'void', 'io_threads=' => 'int', 'is_persistent=' => 'bool', ), - 'ZMQContext::getOpt' => + 'zmqcontext::getopt' => array ( 0 => 'int|string', 'key' => 'string', ), - 'ZMQContext::getSocket' => + 'zmqcontext::getsocket' => array ( 0 => 'ZMQSocket', 'type' => 'int', 'persistent_id=' => 'string', 'on_new_socket=' => 'callable', ), - 'ZMQContext::isPersistent' => + 'zmqcontext::ispersistent' => array ( 0 => 'bool', ), - 'ZMQContext::setOpt' => + 'zmqcontext::setopt' => array ( 0 => 'ZMQContext', 'key' => 'int', 'value' => 'mixed', ), - 'ZMQDevice::__construct' => + 'zmqdevice::__construct' => array ( 0 => 'void', 'frontend' => 'ZMQSocket', 'backend' => 'ZMQSocket', 'listener=' => 'ZMQSocket', ), - 'ZMQDevice::getIdleTimeout' => + 'zmqdevice::getidletimeout' => array ( 0 => 'ZMQDevice', ), - 'ZMQDevice::getTimerTimeout' => + 'zmqdevice::gettimertimeout' => array ( 0 => 'ZMQDevice', ), - 'ZMQDevice::run' => + 'zmqdevice::run' => array ( 0 => 'void', ), - 'ZMQDevice::setIdleCallback' => + 'zmqdevice::setidlecallback' => array ( 0 => 'ZMQDevice', 'cb_func' => 'callable', 'timeout' => 'int', 'user_data=' => 'mixed', ), - 'ZMQDevice::setIdleTimeout' => + 'zmqdevice::setidletimeout' => array ( 0 => 'ZMQDevice', 'timeout' => 'int', ), - 'ZMQDevice::setTimerCallback' => + 'zmqdevice::settimercallback' => array ( 0 => 'ZMQDevice', 'cb_func' => 'callable', 'timeout' => 'int', 'user_data=' => 'mixed', ), - 'ZMQDevice::setTimerTimeout' => + 'zmqdevice::settimertimeout' => array ( 0 => 'ZMQDevice', 'timeout' => 'int', ), - 'ZMQPoll::add' => + 'zmqpoll::add' => array ( 0 => 'string', 'entry' => 'mixed', 'type' => 'int', ), - 'ZMQPoll::clear' => + 'zmqpoll::clear' => array ( 0 => 'ZMQPoll', ), - 'ZMQPoll::count' => + 'zmqpoll::count' => array ( 0 => 'int', ), - 'ZMQPoll::getLastErrors' => + 'zmqpoll::getlasterrors' => array ( 0 => 'array', ), - 'ZMQPoll::poll' => + 'zmqpoll::poll' => array ( 0 => 'int', '&w_readable' => 'array', '&w_writable' => 'array', 'timeout=' => 'int', ), - 'ZMQPoll::remove' => + 'zmqpoll::remove' => array ( 0 => 'bool', 'item' => 'mixed', ), - 'ZMQSocket::__construct' => + 'zmqsocket::__construct' => array ( 0 => 'void', 'context' => 'ZMQContext', @@ -45620,231 +45620,231 @@ 'persistent_id=' => 'string', 'on_new_socket=' => 'callable', ), - 'ZMQSocket::bind' => + 'zmqsocket::bind' => array ( 0 => 'ZMQSocket', 'dsn' => 'string', 'force=' => 'bool', ), - 'ZMQSocket::connect' => + 'zmqsocket::connect' => array ( 0 => 'ZMQSocket', 'dsn' => 'string', 'force=' => 'bool', ), - 'ZMQSocket::disconnect' => + 'zmqsocket::disconnect' => array ( 0 => 'ZMQSocket', 'dsn' => 'string', ), - 'ZMQSocket::getEndpoints' => + 'zmqsocket::getendpoints' => array ( 0 => 'array', ), - 'ZMQSocket::getPersistentId' => + 'zmqsocket::getpersistentid' => array ( 0 => 'null|string', ), - 'ZMQSocket::getSockOpt' => + 'zmqsocket::getsockopt' => array ( 0 => 'int|string', 'key' => 'string', ), - 'ZMQSocket::getSocketType' => + 'zmqsocket::getsockettype' => array ( 0 => 'int', ), - 'ZMQSocket::isPersistent' => + 'zmqsocket::ispersistent' => array ( 0 => 'bool', ), - 'ZMQSocket::recv' => + 'zmqsocket::recv' => array ( 0 => 'string', 'mode=' => 'int', ), - 'ZMQSocket::recvMulti' => + 'zmqsocket::recvmulti' => array ( 0 => 'array', 'mode=' => 'int', ), - 'ZMQSocket::send' => + 'zmqsocket::send' => array ( 0 => 'ZMQSocket', 'message' => 'array', 'mode=' => 'int', ), - 'ZMQSocket::send\'1' => + 'zmqsocket::send\'1' => array ( 0 => 'ZMQSocket', 'message' => 'string', 'mode=' => 'int', ), - 'ZMQSocket::sendmulti' => + 'zmqsocket::sendmulti' => array ( 0 => 'ZMQSocket', 'message' => 'array', 'mode=' => 'int', ), - 'ZMQSocket::setSockOpt' => + 'zmqsocket::setsockopt' => array ( 0 => 'ZMQSocket', 'key' => 'int', 'value' => 'mixed', ), - 'ZMQSocket::unbind' => + 'zmqsocket::unbind' => array ( 0 => 'ZMQSocket', 'dsn' => 'string', ), - 'ZendAPI_Job::ZendAPI_Job' => + 'zendapi_job::zendapi_job' => array ( 0 => 'Job', 'script' => 'script', ), - 'ZendAPI_Job::addJobToQueue' => + 'zendapi_job::addjobtoqueue' => array ( 0 => 'int', 'jobqueue_url' => 'string', 'password' => 'string', ), - 'ZendAPI_Job::getApplicationID' => + 'zendapi_job::getapplicationid' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getEndTime' => + 'zendapi_job::getendtime' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getGlobalVariables' => + 'zendapi_job::getglobalvariables' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getHost' => + 'zendapi_job::gethost' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getID' => + 'zendapi_job::getid' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getInterval' => + 'zendapi_job::getinterval' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getJobDependency' => + 'zendapi_job::getjobdependency' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getJobName' => + 'zendapi_job::getjobname' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getJobPriority' => + 'zendapi_job::getjobpriority' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getJobStatus' => + 'zendapi_job::getjobstatus' => array ( 0 => 'int', ), - 'ZendAPI_Job::getLastPerformedStatus' => + 'zendapi_job::getlastperformedstatus' => array ( 0 => 'int', ), - 'ZendAPI_Job::getOutput' => + 'zendapi_job::getoutput' => array ( 0 => 'An', ), - 'ZendAPI_Job::getPreserved' => + 'zendapi_job::getpreserved' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getProperties' => + 'zendapi_job::getproperties' => array ( 0 => 'array', ), - 'ZendAPI_Job::getScheduledTime' => + 'zendapi_job::getscheduledtime' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getScript' => + 'zendapi_job::getscript' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::getTimeToNextRepeat' => + 'zendapi_job::gettimetonextrepeat' => array ( 0 => 'int', ), - 'ZendAPI_Job::getUserVariables' => + 'zendapi_job::getuservariables' => array ( 0 => 'mixed', ), - 'ZendAPI_Job::setApplicationID' => + 'zendapi_job::setapplicationid' => array ( 0 => 'mixed', 'app_id' => 'mixed', ), - 'ZendAPI_Job::setGlobalVariables' => + 'zendapi_job::setglobalvariables' => array ( 0 => 'mixed', 'vars' => 'mixed', ), - 'ZendAPI_Job::setJobDependency' => + 'zendapi_job::setjobdependency' => array ( 0 => 'mixed', 'job_id' => 'mixed', ), - 'ZendAPI_Job::setJobName' => + 'zendapi_job::setjobname' => array ( 0 => 'mixed', 'name' => 'mixed', ), - 'ZendAPI_Job::setJobPriority' => + 'zendapi_job::setjobpriority' => array ( 0 => 'mixed', 'priority' => 'int', ), - 'ZendAPI_Job::setPreserved' => + 'zendapi_job::setpreserved' => array ( 0 => 'mixed', 'preserved' => 'mixed', ), - 'ZendAPI_Job::setRecurrenceData' => + 'zendapi_job::setrecurrencedata' => array ( 0 => 'mixed', 'interval' => 'mixed', 'end_time=' => 'mixed', ), - 'ZendAPI_Job::setScheduledTime' => + 'zendapi_job::setscheduledtime' => array ( 0 => 'mixed', 'timestamp' => 'mixed', ), - 'ZendAPI_Job::setScript' => + 'zendapi_job::setscript' => array ( 0 => 'mixed', 'script' => 'mixed', ), - 'ZendAPI_Job::setUserVariables' => + 'zendapi_job::setuservariables' => array ( 0 => 'mixed', 'vars' => 'mixed', ), - 'ZendAPI_Queue::addJob' => + 'zendapi_queue::addjob' => array ( 0 => 'int', '&job' => 'Job', ), - 'ZendAPI_Queue::getAllApplicationIDs' => + 'zendapi_queue::getallapplicationids' => array ( 0 => 'array', ), - 'ZendAPI_Queue::getAllhosts' => + 'zendapi_queue::getallhosts' => array ( 0 => 'array', ), - 'ZendAPI_Queue::getHistoricJobs' => + 'zendapi_queue::gethistoricjobs' => array ( 0 => 'array', 'status' => 'int', @@ -45854,94 +45854,94 @@ 'count' => 'int', '&total' => 'int', ), - 'ZendAPI_Queue::getJob' => + 'zendapi_queue::getjob' => array ( 0 => 'Job', 'job_id' => 'int', ), - 'ZendAPI_Queue::getJobsInQueue' => + 'zendapi_queue::getjobsinqueue' => array ( 0 => 'array', 'filter_options=' => 'array', 'max_jobs=' => 'int', 'with_globals_and_output=' => 'bool', ), - 'ZendAPI_Queue::getLastError' => + 'zendapi_queue::getlasterror' => array ( 0 => 'string', ), - 'ZendAPI_Queue::getNumOfJobsInQueue' => + 'zendapi_queue::getnumofjobsinqueue' => array ( 0 => 'int', 'filter_options=' => 'array', ), - 'ZendAPI_Queue::getStatistics' => + 'zendapi_queue::getstatistics' => array ( 0 => 'array', ), - 'ZendAPI_Queue::isScriptExists' => + 'zendapi_queue::isscriptexists' => array ( 0 => 'bool', 'path' => 'string', ), - 'ZendAPI_Queue::isSuspend' => + 'zendapi_queue::issuspend' => array ( 0 => 'bool', ), - 'ZendAPI_Queue::login' => + 'zendapi_queue::login' => array ( 0 => 'bool', 'password' => 'string', 'application_id=' => 'int', ), - 'ZendAPI_Queue::removeJob' => + 'zendapi_queue::removejob' => array ( 0 => 'bool', 'job_id' => 'array|int', ), - 'ZendAPI_Queue::requeueJob' => + 'zendapi_queue::requeuejob' => array ( 0 => 'bool', 'job' => 'Job', ), - 'ZendAPI_Queue::resumeJob' => + 'zendapi_queue::resumejob' => array ( 0 => 'bool', 'job_id' => 'array|int', ), - 'ZendAPI_Queue::resumeQueue' => + 'zendapi_queue::resumequeue' => array ( 0 => 'bool', ), - 'ZendAPI_Queue::setMaxHistoryTime' => + 'zendapi_queue::setmaxhistorytime' => array ( 0 => 'bool', ), - 'ZendAPI_Queue::suspendJob' => + 'zendapi_queue::suspendjob' => array ( 0 => 'bool', 'job_id' => 'array|int', ), - 'ZendAPI_Queue::suspendQueue' => + 'zendapi_queue::suspendqueue' => array ( 0 => 'bool', ), - 'ZendAPI_Queue::updateJob' => + 'zendapi_queue::updatejob' => array ( 0 => 'int', '&job' => 'Job', ), - 'ZendAPI_Queue::zendapi_queue' => + 'zendapi_queue::zendapi_queue' => array ( 0 => 'ZendAPI_Queue', 'queue_url' => 'string', ), - 'ZipArchive::addEmptyDir' => + 'ziparchive::addemptydir' => array ( 0 => 'bool', 'dirname' => 'string', ), - 'ZipArchive::addFile' => + 'ziparchive::addfile' => array ( 0 => 'bool', 'filepath' => 'string', @@ -45949,64 +45949,64 @@ 'start=' => 'int', 'length=' => 'int', ), - 'ZipArchive::addFromString' => + 'ziparchive::addfromstring' => array ( 0 => 'bool', 'name' => 'string', 'content' => 'string', ), - 'ZipArchive::addGlob' => + 'ziparchive::addglob' => array ( 0 => 'array|false', 'pattern' => 'string', 'flags=' => 'int', 'options=' => 'array', ), - 'ZipArchive::addPattern' => + 'ziparchive::addpattern' => array ( 0 => 'array|false', 'pattern' => 'string', 'path=' => 'string', 'options=' => 'array', ), - 'ZipArchive::close' => + 'ziparchive::close' => array ( 0 => 'bool', ), - 'ZipArchive::deleteIndex' => + 'ziparchive::deleteindex' => array ( 0 => 'bool', 'index' => 'int', ), - 'ZipArchive::deleteName' => + 'ziparchive::deletename' => array ( 0 => 'bool', 'name' => 'string', ), - 'ZipArchive::extractTo' => + 'ziparchive::extractto' => array ( 0 => 'bool', 'pathto' => 'string', 'files=' => 'array|null|string', ), - 'ZipArchive::getArchiveComment' => + 'ziparchive::getarchivecomment' => array ( 0 => 'false|string', 'flags=' => 'int', ), - 'ZipArchive::getCommentIndex' => + 'ziparchive::getcommentindex' => array ( 0 => 'false|string', 'index' => 'int', 'flags=' => 'int', ), - 'ZipArchive::getCommentName' => + 'ziparchive::getcommentname' => array ( 0 => 'false|string', 'name' => 'string', 'flags=' => 'int', ), - 'ZipArchive::getExternalAttributesIndex' => + 'ziparchive::getexternalattributesindex' => array ( 0 => 'bool', 'index' => 'int', @@ -46014,7 +46014,7 @@ '&w_attr' => 'int', 'flags=' => 'int', ), - 'ZipArchive::getExternalAttributesName' => + 'ziparchive::getexternalattributesname' => array ( 0 => 'bool', 'name' => 'string', @@ -46022,83 +46022,83 @@ '&w_attr' => 'int', 'flags=' => 'int', ), - 'ZipArchive::getFromIndex' => + 'ziparchive::getfromindex' => array ( 0 => 'false|string', 'index' => 'int', 'len=' => 'int', 'flags=' => 'int', ), - 'ZipArchive::getFromName' => + 'ziparchive::getfromname' => array ( 0 => 'false|string', 'name' => 'string', 'len=' => 'int', 'flags=' => 'int', ), - 'ZipArchive::getNameIndex' => + 'ziparchive::getnameindex' => array ( 0 => 'false|string', 'index' => 'int', 'flags=' => 'int', ), - 'ZipArchive::getStatusString' => + 'ziparchive::getstatusstring' => array ( 0 => 'false|string', ), - 'ZipArchive::getStream' => + 'ziparchive::getstream' => array ( 0 => 'false|resource', 'name' => 'string', ), - 'ZipArchive::isCompressionMethodSupported' => + 'ziparchive::iscompressionmethodsupported' => array ( 0 => 'bool', 'method' => 'int', 'enc=' => 'bool', ), - 'ZipArchive::isEncryptionMethodSupported' => + 'ziparchive::isencryptionmethodsupported' => array ( 0 => 'bool', 'method' => 'int', 'enc=' => 'bool', ), - 'ZipArchive::locateName' => + 'ziparchive::locatename' => array ( 0 => 'false|int', 'name' => 'string', 'flags=' => 'int', ), - 'ZipArchive::open' => + 'ziparchive::open' => array ( 0 => 'bool|int', 'filename' => 'string', 'flags=' => 'int', ), - 'ZipArchive::registerCancelCallback' => + 'ziparchive::registercancelcallback' => array ( 0 => 'bool', 'callback' => 'callable', ), - 'ZipArchive::registerProgressCallback' => + 'ziparchive::registerprogresscallback' => array ( 0 => 'bool', 'rate' => 'float', 'callback' => 'callable', ), - 'ZipArchive::renameIndex' => + 'ziparchive::renameindex' => array ( 0 => 'bool', 'index' => 'int', 'new_name' => 'string', ), - 'ZipArchive::renameName' => + 'ziparchive::renamename' => array ( 0 => 'bool', 'name' => 'string', 'new_name' => 'string', ), - 'ZipArchive::replaceFile' => + 'ziparchive::replacefile' => array ( 0 => 'bool', 'filepath' => 'string', @@ -46107,38 +46107,38 @@ 'length=' => 'int', 'flags=' => 'int', ), - 'ZipArchive::setArchiveComment' => + 'ziparchive::setarchivecomment' => array ( 0 => 'bool', 'comment' => 'string', ), - 'ZipArchive::setCommentIndex' => + 'ziparchive::setcommentindex' => array ( 0 => 'bool', 'index' => 'int', 'comment' => 'string', ), - 'ZipArchive::setCommentName' => + 'ziparchive::setcommentname' => array ( 0 => 'bool', 'name' => 'string', 'comment' => 'string', ), - 'ZipArchive::setCompressionIndex' => + 'ziparchive::setcompressionindex' => array ( 0 => 'bool', 'index' => 'int', 'method' => 'int', 'compflags=' => 'int', ), - 'ZipArchive::setCompressionName' => + 'ziparchive::setcompressionname' => array ( 0 => 'bool', 'name' => 'string', 'method' => 'int', 'compflags=' => 'int', ), - 'ZipArchive::setExternalAttributesIndex' => + 'ziparchive::setexternalattributesindex' => array ( 0 => 'bool', 'index' => 'int', @@ -46146,7 +46146,7 @@ 'attr' => 'int', 'flags=' => 'int', ), - 'ZipArchive::setExternalAttributesName' => + 'ziparchive::setexternalattributesname' => array ( 0 => 'bool', 'name' => 'string', @@ -46154,74 +46154,74 @@ 'attr' => 'int', 'flags=' => 'int', ), - 'ZipArchive::setMtimeIndex' => + 'ziparchive::setmtimeindex' => array ( 0 => 'bool', 'index' => 'int', 'timestamp' => 'int', 'flags=' => 'int', ), - 'ZipArchive::setMtimeName' => + 'ziparchive::setmtimename' => array ( 0 => 'bool', 'name' => 'string', 'timestamp' => 'int', 'flags=' => 'int', ), - 'ZipArchive::setPassword' => + 'ziparchive::setpassword' => array ( 0 => 'bool', 'password' => 'string', ), - 'ZipArchive::statIndex' => + 'ziparchive::statindex' => array ( 0 => 'array|false', 'index' => 'int', 'flags=' => 'int', ), - 'ZipArchive::statName' => + 'ziparchive::statname' => array ( 0 => 'array|false', 'name' => 'string', 'flags=' => 'int', ), - 'ZipArchive::unchangeAll' => + 'ziparchive::unchangeall' => array ( 0 => 'bool', ), - 'ZipArchive::unchangeArchive' => + 'ziparchive::unchangearchive' => array ( 0 => 'bool', ), - 'ZipArchive::unchangeIndex' => + 'ziparchive::unchangeindex' => array ( 0 => 'bool', 'index' => 'int', ), - 'ZipArchive::unchangeName' => + 'ziparchive::unchangename' => array ( 0 => 'bool', 'name' => 'string', ), - 'Zookeeper::addAuth' => + 'zookeeper::addauth' => array ( 0 => 'bool', 'scheme' => 'string', 'cert' => 'string', 'completion_cb=' => 'callable', ), - 'Zookeeper::close' => + 'zookeeper::close' => array ( 0 => 'void', ), - 'Zookeeper::connect' => + 'zookeeper::connect' => array ( 0 => 'void', 'host' => 'string', 'watcher_cb=' => 'callable', 'recv_timeout=' => 'int', ), - 'Zookeeper::create' => + 'zookeeper::create' => array ( 0 => 'string', 'path' => 'string', @@ -46229,19 +46229,19 @@ 'acls' => 'array', 'flags=' => 'int', ), - 'Zookeeper::delete' => + 'zookeeper::delete' => array ( 0 => 'bool', 'path' => 'string', 'version=' => 'int', ), - 'Zookeeper::exists' => + 'zookeeper::exists' => array ( 0 => 'bool', 'path' => 'string', 'watcher_cb=' => 'callable', ), - 'Zookeeper::get' => + 'zookeeper::get' => array ( 0 => 'string', 'path' => 'string', @@ -46249,38 +46249,38 @@ 'stat=' => 'array', 'max_size=' => 'int', ), - 'Zookeeper::getAcl' => + 'zookeeper::getacl' => array ( 0 => 'array', 'path' => 'string', ), - 'Zookeeper::getChildren' => + 'zookeeper::getchildren' => array ( 0 => 'array|false', 'path' => 'string', 'watcher_cb=' => 'callable', ), - 'Zookeeper::getClientId' => + 'zookeeper::getclientid' => array ( 0 => 'int', ), - 'Zookeeper::getConfig' => + 'zookeeper::getconfig' => array ( 0 => 'ZookeeperConfig', ), - 'Zookeeper::getRecvTimeout' => + 'zookeeper::getrecvtimeout' => array ( 0 => 'int', ), - 'Zookeeper::getState' => + 'zookeeper::getstate' => array ( 0 => 'int', ), - 'Zookeeper::isRecoverable' => + 'zookeeper::isrecoverable' => array ( 0 => 'bool', ), - 'Zookeeper::set' => + 'zookeeper::set' => array ( 0 => 'bool', 'path' => 'string', @@ -46288,54 +46288,54 @@ 'version=' => 'int', 'stat=' => 'array', ), - 'Zookeeper::setAcl' => + 'zookeeper::setacl' => array ( 0 => 'bool', 'path' => 'string', 'version' => 'int', 'acl' => 'array', ), - 'Zookeeper::setDebugLevel' => + 'zookeeper::setdebuglevel' => array ( 0 => 'bool', 'logLevel' => 'int', ), - 'Zookeeper::setDeterministicConnOrder' => + 'zookeeper::setdeterministicconnorder' => array ( 0 => 'bool', 'yesOrNo' => 'bool', ), - 'Zookeeper::setLogStream' => + 'zookeeper::setlogstream' => array ( 0 => 'bool', 'stream' => 'resource', ), - 'Zookeeper::setWatcher' => + 'zookeeper::setwatcher' => array ( 0 => 'bool', 'watcher_cb' => 'callable', ), - 'ZookeeperConfig::add' => + 'zookeeperconfig::add' => array ( 0 => 'void', 'members' => 'string', 'version=' => 'int', 'stat=' => 'array', ), - 'ZookeeperConfig::get' => + 'zookeeperconfig::get' => array ( 0 => 'string', 'watcher_cb=' => 'callable', 'stat=' => 'array', ), - 'ZookeeperConfig::remove' => + 'zookeeperconfig::remove' => array ( 0 => 'void', 'id_list' => 'string', 'version=' => 'int', 'stat=' => 'array', ), - 'ZookeeperConfig::set' => + 'zookeeperconfig::set' => array ( 0 => 'void', 'members' => 'string', @@ -47251,7 +47251,7 @@ 'option' => 'int', 'value=' => 'mixed', ), - 'ast\\Node::__construct' => + 'ast\\node::__construct' => array ( 0 => 'void', 'kind=' => 'int', @@ -47840,33 +47840,33 @@ 'length=' => 'int', 'separator=' => 'string', ), - 'classObj::__construct' => + 'classobj::__construct' => array ( 0 => 'void', 'layer' => 'layerObj', 'class' => 'classObj', ), - 'classObj::addLabel' => + 'classobj::addlabel' => array ( 0 => 'int', 'label' => 'labelObj', ), - 'classObj::convertToString' => + 'classobj::converttostring' => array ( 0 => 'string', ), - 'classObj::createLegendIcon' => + 'classobj::createlegendicon' => array ( 0 => 'imageObj', 'width' => 'int', 'height' => 'int', ), - 'classObj::deletestyle' => + 'classobj::deletestyle' => array ( 0 => 'int', 'index' => 'int', ), - 'classObj::drawLegendIcon' => + 'classobj::drawlegendicon' => array ( 0 => 'int', 'width' => 'int', @@ -47875,82 +47875,82 @@ 'dstX' => 'int', 'dstY' => 'int', ), - 'classObj::free' => + 'classobj::free' => array ( 0 => 'void', ), - 'classObj::getExpressionString' => + 'classobj::getexpressionstring' => array ( 0 => 'string', ), - 'classObj::getLabel' => + 'classobj::getlabel' => array ( 0 => 'labelObj', 'index' => 'int', ), - 'classObj::getMetaData' => + 'classobj::getmetadata' => array ( 0 => 'int', 'name' => 'string', ), - 'classObj::getStyle' => + 'classobj::getstyle' => array ( 0 => 'styleObj', 'index' => 'int', ), - 'classObj::getTextString' => + 'classobj::gettextstring' => array ( 0 => 'string', ), - 'classObj::movestyledown' => + 'classobj::movestyledown' => array ( 0 => 'int', 'index' => 'int', ), - 'classObj::movestyleup' => + 'classobj::movestyleup' => array ( 0 => 'int', 'index' => 'int', ), - 'classObj::ms_newClassObj' => + 'classobj::ms_newclassobj' => array ( 0 => 'classObj', 'layer' => 'layerObj', 'class' => 'classObj', ), - 'classObj::removeLabel' => + 'classobj::removelabel' => array ( 0 => 'labelObj', 'index' => 'int', ), - 'classObj::removeMetaData' => + 'classobj::removemetadata' => array ( 0 => 'int', 'name' => 'string', ), - 'classObj::set' => + 'classobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'classObj::setExpression' => + 'classobj::setexpression' => array ( 0 => 'int', 'expression' => 'string', ), - 'classObj::setMetaData' => + 'classobj::setmetadata' => array ( 0 => 'int', 'name' => 'string', 'value' => 'string', ), - 'classObj::settext' => + 'classobj::settext' => array ( 0 => 'int', 'text' => 'string', ), - 'classObj::updateFromString' => + 'classobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', @@ -48054,24 +48054,24 @@ array ( 0 => 'true', ), - 'clusterObj::convertToString' => + 'clusterobj::converttostring' => array ( 0 => 'string', ), - 'clusterObj::getFilterString' => + 'clusterobj::getfilterstring' => array ( 0 => 'string', ), - 'clusterObj::getGroupString' => + 'clusterobj::getgroupstring' => array ( 0 => 'string', ), - 'clusterObj::setFilter' => + 'clusterobj::setfilter' => array ( 0 => 'int', 'expression' => 'string', ), - 'clusterObj::setGroup' => + 'clusterobj::setgroup' => array ( 0 => 'int', 'expression' => 'string', @@ -48154,12 +48154,12 @@ 'object' => 'collator', '&rw_array' => 'array', ), - 'colorObj::setHex' => + 'colorobj::sethex' => array ( 0 => 'int', 'hex' => 'string', ), - 'colorObj::toHex' => + 'colorobj::tohex' => array ( 0 => 'string', ), @@ -48233,22 +48233,22 @@ 0 => 'void', 'visitor' => 'CommonMark\\Interfaces\\IVisitor', ), - 'commonmark\\node::appendChild' => + 'commonmark\\node::appendchild' => array ( 0 => 'CommonMark\\Node', 'child' => 'CommonMark\\Node', ), - 'commonmark\\node::insertAfter' => + 'commonmark\\node::insertafter' => array ( 0 => 'CommonMark\\Node', 'sibling' => 'CommonMark\\Node', ), - 'commonmark\\node::insertBefore' => + 'commonmark\\node::insertbefore' => array ( 0 => 'CommonMark\\Node', 'sibling' => 'CommonMark\\Node', ), - 'commonmark\\node::prependChild' => + 'commonmark\\node::prependchild' => array ( 0 => 'CommonMark\\Node', 'child' => 'CommonMark\\Node', @@ -48316,23 +48316,23 @@ 'var_name' => 'array|string', '...var_names=' => 'array|string', ), - 'componere\\abstract\\definition::addInterface' => + 'componere\\abstract\\definition::addinterface' => array ( 0 => 'Componere\\Abstract\\Definition', 'interface' => 'string', ), - 'componere\\abstract\\definition::addMethod' => + 'componere\\abstract\\definition::addmethod' => array ( 0 => 'Componere\\Abstract\\Definition', 'name' => 'string', 'method' => 'Componere\\Method', ), - 'componere\\abstract\\definition::addTrait' => + 'componere\\abstract\\definition::addtrait' => array ( 0 => 'Componere\\Abstract\\Definition', 'trait' => 'string', ), - 'componere\\abstract\\definition::getReflector' => + 'componere\\abstract\\definition::getreflector' => array ( 0 => 'ReflectionClass', ), @@ -48348,28 +48348,28 @@ 'arg1' => 'string', 'object' => 'object', ), - 'componere\\definition::addConstant' => + 'componere\\definition::addconstant' => array ( 0 => 'Componere\\Definition', 'name' => 'string', 'value' => 'Componere\\Value', ), - 'componere\\definition::addProperty' => + 'componere\\definition::addproperty' => array ( 0 => 'Componere\\Definition', 'name' => 'string', 'value' => 'Componere\\Value', ), - 'componere\\definition::getClosure' => + 'componere\\definition::getclosure' => array ( 0 => 'Closure', 'name' => 'string', ), - 'componere\\definition::getClosures' => + 'componere\\definition::getclosures' => array ( 0 => 'array', ), - 'componere\\definition::isRegistered' => + 'componere\\definition::isregistered' => array ( 0 => 'bool', ), @@ -48377,19 +48377,19 @@ array ( 0 => 'void', ), - 'componere\\method::getReflector' => + 'componere\\method::getreflector' => array ( 0 => 'ReflectionMethod', ), - 'componere\\method::setPrivate' => + 'componere\\method::setprivate' => array ( 0 => 'Method', ), - 'componere\\method::setProtected' => + 'componere\\method::setprotected' => array ( 0 => 'Method', ), - 'componere\\method::setStatic' => + 'componere\\method::setstatic' => array ( 0 => 'Method', ), @@ -48402,16 +48402,16 @@ 0 => 'Componere\\Patch', 'instance' => 'object', ), - 'componere\\patch::getClosure' => + 'componere\\patch::getclosure' => array ( 0 => 'Closure', 'name' => 'string', ), - 'componere\\patch::getClosures' => + 'componere\\patch::getclosures' => array ( 0 => 'array', ), - 'componere\\patch::isApplied' => + 'componere\\patch::isapplied' => array ( 0 => 'bool', ), @@ -48419,31 +48419,31 @@ array ( 0 => 'void', ), - 'componere\\value::hasDefault' => + 'componere\\value::hasdefault' => array ( 0 => 'bool', ), - 'componere\\value::isPrivate' => + 'componere\\value::isprivate' => array ( 0 => 'bool', ), - 'componere\\value::isProtected' => + 'componere\\value::isprotected' => array ( 0 => 'bool', ), - 'componere\\value::isStatic' => + 'componere\\value::isstatic' => array ( 0 => 'bool', ), - 'componere\\value::setPrivate' => + 'componere\\value::setprivate' => array ( 0 => 'Value', ), - 'componere\\value::setProtected' => + 'componere\\value::setprotected' => array ( 0 => 'Value', ), - 'componere\\value::setStatic' => + 'componere\\value::setstatic' => array ( 0 => 'Value', ), @@ -50787,12 +50787,12 @@ '&w_additional_records=' => 'array', 'raw=' => 'bool', ), - 'dom_document_relaxNG_validate_file' => + 'dom_document_relaxng_validate_file' => array ( 0 => 'bool', 'filename' => 'string', ), - 'dom_document_relaxNG_validate_xml' => + 'dom_document_relaxng_validate_xml' => array ( 0 => 'bool', 'source' => 'string', @@ -51994,7 +51994,7 @@ 0 => 'resource', 'data' => 'resource', ), - 'fann_get_MSE' => + 'fann_get_mse' => array ( 0 => 'false|float', 'ann' => 'resource', @@ -52287,7 +52287,7 @@ 0 => 'resource', 'filename' => 'string', ), - 'fann_reset_MSE' => + 'fann_reset_mse' => array ( 0 => 'bool', 'ann' => 'string', @@ -53302,7 +53302,7 @@ 'frame_rate' => 'int', 'loop_count=' => 'int', ), - 'ffmpeg_animated_gif::addFrame' => + 'ffmpeg_animated_gif::addframe' => array ( 0 => 'mixed', 'frame_to_add' => 'ffmpeg_frame', @@ -53320,19 +53320,19 @@ 'crop_left=' => 'int', 'crop_right=' => 'int', ), - 'ffmpeg_frame::getHeight' => + 'ffmpeg_frame::getheight' => array ( 0 => 'int', ), - 'ffmpeg_frame::getPTS' => + 'ffmpeg_frame::getpts' => array ( 0 => 'int', ), - 'ffmpeg_frame::getPresentationTimestamp' => + 'ffmpeg_frame::getpresentationtimestamp' => array ( 0 => 'int', ), - 'ffmpeg_frame::getWidth' => + 'ffmpeg_frame::getwidth' => array ( 0 => 'int', ), @@ -53346,7 +53346,7 @@ 'crop_left=' => 'int', 'crop_right=' => 'int', ), - 'ffmpeg_frame::toGDImage' => + 'ffmpeg_frame::togdimage' => array ( 0 => 'resource', ), @@ -53356,112 +53356,112 @@ 'path_to_media' => 'string', 'persistent' => 'bool', ), - 'ffmpeg_movie::getArtist' => + 'ffmpeg_movie::getartist' => array ( 0 => 'string', ), - 'ffmpeg_movie::getAudioBitRate' => + 'ffmpeg_movie::getaudiobitrate' => array ( 0 => 'int', ), - 'ffmpeg_movie::getAudioChannels' => + 'ffmpeg_movie::getaudiochannels' => array ( 0 => 'int', ), - 'ffmpeg_movie::getAudioCodec' => + 'ffmpeg_movie::getaudiocodec' => array ( 0 => 'string', ), - 'ffmpeg_movie::getAudioSampleRate' => + 'ffmpeg_movie::getaudiosamplerate' => array ( 0 => 'int', ), - 'ffmpeg_movie::getAuthor' => + 'ffmpeg_movie::getauthor' => array ( 0 => 'string', ), - 'ffmpeg_movie::getBitRate' => + 'ffmpeg_movie::getbitrate' => array ( 0 => 'int', ), - 'ffmpeg_movie::getComment' => + 'ffmpeg_movie::getcomment' => array ( 0 => 'string', ), - 'ffmpeg_movie::getCopyright' => + 'ffmpeg_movie::getcopyright' => array ( 0 => 'string', ), - 'ffmpeg_movie::getDuration' => + 'ffmpeg_movie::getduration' => array ( 0 => 'int', ), - 'ffmpeg_movie::getFilename' => + 'ffmpeg_movie::getfilename' => array ( 0 => 'string', ), - 'ffmpeg_movie::getFrame' => + 'ffmpeg_movie::getframe' => array ( 0 => 'false|ffmpeg_frame', 'framenumber' => 'int', ), - 'ffmpeg_movie::getFrameCount' => + 'ffmpeg_movie::getframecount' => array ( 0 => 'int', ), - 'ffmpeg_movie::getFrameHeight' => + 'ffmpeg_movie::getframeheight' => array ( 0 => 'int', ), - 'ffmpeg_movie::getFrameNumber' => + 'ffmpeg_movie::getframenumber' => array ( 0 => 'int', ), - 'ffmpeg_movie::getFrameRate' => + 'ffmpeg_movie::getframerate' => array ( 0 => 'int', ), - 'ffmpeg_movie::getFrameWidth' => + 'ffmpeg_movie::getframewidth' => array ( 0 => 'int', ), - 'ffmpeg_movie::getGenre' => + 'ffmpeg_movie::getgenre' => array ( 0 => 'string', ), - 'ffmpeg_movie::getNextKeyFrame' => + 'ffmpeg_movie::getnextkeyframe' => array ( 0 => 'false|ffmpeg_frame', ), - 'ffmpeg_movie::getPixelFormat' => + 'ffmpeg_movie::getpixelformat' => array ( 0 => 'mixed', ), - 'ffmpeg_movie::getTitle' => + 'ffmpeg_movie::gettitle' => array ( 0 => 'string', ), - 'ffmpeg_movie::getTrackNumber' => + 'ffmpeg_movie::gettracknumber' => array ( 0 => 'int|string', ), - 'ffmpeg_movie::getVideoBitRate' => + 'ffmpeg_movie::getvideobitrate' => array ( 0 => 'int', ), - 'ffmpeg_movie::getVideoCodec' => + 'ffmpeg_movie::getvideocodec' => array ( 0 => 'string', ), - 'ffmpeg_movie::getYear' => + 'ffmpeg_movie::getyear' => array ( 0 => 'int|string', ), - 'ffmpeg_movie::hasAudio' => + 'ffmpeg_movie::hasaudio' => array ( 0 => 'bool', ), - 'ffmpeg_movie::hasVideo' => + 'ffmpeg_movie::hasvideo' => array ( 0 => 'bool', ), @@ -55660,7 +55660,7 @@ 'day' => 'int', 'year' => 'int', ), - 'gridObj::set' => + 'gridobj::set' => array ( 0 => 'int', 'property_name' => 'string', @@ -56042,26 +56042,26 @@ 'data' => 'string', 'binary=' => 'bool', ), - 'hashTableObj::clear' => + 'hashtableobj::clear' => array ( 0 => 'void', ), - 'hashTableObj::get' => + 'hashtableobj::get' => array ( 0 => 'string', 'key' => 'string', ), - 'hashTableObj::nextkey' => + 'hashtableobj::nextkey' => array ( 0 => 'string', 'previousKey' => 'string', ), - 'hashTableObj::remove' => + 'hashtableobj::remove' => array ( 0 => 'int', 'key' => 'string', ), - 'hashTableObj::set' => + 'hashtableobj::set' => array ( 0 => 'int', 'key' => 'string', @@ -56238,187 +56238,187 @@ 'string' => 'string', 'flags=' => 'int', ), - 'http\\Client::__construct' => + 'http\\client::__construct' => array ( 0 => 'void', 'driver=' => 'string', 'persistent_handle_id=' => 'string', ), - 'http\\Client::addCookies' => + 'http\\client::addcookies' => array ( 0 => 'http\\Client', 'cookies=' => 'array|null', ), - 'http\\Client::addSslOptions' => + 'http\\client::addssloptions' => array ( 0 => 'http\\Client', 'ssl_options=' => 'array|null', ), - 'http\\Client::attach' => + 'http\\client::attach' => array ( 0 => 'void', 'observer' => 'SplObserver', ), - 'http\\Client::configure' => + 'http\\client::configure' => array ( 0 => 'http\\Client', 'settings' => 'array', ), - 'http\\Client::count' => + 'http\\client::count' => array ( 0 => 'int', ), - 'http\\Client::dequeue' => + 'http\\client::dequeue' => array ( 0 => 'http\\Client', 'request' => 'http\\Client\\Request', ), - 'http\\Client::detach' => + 'http\\client::detach' => array ( 0 => 'void', 'observer' => 'SplObserver', ), - 'http\\Client::enableEvents' => + 'http\\client::enableevents' => array ( 0 => 'http\\Client', 'enable=' => 'mixed', ), - 'http\\Client::enablePipelining' => + 'http\\client::enablepipelining' => array ( 0 => 'http\\Client', 'enable=' => 'mixed', ), - 'http\\Client::enqueue' => + 'http\\client::enqueue' => array ( 0 => 'http\\Client', 'request' => 'http\\Client\\Request', 'callable=' => 'mixed', ), - 'http\\Client::getAvailableConfiguration' => + 'http\\client::getavailableconfiguration' => array ( 0 => 'array', ), - 'http\\Client::getAvailableDrivers' => + 'http\\client::getavailabledrivers' => array ( 0 => 'array', ), - 'http\\Client::getAvailableOptions' => + 'http\\client::getavailableoptions' => array ( 0 => 'array', ), - 'http\\Client::getCookies' => + 'http\\client::getcookies' => array ( 0 => 'array', ), - 'http\\Client::getHistory' => + 'http\\client::gethistory' => array ( 0 => 'http\\Message', ), - 'http\\Client::getObservers' => + 'http\\client::getobservers' => array ( 0 => 'SplObjectStorage', ), - 'http\\Client::getOptions' => + 'http\\client::getoptions' => array ( 0 => 'array', ), - 'http\\Client::getProgressInfo' => + 'http\\client::getprogressinfo' => array ( 0 => 'null|object', 'request' => 'http\\Client\\Request', ), - 'http\\Client::getResponse' => + 'http\\client::getresponse' => array ( 0 => 'http\\Client\\Response|null', 'request=' => 'http\\Client\\Request|null', ), - 'http\\Client::getSslOptions' => + 'http\\client::getssloptions' => array ( 0 => 'array', ), - 'http\\Client::getTransferInfo' => + 'http\\client::gettransferinfo' => array ( 0 => 'object', 'request' => 'http\\Client\\Request', ), - 'http\\Client::notify' => + 'http\\client::notify' => array ( 0 => 'void', 'request=' => 'http\\Client\\Request|null', ), - 'http\\Client::once' => + 'http\\client::once' => array ( 0 => 'bool', ), - 'http\\Client::requeue' => + 'http\\client::requeue' => array ( 0 => 'http\\Client', 'request' => 'http\\Client\\Request', 'callable=' => 'mixed', ), - 'http\\Client::reset' => + 'http\\client::reset' => array ( 0 => 'http\\Client', ), - 'http\\Client::send' => + 'http\\client::send' => array ( 0 => 'http\\Client', ), - 'http\\Client::setCookies' => + 'http\\client::setcookies' => array ( 0 => 'http\\Client', 'cookies=' => 'array|null', ), - 'http\\Client::setDebug' => + 'http\\client::setdebug' => array ( 0 => 'http\\Client', 'callback' => 'callable', ), - 'http\\Client::setOptions' => + 'http\\client::setoptions' => array ( 0 => 'http\\Client', 'options=' => 'array|null', ), - 'http\\Client::setSslOptions' => + 'http\\client::setssloptions' => array ( 0 => 'http\\Client', 'ssl_option=' => 'array|null', ), - 'http\\Client::wait' => + 'http\\client::wait' => array ( 0 => 'bool', 'timeout=' => 'mixed', ), - 'http\\Client\\Curl\\User::init' => + 'http\\client\\curl\\user::init' => array ( 0 => 'mixed', 'run' => 'callable', ), - 'http\\Client\\Curl\\User::once' => + 'http\\client\\curl\\user::once' => array ( 0 => 'mixed', ), - 'http\\Client\\Curl\\User::send' => + 'http\\client\\curl\\user::send' => array ( 0 => 'mixed', ), - 'http\\Client\\Curl\\User::socket' => + 'http\\client\\curl\\user::socket' => array ( 0 => 'mixed', 'socket' => 'resource', 'action' => 'int', ), - 'http\\Client\\Curl\\User::timer' => + 'http\\client\\curl\\user::timer' => array ( 0 => 'mixed', 'timeout_ms' => 'int', ), - 'http\\Client\\Curl\\User::wait' => + 'http\\client\\curl\\user::wait' => array ( 0 => 'mixed', 'timeout_ms=' => 'mixed', ), - 'http\\Client\\Request::__construct' => + 'http\\client\\request::__construct' => array ( 0 => 'void', 'method=' => 'mixed', @@ -56426,762 +56426,762 @@ 'headers=' => 'array|null', 'body=' => 'http\\Message\\Body|null', ), - 'http\\Client\\Request::__toString' => + 'http\\client\\request::__tostring' => array ( 0 => 'string', ), - 'http\\Client\\Request::addBody' => + 'http\\client\\request::addbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Client\\Request::addHeader' => + 'http\\client\\request::addheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value' => 'mixed', ), - 'http\\Client\\Request::addHeaders' => + 'http\\client\\request::addheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', 'append=' => 'mixed', ), - 'http\\Client\\Request::addQuery' => + 'http\\client\\request::addquery' => array ( 0 => 'http\\Client\\Request', 'query_data' => 'mixed', ), - 'http\\Client\\Request::addSslOptions' => + 'http\\client\\request::addssloptions' => array ( 0 => 'http\\Client\\Request', 'ssl_options=' => 'array|null', ), - 'http\\Client\\Request::count' => + 'http\\client\\request::count' => array ( 0 => 'int', ), - 'http\\Client\\Request::current' => + 'http\\client\\request::current' => array ( 0 => 'mixed', ), - 'http\\Client\\Request::detach' => + 'http\\client\\request::detach' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Request::getBody' => + 'http\\client\\request::getbody' => array ( 0 => 'http\\Message\\Body', ), - 'http\\Client\\Request::getContentType' => + 'http\\client\\request::getcontenttype' => array ( 0 => 'null|string', ), - 'http\\Client\\Request::getHeader' => + 'http\\client\\request::getheader' => array ( 0 => 'http\\Header|mixed', 'header' => 'string', 'into_class=' => 'mixed', ), - 'http\\Client\\Request::getHeaders' => + 'http\\client\\request::getheaders' => array ( 0 => 'array', ), - 'http\\Client\\Request::getHttpVersion' => + 'http\\client\\request::gethttpversion' => array ( 0 => 'string', ), - 'http\\Client\\Request::getInfo' => + 'http\\client\\request::getinfo' => array ( 0 => 'null|string', ), - 'http\\Client\\Request::getOptions' => + 'http\\client\\request::getoptions' => array ( 0 => 'array', ), - 'http\\Client\\Request::getParentMessage' => + 'http\\client\\request::getparentmessage' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Request::getQuery' => + 'http\\client\\request::getquery' => array ( 0 => 'null|string', ), - 'http\\Client\\Request::getRequestMethod' => + 'http\\client\\request::getrequestmethod' => array ( 0 => 'false|string', ), - 'http\\Client\\Request::getRequestUrl' => + 'http\\client\\request::getrequesturl' => array ( 0 => 'false|string', ), - 'http\\Client\\Request::getResponseCode' => + 'http\\client\\request::getresponsecode' => array ( 0 => 'false|int', ), - 'http\\Client\\Request::getResponseStatus' => + 'http\\client\\request::getresponsestatus' => array ( 0 => 'false|string', ), - 'http\\Client\\Request::getSslOptions' => + 'http\\client\\request::getssloptions' => array ( 0 => 'array', ), - 'http\\Client\\Request::getType' => + 'http\\client\\request::gettype' => array ( 0 => 'int', ), - 'http\\Client\\Request::isMultipart' => + 'http\\client\\request::ismultipart' => array ( 0 => 'bool', '&boundary=' => 'mixed', ), - 'http\\Client\\Request::key' => + 'http\\client\\request::key' => array ( 0 => 'int|string', ), - 'http\\Client\\Request::next' => + 'http\\client\\request::next' => array ( 0 => 'void', ), - 'http\\Client\\Request::prepend' => + 'http\\client\\request::prepend' => array ( 0 => 'http\\Message', 'message' => 'http\\Message', 'top=' => 'mixed', ), - 'http\\Client\\Request::reverse' => + 'http\\client\\request::reverse' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Request::rewind' => + 'http\\client\\request::rewind' => array ( 0 => 'void', ), - 'http\\Client\\Request::serialize' => + 'http\\client\\request::serialize' => array ( 0 => 'string', ), - 'http\\Client\\Request::setBody' => + 'http\\client\\request::setbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Client\\Request::setContentType' => + 'http\\client\\request::setcontenttype' => array ( 0 => 'http\\Client\\Request', 'content_type' => 'string', ), - 'http\\Client\\Request::setHeader' => + 'http\\client\\request::setheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value=' => 'mixed', ), - 'http\\Client\\Request::setHeaders' => + 'http\\client\\request::setheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', ), - 'http\\Client\\Request::setHttpVersion' => + 'http\\client\\request::sethttpversion' => array ( 0 => 'http\\Message', 'http_version' => 'string', ), - 'http\\Client\\Request::setInfo' => + 'http\\client\\request::setinfo' => array ( 0 => 'http\\Message', 'http_info' => 'string', ), - 'http\\Client\\Request::setOptions' => + 'http\\client\\request::setoptions' => array ( 0 => 'http\\Client\\Request', 'options=' => 'array|null', ), - 'http\\Client\\Request::setQuery' => + 'http\\client\\request::setquery' => array ( 0 => 'http\\Client\\Request', 'query_data=' => 'mixed', ), - 'http\\Client\\Request::setRequestMethod' => + 'http\\client\\request::setrequestmethod' => array ( 0 => 'http\\Message', 'request_method' => 'string', ), - 'http\\Client\\Request::setRequestUrl' => + 'http\\client\\request::setrequesturl' => array ( 0 => 'http\\Message', 'url' => 'string', ), - 'http\\Client\\Request::setResponseCode' => + 'http\\client\\request::setresponsecode' => array ( 0 => 'http\\Message', 'response_code' => 'int', 'strict=' => 'mixed', ), - 'http\\Client\\Request::setResponseStatus' => + 'http\\client\\request::setresponsestatus' => array ( 0 => 'http\\Message', 'response_status' => 'string', ), - 'http\\Client\\Request::setSslOptions' => + 'http\\client\\request::setssloptions' => array ( 0 => 'http\\Client\\Request', 'ssl_options=' => 'array|null', ), - 'http\\Client\\Request::setType' => + 'http\\client\\request::settype' => array ( 0 => 'http\\Message', 'type' => 'int', ), - 'http\\Client\\Request::splitMultipartBody' => + 'http\\client\\request::splitmultipartbody' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Request::toCallback' => + 'http\\client\\request::tocallback' => array ( 0 => 'http\\Message', 'callback' => 'callable', ), - 'http\\Client\\Request::toStream' => + 'http\\client\\request::tostream' => array ( 0 => 'http\\Message', 'stream' => 'resource', ), - 'http\\Client\\Request::toString' => + 'http\\client\\request::tostring' => array ( 0 => 'string', 'include_parent=' => 'mixed', ), - 'http\\Client\\Request::unserialize' => + 'http\\client\\request::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\Client\\Request::valid' => + 'http\\client\\request::valid' => array ( 0 => 'bool', ), - 'http\\Client\\Response::__construct' => + 'http\\client\\response::__construct' => array ( 0 => 'Iterator', ), - 'http\\Client\\Response::__toString' => + 'http\\client\\response::__tostring' => array ( 0 => 'string', ), - 'http\\Client\\Response::addBody' => + 'http\\client\\response::addbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Client\\Response::addHeader' => + 'http\\client\\response::addheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value' => 'mixed', ), - 'http\\Client\\Response::addHeaders' => + 'http\\client\\response::addheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', 'append=' => 'mixed', ), - 'http\\Client\\Response::count' => + 'http\\client\\response::count' => array ( 0 => 'int', ), - 'http\\Client\\Response::current' => + 'http\\client\\response::current' => array ( 0 => 'mixed', ), - 'http\\Client\\Response::detach' => + 'http\\client\\response::detach' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Response::getBody' => + 'http\\client\\response::getbody' => array ( 0 => 'http\\Message\\Body', ), - 'http\\Client\\Response::getCookies' => + 'http\\client\\response::getcookies' => array ( 0 => 'array', 'flags=' => 'mixed', 'allowed_extras=' => 'mixed', ), - 'http\\Client\\Response::getHeader' => + 'http\\client\\response::getheader' => array ( 0 => 'http\\Header|mixed', 'header' => 'string', 'into_class=' => 'mixed', ), - 'http\\Client\\Response::getHeaders' => + 'http\\client\\response::getheaders' => array ( 0 => 'array', ), - 'http\\Client\\Response::getHttpVersion' => + 'http\\client\\response::gethttpversion' => array ( 0 => 'string', ), - 'http\\Client\\Response::getInfo' => + 'http\\client\\response::getinfo' => array ( 0 => 'null|string', ), - 'http\\Client\\Response::getParentMessage' => + 'http\\client\\response::getparentmessage' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Response::getRequestMethod' => + 'http\\client\\response::getrequestmethod' => array ( 0 => 'false|string', ), - 'http\\Client\\Response::getRequestUrl' => + 'http\\client\\response::getrequesturl' => array ( 0 => 'false|string', ), - 'http\\Client\\Response::getResponseCode' => + 'http\\client\\response::getresponsecode' => array ( 0 => 'false|int', ), - 'http\\Client\\Response::getResponseStatus' => + 'http\\client\\response::getresponsestatus' => array ( 0 => 'false|string', ), - 'http\\Client\\Response::getTransferInfo' => + 'http\\client\\response::gettransferinfo' => array ( 0 => 'mixed|object', 'element=' => 'mixed', ), - 'http\\Client\\Response::getType' => + 'http\\client\\response::gettype' => array ( 0 => 'int', ), - 'http\\Client\\Response::isMultipart' => + 'http\\client\\response::ismultipart' => array ( 0 => 'bool', '&boundary=' => 'mixed', ), - 'http\\Client\\Response::key' => + 'http\\client\\response::key' => array ( 0 => 'int|string', ), - 'http\\Client\\Response::next' => + 'http\\client\\response::next' => array ( 0 => 'void', ), - 'http\\Client\\Response::prepend' => + 'http\\client\\response::prepend' => array ( 0 => 'http\\Message', 'message' => 'http\\Message', 'top=' => 'mixed', ), - 'http\\Client\\Response::reverse' => + 'http\\client\\response::reverse' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Response::rewind' => + 'http\\client\\response::rewind' => array ( 0 => 'void', ), - 'http\\Client\\Response::serialize' => + 'http\\client\\response::serialize' => array ( 0 => 'string', ), - 'http\\Client\\Response::setBody' => + 'http\\client\\response::setbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Client\\Response::setHeader' => + 'http\\client\\response::setheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value=' => 'mixed', ), - 'http\\Client\\Response::setHeaders' => + 'http\\client\\response::setheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', ), - 'http\\Client\\Response::setHttpVersion' => + 'http\\client\\response::sethttpversion' => array ( 0 => 'http\\Message', 'http_version' => 'string', ), - 'http\\Client\\Response::setInfo' => + 'http\\client\\response::setinfo' => array ( 0 => 'http\\Message', 'http_info' => 'string', ), - 'http\\Client\\Response::setRequestMethod' => + 'http\\client\\response::setrequestmethod' => array ( 0 => 'http\\Message', 'request_method' => 'string', ), - 'http\\Client\\Response::setRequestUrl' => + 'http\\client\\response::setrequesturl' => array ( 0 => 'http\\Message', 'url' => 'string', ), - 'http\\Client\\Response::setResponseCode' => + 'http\\client\\response::setresponsecode' => array ( 0 => 'http\\Message', 'response_code' => 'int', 'strict=' => 'mixed', ), - 'http\\Client\\Response::setResponseStatus' => + 'http\\client\\response::setresponsestatus' => array ( 0 => 'http\\Message', 'response_status' => 'string', ), - 'http\\Client\\Response::setType' => + 'http\\client\\response::settype' => array ( 0 => 'http\\Message', 'type' => 'int', ), - 'http\\Client\\Response::splitMultipartBody' => + 'http\\client\\response::splitmultipartbody' => array ( 0 => 'http\\Message', ), - 'http\\Client\\Response::toCallback' => + 'http\\client\\response::tocallback' => array ( 0 => 'http\\Message', 'callback' => 'callable', ), - 'http\\Client\\Response::toStream' => + 'http\\client\\response::tostream' => array ( 0 => 'http\\Message', 'stream' => 'resource', ), - 'http\\Client\\Response::toString' => + 'http\\client\\response::tostring' => array ( 0 => 'string', 'include_parent=' => 'mixed', ), - 'http\\Client\\Response::unserialize' => + 'http\\client\\response::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\Client\\Response::valid' => + 'http\\client\\response::valid' => array ( 0 => 'bool', ), - 'http\\Cookie::__construct' => + 'http\\cookie::__construct' => array ( 0 => 'void', 'cookie_string=' => 'mixed', 'parser_flags=' => 'int', 'allowed_extras=' => 'array', ), - 'http\\Cookie::__toString' => + 'http\\cookie::__tostring' => array ( 0 => 'string', ), - 'http\\Cookie::addCookie' => + 'http\\cookie::addcookie' => array ( 0 => 'http\\Cookie', 'cookie_name' => 'string', 'cookie_value' => 'string', ), - 'http\\Cookie::addCookies' => + 'http\\cookie::addcookies' => array ( 0 => 'http\\Cookie', 'cookies' => 'array', ), - 'http\\Cookie::addExtra' => + 'http\\cookie::addextra' => array ( 0 => 'http\\Cookie', 'extra_name' => 'string', 'extra_value' => 'string', ), - 'http\\Cookie::addExtras' => + 'http\\cookie::addextras' => array ( 0 => 'http\\Cookie', 'extras' => 'array', ), - 'http\\Cookie::getCookie' => + 'http\\cookie::getcookie' => array ( 0 => 'null|string', 'name' => 'string', ), - 'http\\Cookie::getCookies' => + 'http\\cookie::getcookies' => array ( 0 => 'array', ), - 'http\\Cookie::getDomain' => + 'http\\cookie::getdomain' => array ( 0 => 'string', ), - 'http\\Cookie::getExpires' => + 'http\\cookie::getexpires' => array ( 0 => 'int', ), - 'http\\Cookie::getExtra' => + 'http\\cookie::getextra' => array ( 0 => 'string', 'name' => 'string', ), - 'http\\Cookie::getExtras' => + 'http\\cookie::getextras' => array ( 0 => 'array', ), - 'http\\Cookie::getFlags' => + 'http\\cookie::getflags' => array ( 0 => 'int', ), - 'http\\Cookie::getMaxAge' => + 'http\\cookie::getmaxage' => array ( 0 => 'int', ), - 'http\\Cookie::getPath' => + 'http\\cookie::getpath' => array ( 0 => 'string', ), - 'http\\Cookie::setCookie' => + 'http\\cookie::setcookie' => array ( 0 => 'http\\Cookie', 'cookie_name' => 'string', 'cookie_value=' => 'mixed', ), - 'http\\Cookie::setCookies' => + 'http\\cookie::setcookies' => array ( 0 => 'http\\Cookie', 'cookies=' => 'mixed', ), - 'http\\Cookie::setDomain' => + 'http\\cookie::setdomain' => array ( 0 => 'http\\Cookie', 'value=' => 'mixed', ), - 'http\\Cookie::setExpires' => + 'http\\cookie::setexpires' => array ( 0 => 'http\\Cookie', 'value=' => 'mixed', ), - 'http\\Cookie::setExtra' => + 'http\\cookie::setextra' => array ( 0 => 'http\\Cookie', 'extra_name' => 'string', 'extra_value=' => 'mixed', ), - 'http\\Cookie::setExtras' => + 'http\\cookie::setextras' => array ( 0 => 'http\\Cookie', 'extras=' => 'mixed', ), - 'http\\Cookie::setFlags' => + 'http\\cookie::setflags' => array ( 0 => 'http\\Cookie', 'value=' => 'mixed', ), - 'http\\Cookie::setMaxAge' => + 'http\\cookie::setmaxage' => array ( 0 => 'http\\Cookie', 'value=' => 'mixed', ), - 'http\\Cookie::setPath' => + 'http\\cookie::setpath' => array ( 0 => 'http\\Cookie', 'value=' => 'mixed', ), - 'http\\Cookie::toArray' => + 'http\\cookie::toarray' => array ( 0 => 'array', ), - 'http\\Cookie::toString' => + 'http\\cookie::tostring' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream::__construct' => + 'http\\encoding\\stream::__construct' => array ( 0 => 'void', 'flags=' => 'mixed', ), - 'http\\Encoding\\Stream::done' => + 'http\\encoding\\stream::done' => array ( 0 => 'bool', ), - 'http\\Encoding\\Stream::finish' => + 'http\\encoding\\stream::finish' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream::flush' => + 'http\\encoding\\stream::flush' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream::update' => + 'http\\encoding\\stream::update' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Encoding\\Stream\\Debrotli::__construct' => + 'http\\encoding\\stream\\debrotli::__construct' => array ( 0 => 'void', 'flags=' => 'int', ), - 'http\\Encoding\\Stream\\Debrotli::decode' => + 'http\\encoding\\stream\\debrotli::decode' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Encoding\\Stream\\Debrotli::done' => + 'http\\encoding\\stream\\debrotli::done' => array ( 0 => 'bool', ), - 'http\\Encoding\\Stream\\Debrotli::finish' => + 'http\\encoding\\stream\\debrotli::finish' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Debrotli::flush' => + 'http\\encoding\\stream\\debrotli::flush' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Debrotli::update' => + 'http\\encoding\\stream\\debrotli::update' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Encoding\\Stream\\Dechunk::__construct' => + 'http\\encoding\\stream\\dechunk::__construct' => array ( 0 => 'void', 'flags=' => 'mixed', ), - 'http\\Encoding\\Stream\\Dechunk::decode' => + 'http\\encoding\\stream\\dechunk::decode' => array ( 0 => 'false|string', 'data' => 'string', '&decoded_len=' => 'mixed', ), - 'http\\Encoding\\Stream\\Dechunk::done' => + 'http\\encoding\\stream\\dechunk::done' => array ( 0 => 'bool', ), - 'http\\Encoding\\Stream\\Dechunk::finish' => + 'http\\encoding\\stream\\dechunk::finish' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Dechunk::flush' => + 'http\\encoding\\stream\\dechunk::flush' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Dechunk::update' => + 'http\\encoding\\stream\\dechunk::update' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Encoding\\Stream\\Deflate::__construct' => + 'http\\encoding\\stream\\deflate::__construct' => array ( 0 => 'void', 'flags=' => 'mixed', ), - 'http\\Encoding\\Stream\\Deflate::done' => + 'http\\encoding\\stream\\deflate::done' => array ( 0 => 'bool', ), - 'http\\Encoding\\Stream\\Deflate::encode' => + 'http\\encoding\\stream\\deflate::encode' => array ( 0 => 'string', 'data' => 'string', 'flags=' => 'mixed', ), - 'http\\Encoding\\Stream\\Deflate::finish' => + 'http\\encoding\\stream\\deflate::finish' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Deflate::flush' => + 'http\\encoding\\stream\\deflate::flush' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Deflate::update' => + 'http\\encoding\\stream\\deflate::update' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Encoding\\Stream\\Enbrotli::__construct' => + 'http\\encoding\\stream\\enbrotli::__construct' => array ( 0 => 'void', 'flags=' => 'int', ), - 'http\\Encoding\\Stream\\Enbrotli::done' => + 'http\\encoding\\stream\\enbrotli::done' => array ( 0 => 'bool', ), - 'http\\Encoding\\Stream\\Enbrotli::encode' => + 'http\\encoding\\stream\\enbrotli::encode' => array ( 0 => 'string', 'data' => 'string', 'flags=' => 'int', ), - 'http\\Encoding\\Stream\\Enbrotli::finish' => + 'http\\encoding\\stream\\enbrotli::finish' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Enbrotli::flush' => + 'http\\encoding\\stream\\enbrotli::flush' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Enbrotli::update' => + 'http\\encoding\\stream\\enbrotli::update' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Encoding\\Stream\\Inflate::__construct' => + 'http\\encoding\\stream\\inflate::__construct' => array ( 0 => 'void', 'flags=' => 'mixed', ), - 'http\\Encoding\\Stream\\Inflate::decode' => + 'http\\encoding\\stream\\inflate::decode' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Encoding\\Stream\\Inflate::done' => + 'http\\encoding\\stream\\inflate::done' => array ( 0 => 'bool', ), - 'http\\Encoding\\Stream\\Inflate::finish' => + 'http\\encoding\\stream\\inflate::finish' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Inflate::flush' => + 'http\\encoding\\stream\\inflate::flush' => array ( 0 => 'string', ), - 'http\\Encoding\\Stream\\Inflate::update' => + 'http\\encoding\\stream\\inflate::update' => array ( 0 => 'string', 'data' => 'string', ), - 'http\\Env::getRequestBody' => + 'http\\env::getrequestbody' => array ( 0 => 'http\\Message\\Body', 'body_class_name=' => 'mixed', ), - 'http\\Env::getRequestHeader' => + 'http\\env::getrequestheader' => array ( 0 => 'array|null|string', 'header_name=' => 'mixed', ), - 'http\\Env::getResponseCode' => + 'http\\env::getresponsecode' => array ( 0 => 'int', ), - 'http\\Env::getResponseHeader' => + 'http\\env::getresponseheader' => array ( 0 => 'array|null|string', 'header_name=' => 'mixed', ), - 'http\\Env::getResponseStatusForAllCodes' => + 'http\\env::getresponsestatusforallcodes' => array ( 0 => 'array', ), - 'http\\Env::getResponseStatusForCode' => + 'http\\env::getresponsestatusforcode' => array ( 0 => 'string', 'code' => 'int', ), - 'http\\Env::negotiate' => + 'http\\env::negotiate' => array ( 0 => 'null|string', 'params' => 'string', @@ -57189,36 +57189,36 @@ 'primary_type_separator=' => 'mixed', '&result_array=' => 'mixed', ), - 'http\\Env::negotiateCharset' => + 'http\\env::negotiatecharset' => array ( 0 => 'null|string', 'supported' => 'array', '&result_array=' => 'mixed', ), - 'http\\Env::negotiateContentType' => + 'http\\env::negotiatecontenttype' => array ( 0 => 'null|string', 'supported' => 'array', '&result_array=' => 'mixed', ), - 'http\\Env::negotiateEncoding' => + 'http\\env::negotiateencoding' => array ( 0 => 'null|string', 'supported' => 'array', '&result_array=' => 'mixed', ), - 'http\\Env::negotiateLanguage' => + 'http\\env::negotiatelanguage' => array ( 0 => 'null|string', 'supported' => 'array', '&result_array=' => 'mixed', ), - 'http\\Env::setResponseCode' => + 'http\\env::setresponsecode' => array ( 0 => 'bool', 'code' => 'int', ), - 'http\\Env::setResponseHeader' => + 'http\\env::setresponseheader' => array ( 0 => 'bool', 'header_name' => 'string', @@ -57226,48 +57226,48 @@ 'response_code=' => 'mixed', 'replace_header=' => 'mixed', ), - 'http\\Env\\Request::__construct' => + 'http\\env\\request::__construct' => array ( 0 => 'void', ), - 'http\\Env\\Request::__toString' => + 'http\\env\\request::__tostring' => array ( 0 => 'string', ), - 'http\\Env\\Request::addBody' => + 'http\\env\\request::addbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Env\\Request::addHeader' => + 'http\\env\\request::addheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value' => 'mixed', ), - 'http\\Env\\Request::addHeaders' => + 'http\\env\\request::addheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', 'append=' => 'mixed', ), - 'http\\Env\\Request::count' => + 'http\\env\\request::count' => array ( 0 => 'int', ), - 'http\\Env\\Request::current' => + 'http\\env\\request::current' => array ( 0 => 'mixed', ), - 'http\\Env\\Request::detach' => + 'http\\env\\request::detach' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Request::getBody' => + 'http\\env\\request::getbody' => array ( 0 => 'http\\Message\\Body', ), - 'http\\Env\\Request::getCookie' => + 'http\\env\\request::getcookie' => array ( 0 => 'mixed', 'name=' => 'string', @@ -57275,11 +57275,11 @@ 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\Env\\Request::getFiles' => + 'http\\env\\request::getfiles' => array ( 0 => 'array', ), - 'http\\Env\\Request::getForm' => + 'http\\env\\request::getform' => array ( 0 => 'mixed', 'name=' => 'string', @@ -57287,29 +57287,29 @@ 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\Env\\Request::getHeader' => + 'http\\env\\request::getheader' => array ( 0 => 'http\\Header|mixed', 'header' => 'string', 'into_class=' => 'mixed', ), - 'http\\Env\\Request::getHeaders' => + 'http\\env\\request::getheaders' => array ( 0 => 'array', ), - 'http\\Env\\Request::getHttpVersion' => + 'http\\env\\request::gethttpversion' => array ( 0 => 'string', ), - 'http\\Env\\Request::getInfo' => + 'http\\env\\request::getinfo' => array ( 0 => 'null|string', ), - 'http\\Env\\Request::getParentMessage' => + 'http\\env\\request::getparentmessage' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Request::getQuery' => + 'http\\env\\request::getquery' => array ( 0 => 'mixed', 'name=' => 'string', @@ -57317,409 +57317,409 @@ 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\Env\\Request::getRequestMethod' => + 'http\\env\\request::getrequestmethod' => array ( 0 => 'false|string', ), - 'http\\Env\\Request::getRequestUrl' => + 'http\\env\\request::getrequesturl' => array ( 0 => 'false|string', ), - 'http\\Env\\Request::getResponseCode' => + 'http\\env\\request::getresponsecode' => array ( 0 => 'false|int', ), - 'http\\Env\\Request::getResponseStatus' => + 'http\\env\\request::getresponsestatus' => array ( 0 => 'false|string', ), - 'http\\Env\\Request::getType' => + 'http\\env\\request::gettype' => array ( 0 => 'int', ), - 'http\\Env\\Request::isMultipart' => + 'http\\env\\request::ismultipart' => array ( 0 => 'bool', '&boundary=' => 'mixed', ), - 'http\\Env\\Request::key' => + 'http\\env\\request::key' => array ( 0 => 'int|string', ), - 'http\\Env\\Request::next' => + 'http\\env\\request::next' => array ( 0 => 'void', ), - 'http\\Env\\Request::prepend' => + 'http\\env\\request::prepend' => array ( 0 => 'http\\Message', 'message' => 'http\\Message', 'top=' => 'mixed', ), - 'http\\Env\\Request::reverse' => + 'http\\env\\request::reverse' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Request::rewind' => + 'http\\env\\request::rewind' => array ( 0 => 'void', ), - 'http\\Env\\Request::serialize' => + 'http\\env\\request::serialize' => array ( 0 => 'string', ), - 'http\\Env\\Request::setBody' => + 'http\\env\\request::setbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Env\\Request::setHeader' => + 'http\\env\\request::setheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value=' => 'mixed', ), - 'http\\Env\\Request::setHeaders' => + 'http\\env\\request::setheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', ), - 'http\\Env\\Request::setHttpVersion' => + 'http\\env\\request::sethttpversion' => array ( 0 => 'http\\Message', 'http_version' => 'string', ), - 'http\\Env\\Request::setInfo' => + 'http\\env\\request::setinfo' => array ( 0 => 'http\\Message', 'http_info' => 'string', ), - 'http\\Env\\Request::setRequestMethod' => + 'http\\env\\request::setrequestmethod' => array ( 0 => 'http\\Message', 'request_method' => 'string', ), - 'http\\Env\\Request::setRequestUrl' => + 'http\\env\\request::setrequesturl' => array ( 0 => 'http\\Message', 'url' => 'string', ), - 'http\\Env\\Request::setResponseCode' => + 'http\\env\\request::setresponsecode' => array ( 0 => 'http\\Message', 'response_code' => 'int', 'strict=' => 'mixed', ), - 'http\\Env\\Request::setResponseStatus' => + 'http\\env\\request::setresponsestatus' => array ( 0 => 'http\\Message', 'response_status' => 'string', ), - 'http\\Env\\Request::setType' => + 'http\\env\\request::settype' => array ( 0 => 'http\\Message', 'type' => 'int', ), - 'http\\Env\\Request::splitMultipartBody' => + 'http\\env\\request::splitmultipartbody' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Request::toCallback' => + 'http\\env\\request::tocallback' => array ( 0 => 'http\\Message', 'callback' => 'callable', ), - 'http\\Env\\Request::toStream' => + 'http\\env\\request::tostream' => array ( 0 => 'http\\Message', 'stream' => 'resource', ), - 'http\\Env\\Request::toString' => + 'http\\env\\request::tostring' => array ( 0 => 'string', 'include_parent=' => 'mixed', ), - 'http\\Env\\Request::unserialize' => + 'http\\env\\request::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\Env\\Request::valid' => + 'http\\env\\request::valid' => array ( 0 => 'bool', ), - 'http\\Env\\Response::__construct' => + 'http\\env\\response::__construct' => array ( 0 => 'void', ), - 'http\\Env\\Response::__invoke' => + 'http\\env\\response::__invoke' => array ( 0 => 'bool', 'data' => 'string', 'ob_flags=' => 'int', ), - 'http\\Env\\Response::__toString' => + 'http\\env\\response::__tostring' => array ( 0 => 'string', ), - 'http\\Env\\Response::addBody' => + 'http\\env\\response::addbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Env\\Response::addHeader' => + 'http\\env\\response::addheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value' => 'mixed', ), - 'http\\Env\\Response::addHeaders' => + 'http\\env\\response::addheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', 'append=' => 'mixed', ), - 'http\\Env\\Response::count' => + 'http\\env\\response::count' => array ( 0 => 'int', ), - 'http\\Env\\Response::current' => + 'http\\env\\response::current' => array ( 0 => 'mixed', ), - 'http\\Env\\Response::detach' => + 'http\\env\\response::detach' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Response::getBody' => + 'http\\env\\response::getbody' => array ( 0 => 'http\\Message\\Body', ), - 'http\\Env\\Response::getHeader' => + 'http\\env\\response::getheader' => array ( 0 => 'http\\Header|mixed', 'header' => 'string', 'into_class=' => 'mixed', ), - 'http\\Env\\Response::getHeaders' => + 'http\\env\\response::getheaders' => array ( 0 => 'array', ), - 'http\\Env\\Response::getHttpVersion' => + 'http\\env\\response::gethttpversion' => array ( 0 => 'string', ), - 'http\\Env\\Response::getInfo' => + 'http\\env\\response::getinfo' => array ( 0 => 'null|string', ), - 'http\\Env\\Response::getParentMessage' => + 'http\\env\\response::getparentmessage' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Response::getRequestMethod' => + 'http\\env\\response::getrequestmethod' => array ( 0 => 'false|string', ), - 'http\\Env\\Response::getRequestUrl' => + 'http\\env\\response::getrequesturl' => array ( 0 => 'false|string', ), - 'http\\Env\\Response::getResponseCode' => + 'http\\env\\response::getresponsecode' => array ( 0 => 'false|int', ), - 'http\\Env\\Response::getResponseStatus' => + 'http\\env\\response::getresponsestatus' => array ( 0 => 'false|string', ), - 'http\\Env\\Response::getType' => + 'http\\env\\response::gettype' => array ( 0 => 'int', ), - 'http\\Env\\Response::isCachedByETag' => + 'http\\env\\response::iscachedbyetag' => array ( 0 => 'int', 'header_name=' => 'string', ), - 'http\\Env\\Response::isCachedByLastModified' => + 'http\\env\\response::iscachedbylastmodified' => array ( 0 => 'int', 'header_name=' => 'string', ), - 'http\\Env\\Response::isMultipart' => + 'http\\env\\response::ismultipart' => array ( 0 => 'bool', '&boundary=' => 'mixed', ), - 'http\\Env\\Response::key' => + 'http\\env\\response::key' => array ( 0 => 'int|string', ), - 'http\\Env\\Response::next' => + 'http\\env\\response::next' => array ( 0 => 'void', ), - 'http\\Env\\Response::prepend' => + 'http\\env\\response::prepend' => array ( 0 => 'http\\Message', 'message' => 'http\\Message', 'top=' => 'mixed', ), - 'http\\Env\\Response::reverse' => + 'http\\env\\response::reverse' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Response::rewind' => + 'http\\env\\response::rewind' => array ( 0 => 'void', ), - 'http\\Env\\Response::send' => + 'http\\env\\response::send' => array ( 0 => 'bool', 'stream=' => 'resource', ), - 'http\\Env\\Response::serialize' => + 'http\\env\\response::serialize' => array ( 0 => 'string', ), - 'http\\Env\\Response::setBody' => + 'http\\env\\response::setbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Env\\Response::setCacheControl' => + 'http\\env\\response::setcachecontrol' => array ( 0 => 'http\\Env\\Response', 'cache_control' => 'string', ), - 'http\\Env\\Response::setContentDisposition' => + 'http\\env\\response::setcontentdisposition' => array ( 0 => 'http\\Env\\Response', 'disposition_params' => 'array', ), - 'http\\Env\\Response::setContentEncoding' => + 'http\\env\\response::setcontentencoding' => array ( 0 => 'http\\Env\\Response', 'content_encoding' => 'int', ), - 'http\\Env\\Response::setContentType' => + 'http\\env\\response::setcontenttype' => array ( 0 => 'http\\Env\\Response', 'content_type' => 'string', ), - 'http\\Env\\Response::setCookie' => + 'http\\env\\response::setcookie' => array ( 0 => 'http\\Env\\Response', 'cookie' => 'mixed', ), - 'http\\Env\\Response::setEnvRequest' => + 'http\\env\\response::setenvrequest' => array ( 0 => 'http\\Env\\Response', 'env_request' => 'http\\Message', ), - 'http\\Env\\Response::setEtag' => + 'http\\env\\response::setetag' => array ( 0 => 'http\\Env\\Response', 'etag' => 'string', ), - 'http\\Env\\Response::setHeader' => + 'http\\env\\response::setheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value=' => 'mixed', ), - 'http\\Env\\Response::setHeaders' => + 'http\\env\\response::setheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', ), - 'http\\Env\\Response::setHttpVersion' => + 'http\\env\\response::sethttpversion' => array ( 0 => 'http\\Message', 'http_version' => 'string', ), - 'http\\Env\\Response::setInfo' => + 'http\\env\\response::setinfo' => array ( 0 => 'http\\Message', 'http_info' => 'string', ), - 'http\\Env\\Response::setLastModified' => + 'http\\env\\response::setlastmodified' => array ( 0 => 'http\\Env\\Response', 'last_modified' => 'int', ), - 'http\\Env\\Response::setRequestMethod' => + 'http\\env\\response::setrequestmethod' => array ( 0 => 'http\\Message', 'request_method' => 'string', ), - 'http\\Env\\Response::setRequestUrl' => + 'http\\env\\response::setrequesturl' => array ( 0 => 'http\\Message', 'url' => 'string', ), - 'http\\Env\\Response::setResponseCode' => + 'http\\env\\response::setresponsecode' => array ( 0 => 'http\\Message', 'response_code' => 'int', 'strict=' => 'mixed', ), - 'http\\Env\\Response::setResponseStatus' => + 'http\\env\\response::setresponsestatus' => array ( 0 => 'http\\Message', 'response_status' => 'string', ), - 'http\\Env\\Response::setThrottleRate' => + 'http\\env\\response::setthrottlerate' => array ( 0 => 'http\\Env\\Response', 'chunk_size' => 'int', 'delay=' => 'float|int', ), - 'http\\Env\\Response::setType' => + 'http\\env\\response::settype' => array ( 0 => 'http\\Message', 'type' => 'int', ), - 'http\\Env\\Response::splitMultipartBody' => + 'http\\env\\response::splitmultipartbody' => array ( 0 => 'http\\Message', ), - 'http\\Env\\Response::toCallback' => + 'http\\env\\response::tocallback' => array ( 0 => 'http\\Message', 'callback' => 'callable', ), - 'http\\Env\\Response::toStream' => + 'http\\env\\response::tostream' => array ( 0 => 'http\\Message', 'stream' => 'resource', ), - 'http\\Env\\Response::toString' => + 'http\\env\\response::tostring' => array ( 0 => 'string', 'include_parent=' => 'mixed', ), - 'http\\Env\\Response::unserialize' => + 'http\\env\\response::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\Env\\Response::valid' => + 'http\\env\\response::valid' => array ( 0 => 'bool', ), - 'http\\Header::__construct' => + 'http\\header::__construct' => array ( 0 => 'void', 'name=' => 'mixed', 'value=' => 'mixed', ), - 'http\\Header::__toString' => + 'http\\header::__tostring' => array ( 0 => 'string', ), - 'http\\Header::getParams' => + 'http\\header::getparams' => array ( 0 => 'http\\Params', 'param_sep=' => 'mixed', @@ -57727,339 +57727,339 @@ 'val_sep=' => 'mixed', 'flags=' => 'mixed', ), - 'http\\Header::match' => + 'http\\header::match' => array ( 0 => 'bool', 'value' => 'string', 'flags=' => 'mixed', ), - 'http\\Header::negotiate' => + 'http\\header::negotiate' => array ( 0 => 'null|string', 'supported' => 'array', '&result=' => 'mixed', ), - 'http\\Header::parse' => + 'http\\header::parse' => array ( 0 => 'array|false', 'string' => 'string', 'header_class=' => 'mixed', ), - 'http\\Header::serialize' => + 'http\\header::serialize' => array ( 0 => 'string', ), - 'http\\Header::toString' => + 'http\\header::tostring' => array ( 0 => 'string', ), - 'http\\Header::unserialize' => + 'http\\header::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\Header\\Parser::getState' => + 'http\\header\\parser::getstate' => array ( 0 => 'int', ), - 'http\\Header\\Parser::parse' => + 'http\\header\\parser::parse' => array ( 0 => 'int', 'data' => 'string', 'flags' => 'int', '&headers' => 'array', ), - 'http\\Header\\Parser::stream' => + 'http\\header\\parser::stream' => array ( 0 => 'int', 'stream' => 'resource', 'flags' => 'int', '&headers' => 'array', ), - 'http\\Message::__construct' => + 'http\\message::__construct' => array ( 0 => 'void', 'message=' => 'mixed', 'greedy=' => 'bool', ), - 'http\\Message::__toString' => + 'http\\message::__tostring' => array ( 0 => 'string', ), - 'http\\Message::addBody' => + 'http\\message::addbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Message::addHeader' => + 'http\\message::addheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value' => 'mixed', ), - 'http\\Message::addHeaders' => + 'http\\message::addheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', 'append=' => 'mixed', ), - 'http\\Message::count' => + 'http\\message::count' => array ( 0 => 'int', ), - 'http\\Message::current' => + 'http\\message::current' => array ( 0 => 'mixed', ), - 'http\\Message::detach' => + 'http\\message::detach' => array ( 0 => 'http\\Message', ), - 'http\\Message::getBody' => + 'http\\message::getbody' => array ( 0 => 'http\\Message\\Body', ), - 'http\\Message::getHeader' => + 'http\\message::getheader' => array ( 0 => 'http\\Header|mixed', 'header' => 'string', 'into_class=' => 'mixed', ), - 'http\\Message::getHeaders' => + 'http\\message::getheaders' => array ( 0 => 'array', ), - 'http\\Message::getHttpVersion' => + 'http\\message::gethttpversion' => array ( 0 => 'string', ), - 'http\\Message::getInfo' => + 'http\\message::getinfo' => array ( 0 => 'null|string', ), - 'http\\Message::getParentMessage' => + 'http\\message::getparentmessage' => array ( 0 => 'http\\Message', ), - 'http\\Message::getRequestMethod' => + 'http\\message::getrequestmethod' => array ( 0 => 'false|string', ), - 'http\\Message::getRequestUrl' => + 'http\\message::getrequesturl' => array ( 0 => 'false|string', ), - 'http\\Message::getResponseCode' => + 'http\\message::getresponsecode' => array ( 0 => 'false|int', ), - 'http\\Message::getResponseStatus' => + 'http\\message::getresponsestatus' => array ( 0 => 'false|string', ), - 'http\\Message::getType' => + 'http\\message::gettype' => array ( 0 => 'int', ), - 'http\\Message::isMultipart' => + 'http\\message::ismultipart' => array ( 0 => 'bool', '&boundary=' => 'mixed', ), - 'http\\Message::key' => + 'http\\message::key' => array ( 0 => 'int|string', ), - 'http\\Message::next' => + 'http\\message::next' => array ( 0 => 'void', ), - 'http\\Message::prepend' => + 'http\\message::prepend' => array ( 0 => 'http\\Message', 'message' => 'http\\Message', 'top=' => 'mixed', ), - 'http\\Message::reverse' => + 'http\\message::reverse' => array ( 0 => 'http\\Message', ), - 'http\\Message::rewind' => + 'http\\message::rewind' => array ( 0 => 'void', ), - 'http\\Message::serialize' => + 'http\\message::serialize' => array ( 0 => 'string', ), - 'http\\Message::setBody' => + 'http\\message::setbody' => array ( 0 => 'http\\Message', 'body' => 'http\\Message\\Body', ), - 'http\\Message::setHeader' => + 'http\\message::setheader' => array ( 0 => 'http\\Message', 'header' => 'string', 'value=' => 'mixed', ), - 'http\\Message::setHeaders' => + 'http\\message::setheaders' => array ( 0 => 'http\\Message', 'headers' => 'array', ), - 'http\\Message::setHttpVersion' => + 'http\\message::sethttpversion' => array ( 0 => 'http\\Message', 'http_version' => 'string', ), - 'http\\Message::setInfo' => + 'http\\message::setinfo' => array ( 0 => 'http\\Message', 'http_info' => 'string', ), - 'http\\Message::setRequestMethod' => + 'http\\message::setrequestmethod' => array ( 0 => 'http\\Message', 'request_method' => 'string', ), - 'http\\Message::setRequestUrl' => + 'http\\message::setrequesturl' => array ( 0 => 'http\\Message', 'url' => 'string', ), - 'http\\Message::setResponseCode' => + 'http\\message::setresponsecode' => array ( 0 => 'http\\Message', 'response_code' => 'int', 'strict=' => 'mixed', ), - 'http\\Message::setResponseStatus' => + 'http\\message::setresponsestatus' => array ( 0 => 'http\\Message', 'response_status' => 'string', ), - 'http\\Message::setType' => + 'http\\message::settype' => array ( 0 => 'http\\Message', 'type' => 'int', ), - 'http\\Message::splitMultipartBody' => + 'http\\message::splitmultipartbody' => array ( 0 => 'http\\Message', ), - 'http\\Message::toCallback' => + 'http\\message::tocallback' => array ( 0 => 'http\\Message', 'callback' => 'callable', ), - 'http\\Message::toStream' => + 'http\\message::tostream' => array ( 0 => 'http\\Message', 'stream' => 'resource', ), - 'http\\Message::toString' => + 'http\\message::tostring' => array ( 0 => 'string', 'include_parent=' => 'mixed', ), - 'http\\Message::unserialize' => + 'http\\message::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\Message::valid' => + 'http\\message::valid' => array ( 0 => 'bool', ), - 'http\\Message\\Body::__construct' => + 'http\\message\\body::__construct' => array ( 0 => 'void', 'stream=' => 'resource', ), - 'http\\Message\\Body::__toString' => + 'http\\message\\body::__tostring' => array ( 0 => 'string', ), - 'http\\Message\\Body::addForm' => + 'http\\message\\body::addform' => array ( 0 => 'http\\Message\\Body', 'fields=' => 'array|null', 'files=' => 'array|null', ), - 'http\\Message\\Body::addPart' => + 'http\\message\\body::addpart' => array ( 0 => 'http\\Message\\Body', 'message' => 'http\\Message', ), - 'http\\Message\\Body::append' => + 'http\\message\\body::append' => array ( 0 => 'http\\Message\\Body', 'string' => 'string', ), - 'http\\Message\\Body::etag' => + 'http\\message\\body::etag' => array ( 0 => 'false|string', ), - 'http\\Message\\Body::getBoundary' => + 'http\\message\\body::getboundary' => array ( 0 => 'null|string', ), - 'http\\Message\\Body::getResource' => + 'http\\message\\body::getresource' => array ( 0 => 'resource', ), - 'http\\Message\\Body::serialize' => + 'http\\message\\body::serialize' => array ( 0 => 'string', ), - 'http\\Message\\Body::stat' => + 'http\\message\\body::stat' => array ( 0 => 'int|object', 'field=' => 'mixed', ), - 'http\\Message\\Body::toCallback' => + 'http\\message\\body::tocallback' => array ( 0 => 'http\\Message\\Body', 'callback' => 'callable', 'offset=' => 'mixed', 'maxlen=' => 'mixed', ), - 'http\\Message\\Body::toStream' => + 'http\\message\\body::tostream' => array ( 0 => 'http\\Message\\Body', 'stream' => 'resource', 'offset=' => 'mixed', 'maxlen=' => 'mixed', ), - 'http\\Message\\Body::toString' => + 'http\\message\\body::tostring' => array ( 0 => 'string', ), - 'http\\Message\\Body::unserialize' => + 'http\\message\\body::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\Message\\Parser::getState' => + 'http\\message\\parser::getstate' => array ( 0 => 'int', ), - 'http\\Message\\Parser::parse' => + 'http\\message\\parser::parse' => array ( 0 => 'int', 'data' => 'string', 'flags' => 'int', '&message' => 'http\\Message', ), - 'http\\Message\\Parser::stream' => + 'http\\message\\parser::stream' => array ( 0 => 'int', 'stream' => 'resource', 'flags' => 'int', '&message' => 'http\\Message', ), - 'http\\Params::__construct' => + 'http\\params::__construct' => array ( 0 => 'void', 'params=' => 'mixed', @@ -58068,49 +58068,49 @@ 'val_sep=' => 'mixed', 'flags=' => 'mixed', ), - 'http\\Params::__toString' => + 'http\\params::__tostring' => array ( 0 => 'string', ), - 'http\\Params::offsetExists' => + 'http\\params::offsetexists' => array ( 0 => 'bool', 'name' => 'int|string', ), - 'http\\Params::offsetGet' => + 'http\\params::offsetget' => array ( 0 => 'mixed', 'name' => 'int|string', ), - 'http\\Params::offsetSet' => + 'http\\params::offsetset' => array ( 0 => 'void', 'name' => 'int|null|string', 'value' => 'mixed', ), - 'http\\Params::offsetUnset' => + 'http\\params::offsetunset' => array ( 0 => 'void', 'name' => 'int|string', ), - 'http\\Params::toArray' => + 'http\\params::toarray' => array ( 0 => 'array', ), - 'http\\Params::toString' => + 'http\\params::tostring' => array ( 0 => 'string', ), - 'http\\QueryString::__construct' => + 'http\\querystring::__construct' => array ( 0 => 'void', 'querystring' => 'string', ), - 'http\\QueryString::__toString' => + 'http\\querystring::__tostring' => array ( 0 => 'string', ), - 'http\\QueryString::get' => + 'http\\querystring::get' => array ( 0 => 'http\\QueryString|mixed|string', 'name=' => 'string', @@ -58118,130 +58118,130 @@ 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\QueryString::getArray' => + 'http\\querystring::getarray' => array ( 0 => 'array|mixed', 'name' => 'string', 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\QueryString::getBool' => + 'http\\querystring::getbool' => array ( 0 => 'bool|mixed', 'name' => 'string', 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\QueryString::getFloat' => + 'http\\querystring::getfloat' => array ( 0 => 'float|mixed', 'name' => 'string', 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\QueryString::getGlobalInstance' => + 'http\\querystring::getglobalinstance' => array ( 0 => 'http\\QueryString', ), - 'http\\QueryString::getInt' => + 'http\\querystring::getint' => array ( 0 => 'int|mixed', 'name' => 'string', 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\QueryString::getIterator' => + 'http\\querystring::getiterator' => array ( 0 => 'IteratorAggregate', ), - 'http\\QueryString::getObject' => + 'http\\querystring::getobject' => array ( 0 => 'mixed|object', 'name' => 'string', 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\QueryString::getString' => + 'http\\querystring::getstring' => array ( 0 => 'mixed|string', 'name' => 'string', 'defval=' => 'mixed', 'delete=' => 'bool', ), - 'http\\QueryString::mod' => + 'http\\querystring::mod' => array ( 0 => 'http\\QueryString', 'params=' => 'mixed', ), - 'http\\QueryString::offsetExists' => + 'http\\querystring::offsetexists' => array ( 0 => 'bool', 'offset' => 'int|string', ), - 'http\\QueryString::offsetGet' => + 'http\\querystring::offsetget' => array ( 0 => 'mixed|null', 'offset' => 'int|string', ), - 'http\\QueryString::offsetSet' => + 'http\\querystring::offsetset' => array ( 0 => 'void', 'offset' => 'int|null|string', 'value' => 'mixed', ), - 'http\\QueryString::offsetUnset' => + 'http\\querystring::offsetunset' => array ( 0 => 'void', 'offset' => 'int|string', ), - 'http\\QueryString::serialize' => + 'http\\querystring::serialize' => array ( 0 => 'string', ), - 'http\\QueryString::set' => + 'http\\querystring::set' => array ( 0 => 'http\\QueryString', 'params' => 'mixed', ), - 'http\\QueryString::toArray' => + 'http\\querystring::toarray' => array ( 0 => 'array', ), - 'http\\QueryString::toString' => + 'http\\querystring::tostring' => array ( 0 => 'string', ), - 'http\\QueryString::unserialize' => + 'http\\querystring::unserialize' => array ( 0 => 'void', 'serialized' => 'string', ), - 'http\\QueryString::xlate' => + 'http\\querystring::xlate' => array ( 0 => 'http\\QueryString', ), - 'http\\Url::__construct' => + 'http\\url::__construct' => array ( 0 => 'void', 'old_url=' => 'mixed', 'new_url=' => 'mixed', 'flags=' => 'int', ), - 'http\\Url::__toString' => + 'http\\url::__tostring' => array ( 0 => 'string', ), - 'http\\Url::mod' => + 'http\\url::mod' => array ( 0 => 'http\\Url', 'parts' => 'mixed', 'flags=' => 'float|int|mixed', ), - 'http\\Url::toArray' => + 'http\\url::toarray' => array ( 0 => 'array', ), - 'http\\Url::toString' => + 'http\\url::tostring' => array ( 0 => 'string', ), @@ -58540,29 +58540,29 @@ 'sec' => 'float', 'bytes=' => 'int', ), - 'hw_Array2Objrec' => + 'hw_array2objrec' => array ( 0 => 'string', 'object_array' => 'array', ), - 'hw_Children' => + 'hw_children' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_ChildrenObj' => + 'hw_childrenobj' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_Close' => + 'hw_close' => array ( 0 => 'bool', 'connection' => 'int', ), - 'hw_Connect' => + 'hw_connect' => array ( 0 => 'int', 'host' => 'string', @@ -58570,129 +58570,129 @@ 'username=' => 'string', 'password=' => 'string', ), - 'hw_Deleteobject' => + 'hw_deleteobject' => array ( 0 => 'bool', 'connection' => 'int', 'object_to_delete' => 'int', ), - 'hw_DocByAnchor' => + 'hw_docbyanchor' => array ( 0 => 'int', 'connection' => 'int', 'anchorid' => 'int', ), - 'hw_DocByAnchorObj' => + 'hw_docbyanchorobj' => array ( 0 => 'string', 'connection' => 'int', 'anchorid' => 'int', ), - 'hw_Document_Attributes' => + 'hw_document_attributes' => array ( 0 => 'string', 'hw_document' => 'int', ), - 'hw_Document_BodyTag' => + 'hw_document_bodytag' => array ( 0 => 'string', 'hw_document' => 'int', 'prefix=' => 'string', ), - 'hw_Document_Content' => + 'hw_document_content' => array ( 0 => 'string', 'hw_document' => 'int', ), - 'hw_Document_SetContent' => + 'hw_document_setcontent' => array ( 0 => 'bool', 'hw_document' => 'int', 'content' => 'string', ), - 'hw_Document_Size' => + 'hw_document_size' => array ( 0 => 'int', 'hw_document' => 'int', ), - 'hw_EditText' => + 'hw_edittext' => array ( 0 => 'bool', 'connection' => 'int', 'hw_document' => 'int', ), - 'hw_Error' => + 'hw_error' => array ( 0 => 'int', 'connection' => 'int', ), - 'hw_ErrorMsg' => + 'hw_errormsg' => array ( 0 => 'string', 'connection' => 'int', ), - 'hw_Free_Document' => + 'hw_free_document' => array ( 0 => 'bool', 'hw_document' => 'int', ), - 'hw_GetAnchors' => + 'hw_getanchors' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetAnchorsObj' => + 'hw_getanchorsobj' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetAndLock' => + 'hw_getandlock' => array ( 0 => 'string', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetChildColl' => + 'hw_getchildcoll' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetChildCollObj' => + 'hw_getchildcollobj' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetChildDocColl' => + 'hw_getchilddoccoll' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetChildDocCollObj' => + 'hw_getchilddoccollobj' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetObject' => + 'hw_getobject' => array ( 0 => 'mixed', 'connection' => 'int', 'objectid' => 'mixed', 'query=' => 'string', ), - 'hw_GetObjectByQuery' => + 'hw_getobjectbyquery' => array ( 0 => 'array', 'connection' => 'int', 'query' => 'string', 'max_hits' => 'int', ), - 'hw_GetObjectByQueryColl' => + 'hw_getobjectbyquerycoll' => array ( 0 => 'array', 'connection' => 'int', @@ -58700,7 +58700,7 @@ 'query' => 'string', 'max_hits' => 'int', ), - 'hw_GetObjectByQueryCollObj' => + 'hw_getobjectbyquerycollobj' => array ( 0 => 'array', 'connection' => 'int', @@ -58708,52 +58708,52 @@ 'query' => 'string', 'max_hits' => 'int', ), - 'hw_GetObjectByQueryObj' => + 'hw_getobjectbyqueryobj' => array ( 0 => 'array', 'connection' => 'int', 'query' => 'string', 'max_hits' => 'int', ), - 'hw_GetParents' => + 'hw_getparents' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetParentsObj' => + 'hw_getparentsobj' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetRemote' => + 'hw_getremote' => array ( 0 => 'int', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetSrcByDestObj' => + 'hw_getsrcbydestobj' => array ( 0 => 'array', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_GetText' => + 'hw_gettext' => array ( 0 => 'int', 'connection' => 'int', 'objectid' => 'int', 'prefix=' => 'mixed', ), - 'hw_Identify' => + 'hw_identify' => array ( 0 => 'string', 'link' => 'int', 'username' => 'string', 'password' => 'string', ), - 'hw_InCollections' => + 'hw_incollections' => array ( 0 => 'array', 'connection' => 'int', @@ -58761,19 +58761,19 @@ 'collection_id_array' => 'array', 'return_collections' => 'int', ), - 'hw_Info' => + 'hw_info' => array ( 0 => 'string', 'connection' => 'int', ), - 'hw_InsColl' => + 'hw_inscoll' => array ( 0 => 'int', 'connection' => 'int', 'objectid' => 'int', 'object_array' => 'array', ), - 'hw_InsDoc' => + 'hw_insdoc' => array ( 0 => 'int', 'connection' => 'mixed', @@ -58781,21 +58781,21 @@ 'object_record' => 'string', 'text=' => 'string', ), - 'hw_InsertDocument' => + 'hw_insertdocument' => array ( 0 => 'int', 'connection' => 'int', 'parent_id' => 'int', 'hw_document' => 'int', ), - 'hw_InsertObject' => + 'hw_insertobject' => array ( 0 => 'int', 'connection' => 'int', 'object_rec' => 'string', 'parameter' => 'string', ), - 'hw_Modifyobject' => + 'hw_modifyobject' => array ( 0 => 'bool', 'connection' => 'int', @@ -58804,36 +58804,36 @@ 'add' => 'array', 'mode=' => 'int', ), - 'hw_New_Document' => + 'hw_new_document' => array ( 0 => 'int', 'object_record' => 'string', 'document_data' => 'string', 'document_size' => 'int', ), - 'hw_Output_Document' => + 'hw_output_document' => array ( 0 => 'bool', 'hw_document' => 'int', ), - 'hw_PipeDocument' => + 'hw_pipedocument' => array ( 0 => 'int', 'connection' => 'int', 'objectid' => 'int', 'url_prefixes=' => 'array', ), - 'hw_Root' => + 'hw_root' => array ( 0 => 'int', ), - 'hw_Unlock' => + 'hw_unlock' => array ( 0 => 'bool', 'connection' => 'int', 'objectid' => 'int', ), - 'hw_Who' => + 'hw_who' => array ( 0 => 'array', 'connection' => 'int', @@ -59167,7 +59167,7 @@ 'object_record' => 'string', 'format=' => 'array', ), - 'hw_pConnect' => + 'hw_pconnect' => array ( 0 => 'int', 'host' => 'string', @@ -60040,7 +60040,7 @@ 'filename=' => 'null|string', 'threshold=' => 'int', ), - 'imageObj::pasteImage' => + 'imageobj::pasteimage' => array ( 0 => 'void', 'srcImg' => 'imageObj', @@ -60049,13 +60049,13 @@ 'dstY' => 'int', 'angle' => 'int', ), - 'imageObj::saveImage' => + 'imageobj::saveimage' => array ( 0 => 'int', 'filename' => 'string', 'oMap' => 'mapObj', ), - 'imageObj::saveWebImage' => + 'imageobj::savewebimage' => array ( 0 => 'string', ), @@ -61940,7 +61940,7 @@ 0 => 'IntlTimeZone|null', 'timezone' => 'DateTimeZone', ), - 'intltz_getGMT' => + 'intltz_getgmt' => array ( 0 => 'IntlTimeZone', ), @@ -62453,194 +62453,194 @@ '&rw_array' => 'array', 'flags=' => 'int', ), - 'labelObj::__construct' => + 'labelobj::__construct' => array ( 0 => 'void', ), - 'labelObj::convertToString' => + 'labelobj::converttostring' => array ( 0 => 'string', ), - 'labelObj::deleteStyle' => + 'labelobj::deletestyle' => array ( 0 => 'int', 'index' => 'int', ), - 'labelObj::free' => + 'labelobj::free' => array ( 0 => 'void', ), - 'labelObj::getBinding' => + 'labelobj::getbinding' => array ( 0 => 'string', 'labelbinding' => 'mixed', ), - 'labelObj::getExpressionString' => + 'labelobj::getexpressionstring' => array ( 0 => 'string', ), - 'labelObj::getStyle' => + 'labelobj::getstyle' => array ( 0 => 'styleObj', 'index' => 'int', ), - 'labelObj::getTextString' => + 'labelobj::gettextstring' => array ( 0 => 'string', ), - 'labelObj::moveStyleDown' => + 'labelobj::movestyledown' => array ( 0 => 'int', 'index' => 'int', ), - 'labelObj::moveStyleUp' => + 'labelobj::movestyleup' => array ( 0 => 'int', 'index' => 'int', ), - 'labelObj::removeBinding' => + 'labelobj::removebinding' => array ( 0 => 'int', 'labelbinding' => 'mixed', ), - 'labelObj::set' => + 'labelobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'labelObj::setBinding' => + 'labelobj::setbinding' => array ( 0 => 'int', 'labelbinding' => 'mixed', 'value' => 'string', ), - 'labelObj::setExpression' => + 'labelobj::setexpression' => array ( 0 => 'int', 'expression' => 'string', ), - 'labelObj::setText' => + 'labelobj::settext' => array ( 0 => 'int', 'text' => 'string', ), - 'labelObj::updateFromString' => + 'labelobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', ), - 'labelcacheObj::freeCache' => + 'labelcacheobj::freecache' => array ( 0 => 'bool', ), - 'layerObj::addFeature' => + 'layerobj::addfeature' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'layerObj::applySLD' => + 'layerobj::applysld' => array ( 0 => 'int', 'sldxml' => 'string', 'namedlayer' => 'string', ), - 'layerObj::applySLDURL' => + 'layerobj::applysldurl' => array ( 0 => 'int', 'sldurl' => 'string', 'namedlayer' => 'string', ), - 'layerObj::clearProcessing' => + 'layerobj::clearprocessing' => array ( 0 => 'void', ), - 'layerObj::close' => + 'layerobj::close' => array ( 0 => 'void', ), - 'layerObj::convertToString' => + 'layerobj::converttostring' => array ( 0 => 'string', ), - 'layerObj::draw' => + 'layerobj::draw' => array ( 0 => 'int', 'image' => 'imageObj', ), - 'layerObj::drawQuery' => + 'layerobj::drawquery' => array ( 0 => 'int', 'image' => 'imageObj', ), - 'layerObj::free' => + 'layerobj::free' => array ( 0 => 'void', ), - 'layerObj::generateSLD' => + 'layerobj::generatesld' => array ( 0 => 'string', ), - 'layerObj::getClass' => + 'layerobj::getclass' => array ( 0 => 'classObj', 'classIndex' => 'int', ), - 'layerObj::getClassIndex' => + 'layerobj::getclassindex' => array ( 0 => 'int', 'shape' => 'mixed', 'classgroup' => 'mixed', 'numclasses' => 'mixed', ), - 'layerObj::getExtent' => + 'layerobj::getextent' => array ( 0 => 'rectObj', ), - 'layerObj::getFilterString' => + 'layerobj::getfilterstring' => array ( 0 => 'null|string', ), - 'layerObj::getGridIntersectionCoordinates' => + 'layerobj::getgridintersectioncoordinates' => array ( 0 => 'array', ), - 'layerObj::getItems' => + 'layerobj::getitems' => array ( 0 => 'array', ), - 'layerObj::getMetaData' => + 'layerobj::getmetadata' => array ( 0 => 'int', 'name' => 'string', ), - 'layerObj::getNumResults' => + 'layerobj::getnumresults' => array ( 0 => 'int', ), - 'layerObj::getProcessing' => + 'layerobj::getprocessing' => array ( 0 => 'array', ), - 'layerObj::getProjection' => + 'layerobj::getprojection' => array ( 0 => 'string', ), - 'layerObj::getResult' => + 'layerobj::getresult' => array ( 0 => 'resultObj', 'index' => 'int', ), - 'layerObj::getResultsBounds' => + 'layerobj::getresultsbounds' => array ( 0 => 'rectObj', ), - 'layerObj::getShape' => + 'layerobj::getshape' => array ( 0 => 'shapeObj', 'result' => 'resultObj', ), - 'layerObj::getWMSFeatureInfoURL' => + 'layerobj::getwmsfeatureinfourl' => array ( 0 => 'string', 'clickX' => 'int', @@ -62648,107 +62648,107 @@ 'featureCount' => 'int', 'infoFormat' => 'string', ), - 'layerObj::isVisible' => + 'layerobj::isvisible' => array ( 0 => 'bool', ), - 'layerObj::moveclassdown' => + 'layerobj::moveclassdown' => array ( 0 => 'int', 'index' => 'int', ), - 'layerObj::moveclassup' => + 'layerobj::moveclassup' => array ( 0 => 'int', 'index' => 'int', ), - 'layerObj::ms_newLayerObj' => + 'layerobj::ms_newlayerobj' => array ( 0 => 'layerObj', 'map' => 'mapObj', 'layer' => 'layerObj', ), - 'layerObj::nextShape' => + 'layerobj::nextshape' => array ( 0 => 'shapeObj', ), - 'layerObj::open' => + 'layerobj::open' => array ( 0 => 'int', ), - 'layerObj::queryByAttributes' => + 'layerobj::querybyattributes' => array ( 0 => 'int', 'qitem' => 'string', 'qstring' => 'string', 'mode' => 'int', ), - 'layerObj::queryByFeatures' => + 'layerobj::querybyfeatures' => array ( 0 => 'int', 'slayer' => 'int', ), - 'layerObj::queryByPoint' => + 'layerobj::querybypoint' => array ( 0 => 'int', 'point' => 'pointObj', 'mode' => 'int', 'buffer' => 'float', ), - 'layerObj::queryByRect' => + 'layerobj::querybyrect' => array ( 0 => 'int', 'rect' => 'rectObj', ), - 'layerObj::queryByShape' => + 'layerobj::querybyshape' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'layerObj::removeClass' => + 'layerobj::removeclass' => array ( 0 => 'classObj|null', 'index' => 'int', ), - 'layerObj::removeMetaData' => + 'layerobj::removemetadata' => array ( 0 => 'int', 'name' => 'string', ), - 'layerObj::set' => + 'layerobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'layerObj::setConnectionType' => + 'layerobj::setconnectiontype' => array ( 0 => 'int', 'connectiontype' => 'int', 'plugin_library' => 'string', ), - 'layerObj::setFilter' => + 'layerobj::setfilter' => array ( 0 => 'int', 'expression' => 'string', ), - 'layerObj::setMetaData' => + 'layerobj::setmetadata' => array ( 0 => 'int', 'name' => 'string', 'value' => 'string', ), - 'layerObj::setProjection' => + 'layerobj::setprojection' => array ( 0 => 'int', 'proj_params' => 'string', ), - 'layerObj::setWKTProjection' => + 'layerobj::setwktprojection' => array ( 0 => 'int', 'proj_params' => 'string', ), - 'layerObj::updateFromString' => + 'layerobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', @@ -63170,21 +63170,21 @@ 'variable' => 'mixed', 'leak_data' => 'bool', ), - 'legendObj::convertToString' => + 'legendobj::converttostring' => array ( 0 => 'string', ), - 'legendObj::free' => + 'legendobj::free' => array ( 0 => 'void', ), - 'legendObj::set' => + 'legendobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'legendObj::updateFromString' => + 'legendobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', @@ -63236,23 +63236,23 @@ 0 => 'bool', 'use_errors=' => 'bool', ), - 'lineObj::__construct' => + 'lineobj::__construct' => array ( 0 => 'void', ), - 'lineObj::add' => + 'lineobj::add' => array ( 0 => 'int', 'point' => 'pointObj', ), - 'lineObj::addXY' => + 'lineobj::addxy' => array ( 0 => 'int', 'x' => 'float', 'y' => 'float', 'm' => 'float', ), - 'lineObj::addXYZ' => + 'lineobj::addxyz' => array ( 0 => 'int', 'x' => 'float', @@ -63260,16 +63260,16 @@ 'z' => 'float', 'm' => 'float', ), - 'lineObj::ms_newLineObj' => + 'lineobj::ms_newlineobj' => array ( 0 => 'lineObj', ), - 'lineObj::point' => + 'lineobj::point' => array ( 0 => 'pointObj', 'i' => 'int', ), - 'lineObj::project' => + 'lineobj::project' => array ( 0 => 'int', 'in' => 'projectionObj', @@ -63542,218 +63542,218 @@ 0 => 'array', 'fp' => 'resource', ), - 'mapObj::__construct' => + 'mapobj::__construct' => array ( 0 => 'void', 'map_file_name' => 'string', 'new_map_path' => 'string', ), - 'mapObj::appendOutputFormat' => + 'mapobj::appendoutputformat' => array ( 0 => 'int', 'outputFormat' => 'outputformatObj', ), - 'mapObj::applySLD' => + 'mapobj::applysld' => array ( 0 => 'int', 'sldxml' => 'string', ), - 'mapObj::applySLDURL' => + 'mapobj::applysldurl' => array ( 0 => 'int', 'sldurl' => 'string', ), - 'mapObj::applyconfigoptions' => + 'mapobj::applyconfigoptions' => array ( 0 => 'int', ), - 'mapObj::convertToString' => + 'mapobj::converttostring' => array ( 0 => 'string', ), - 'mapObj::draw' => + 'mapobj::draw' => array ( 0 => 'imageObj|null', ), - 'mapObj::drawLabelCache' => + 'mapobj::drawlabelcache' => array ( 0 => 'int', 'image' => 'imageObj', ), - 'mapObj::drawLegend' => + 'mapobj::drawlegend' => array ( 0 => 'imageObj', ), - 'mapObj::drawQuery' => + 'mapobj::drawquery' => array ( 0 => 'imageObj|null', ), - 'mapObj::drawReferenceMap' => + 'mapobj::drawreferencemap' => array ( 0 => 'imageObj', ), - 'mapObj::drawScaleBar' => + 'mapobj::drawscalebar' => array ( 0 => 'imageObj', ), - 'mapObj::embedLegend' => + 'mapobj::embedlegend' => array ( 0 => 'int', 'image' => 'imageObj', ), - 'mapObj::embedScalebar' => + 'mapobj::embedscalebar' => array ( 0 => 'int', 'image' => 'imageObj', ), - 'mapObj::free' => + 'mapobj::free' => array ( 0 => 'void', ), - 'mapObj::generateSLD' => + 'mapobj::generatesld' => array ( 0 => 'string', ), - 'mapObj::getAllGroupNames' => + 'mapobj::getallgroupnames' => array ( 0 => 'array', ), - 'mapObj::getAllLayerNames' => + 'mapobj::getalllayernames' => array ( 0 => 'array', ), - 'mapObj::getColorbyIndex' => + 'mapobj::getcolorbyindex' => array ( 0 => 'colorObj', 'iCloIndex' => 'int', ), - 'mapObj::getConfigOption' => + 'mapobj::getconfigoption' => array ( 0 => 'string', 'key' => 'string', ), - 'mapObj::getLabel' => + 'mapobj::getlabel' => array ( 0 => 'labelcacheMemberObj', 'index' => 'int', ), - 'mapObj::getLayer' => + 'mapobj::getlayer' => array ( 0 => 'layerObj', 'index' => 'int', ), - 'mapObj::getLayerByName' => + 'mapobj::getlayerbyname' => array ( 0 => 'layerObj', 'layer_name' => 'string', ), - 'mapObj::getLayersDrawingOrder' => + 'mapobj::getlayersdrawingorder' => array ( 0 => 'array', ), - 'mapObj::getLayersIndexByGroup' => + 'mapobj::getlayersindexbygroup' => array ( 0 => 'array', 'groupname' => 'string', ), - 'mapObj::getMetaData' => + 'mapobj::getmetadata' => array ( 0 => 'int', 'name' => 'string', ), - 'mapObj::getNumSymbols' => + 'mapobj::getnumsymbols' => array ( 0 => 'int', ), - 'mapObj::getOutputFormat' => + 'mapobj::getoutputformat' => array ( 0 => 'null|outputformatObj', 'index' => 'int', ), - 'mapObj::getProjection' => + 'mapobj::getprojection' => array ( 0 => 'string', ), - 'mapObj::getSymbolByName' => + 'mapobj::getsymbolbyname' => array ( 0 => 'int', 'symbol_name' => 'string', ), - 'mapObj::getSymbolObjectById' => + 'mapobj::getsymbolobjectbyid' => array ( 0 => 'symbolObj', 'symbolid' => 'int', ), - 'mapObj::loadMapContext' => + 'mapobj::loadmapcontext' => array ( 0 => 'int', 'filename' => 'string', 'unique_layer_name' => 'bool', ), - 'mapObj::loadOWSParameters' => + 'mapobj::loadowsparameters' => array ( 0 => 'int', 'request' => 'OwsrequestObj', 'version' => 'string', ), - 'mapObj::moveLayerDown' => + 'mapobj::movelayerdown' => array ( 0 => 'int', 'layerindex' => 'int', ), - 'mapObj::moveLayerUp' => + 'mapobj::movelayerup' => array ( 0 => 'int', 'layerindex' => 'int', ), - 'mapObj::ms_newMapObjFromString' => + 'mapobj::ms_newmapobjfromstring' => array ( 0 => 'mapObj', 'map_file_string' => 'string', 'new_map_path' => 'string', ), - 'mapObj::offsetExtent' => + 'mapobj::offsetextent' => array ( 0 => 'int', 'x' => 'float', 'y' => 'float', ), - 'mapObj::owsDispatch' => + 'mapobj::owsdispatch' => array ( 0 => 'int', 'request' => 'OwsrequestObj', ), - 'mapObj::prepareImage' => + 'mapobj::prepareimage' => array ( 0 => 'imageObj', ), - 'mapObj::prepareQuery' => + 'mapobj::preparequery' => array ( 0 => 'void', ), - 'mapObj::processLegendTemplate' => + 'mapobj::processlegendtemplate' => array ( 0 => 'string', 'params' => 'array', ), - 'mapObj::processQueryTemplate' => + 'mapobj::processquerytemplate' => array ( 0 => 'string', 'params' => 'array', 'generateimages' => 'bool', ), - 'mapObj::processTemplate' => + 'mapobj::processtemplate' => array ( 0 => 'string', 'params' => 'array', 'generateimages' => 'bool', ), - 'mapObj::queryByFeatures' => + 'mapobj::querybyfeatures' => array ( 0 => 'int', 'slayer' => 'int', ), - 'mapObj::queryByIndex' => + 'mapobj::querybyindex' => array ( 0 => 'int', 'layerindex' => 'mixed', @@ -63761,84 +63761,84 @@ 'shapeindex' => 'mixed', 'addtoquery' => 'mixed', ), - 'mapObj::queryByPoint' => + 'mapobj::querybypoint' => array ( 0 => 'int', 'point' => 'pointObj', 'mode' => 'int', 'buffer' => 'float', ), - 'mapObj::queryByRect' => + 'mapobj::querybyrect' => array ( 0 => 'int', 'rect' => 'rectObj', ), - 'mapObj::queryByShape' => + 'mapobj::querybyshape' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'mapObj::removeLayer' => + 'mapobj::removelayer' => array ( 0 => 'layerObj', 'nIndex' => 'int', ), - 'mapObj::removeMetaData' => + 'mapobj::removemetadata' => array ( 0 => 'int', 'name' => 'string', ), - 'mapObj::removeOutputFormat' => + 'mapobj::removeoutputformat' => array ( 0 => 'int', 'name' => 'string', ), - 'mapObj::save' => + 'mapobj::save' => array ( 0 => 'int', 'filename' => 'string', ), - 'mapObj::saveMapContext' => + 'mapobj::savemapcontext' => array ( 0 => 'int', 'filename' => 'string', ), - 'mapObj::saveQuery' => + 'mapobj::savequery' => array ( 0 => 'int', 'filename' => 'string', 'results' => 'int', ), - 'mapObj::scaleExtent' => + 'mapobj::scaleextent' => array ( 0 => 'int', 'zoomfactor' => 'float', 'minscaledenom' => 'float', 'maxscaledenom' => 'float', ), - 'mapObj::selectOutputFormat' => + 'mapobj::selectoutputformat' => array ( 0 => 'int', 'type' => 'string', ), - 'mapObj::set' => + 'mapobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'mapObj::setCenter' => + 'mapobj::setcenter' => array ( 0 => 'int', 'center' => 'pointObj', ), - 'mapObj::setConfigOption' => + 'mapobj::setconfigoption' => array ( 0 => 'int', 'key' => 'string', 'value' => 'string', ), - 'mapObj::setExtent' => + 'mapobj::setextent' => array ( 0 => 'void', 'minx' => 'float', @@ -63846,46 +63846,46 @@ 'maxx' => 'float', 'maxy' => 'float', ), - 'mapObj::setFontSet' => + 'mapobj::setfontset' => array ( 0 => 'int', 'fileName' => 'string', ), - 'mapObj::setMetaData' => + 'mapobj::setmetadata' => array ( 0 => 'int', 'name' => 'string', 'value' => 'string', ), - 'mapObj::setProjection' => + 'mapobj::setprojection' => array ( 0 => 'int', 'proj_params' => 'string', 'bSetUnitsAndExtents' => 'bool', ), - 'mapObj::setRotation' => + 'mapobj::setrotation' => array ( 0 => 'int', 'rotation_angle' => 'float', ), - 'mapObj::setSize' => + 'mapobj::setsize' => array ( 0 => 'int', 'width' => 'int', 'height' => 'int', ), - 'mapObj::setSymbolSet' => + 'mapobj::setsymbolset' => array ( 0 => 'int', 'fileName' => 'string', ), - 'mapObj::setWKTProjection' => + 'mapobj::setwktprojection' => array ( 0 => 'int', 'proj_params' => 'string', 'bSetUnitsAndExtents' => 'bool', ), - 'mapObj::zoomPoint' => + 'mapobj::zoompoint' => array ( 0 => 'int', 'nZoomFactor' => 'int', @@ -63894,7 +63894,7 @@ 'nImageHeight' => 'int', 'oGeorefExt' => 'rectObj', ), - 'mapObj::zoomRectangle' => + 'mapobj::zoomrectangle' => array ( 0 => 'int', 'oPixelExt' => 'rectObj', @@ -63902,7 +63902,7 @@ 'nImageHeight' => 'int', 'oGeorefExt' => 'rectObj', ), - 'mapObj::zoomScale' => + 'mapobj::zoomscale' => array ( 0 => 'int', 'nScaleDenom' => 'float', @@ -64998,28 +64998,28 @@ 0 => 'string', 'reason' => 'int', ), - 'ms_GetErrorObj' => + 'ms_geterrorobj' => array ( 0 => 'errorObj', ), - 'ms_GetVersion' => + 'ms_getversion' => array ( 0 => 'string', ), - 'ms_GetVersionInt' => + 'ms_getversionint' => array ( 0 => 'int', ), - 'ms_ResetErrorList' => + 'ms_reseterrorlist' => array ( 0 => 'void', ), - 'ms_TokenizeMap' => + 'ms_tokenizemap' => array ( 0 => 'array', 'map_file_name' => 'string', ), - 'ms_iogetStdoutBufferBytes' => + 'ms_iogetstdoutbufferbytes' => array ( 0 => 'int', ), @@ -65452,11 +65452,11 @@ 'seed=' => 'int', 'mode=' => 'int', ), - 'mysql_xdevapi\\baseresult::getWarnings' => + 'mysql_xdevapi\\baseresult::getwarnings' => array ( 0 => 'array', ), - 'mysql_xdevapi\\baseresult::getWarningsCount' => + 'mysql_xdevapi\\baseresult::getwarningscount' => array ( 0 => 'int', ), @@ -65465,7 +65465,7 @@ 0 => 'mysql_xdevapi\\CollectionAdd', 'document' => 'mixed', ), - 'mysql_xdevapi\\collection::addOrReplaceOne' => + 'mysql_xdevapi\\collection::addorreplaceone' => array ( 0 => 'mysql_xdevapi\\Result', 'id' => 'string', @@ -65475,18 +65475,18 @@ array ( 0 => 'int', ), - 'mysql_xdevapi\\collection::createIndex' => + 'mysql_xdevapi\\collection::createindex' => array ( 0 => 'void', 'index_name' => 'string', 'index_desc_json' => 'string', ), - 'mysql_xdevapi\\collection::dropIndex' => + 'mysql_xdevapi\\collection::dropindex' => array ( 0 => 'bool', 'index_name' => 'string', ), - 'mysql_xdevapi\\collection::existsInDatabase' => + 'mysql_xdevapi\\collection::existsindatabase' => array ( 0 => 'bool', ), @@ -65495,20 +65495,20 @@ 0 => 'mysql_xdevapi\\CollectionFind', 'search_condition=' => 'string', ), - 'mysql_xdevapi\\collection::getName' => + 'mysql_xdevapi\\collection::getname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\collection::getOne' => + 'mysql_xdevapi\\collection::getone' => array ( 0 => 'Document', 'id' => 'string', ), - 'mysql_xdevapi\\collection::getSchema' => + 'mysql_xdevapi\\collection::getschema' => array ( 0 => 'mysql_xdevapi\\schema', ), - 'mysql_xdevapi\\collection::getSession' => + 'mysql_xdevapi\\collection::getsession' => array ( 0 => 'Session', ), @@ -65522,12 +65522,12 @@ 0 => 'mysql_xdevapi\\CollectionRemove', 'search_condition' => 'string', ), - 'mysql_xdevapi\\collection::removeOne' => + 'mysql_xdevapi\\collection::removeone' => array ( 0 => 'mysql_xdevapi\\Result', 'id' => 'string', ), - 'mysql_xdevapi\\collection::replaceOne' => + 'mysql_xdevapi\\collection::replaceone' => array ( 0 => 'mysql_xdevapi\\Result', 'id' => 'string', @@ -65551,7 +65551,7 @@ 0 => 'mysql_xdevapi\\CollectionFind', 'projection' => 'string', ), - 'mysql_xdevapi\\collectionfind::groupBy' => + 'mysql_xdevapi\\collectionfind::groupby' => array ( 0 => 'mysql_xdevapi\\CollectionFind', 'sort_expr' => 'string', @@ -65566,12 +65566,12 @@ 0 => 'mysql_xdevapi\\CollectionFind', 'rows' => 'int', ), - 'mysql_xdevapi\\collectionfind::lockExclusive' => + 'mysql_xdevapi\\collectionfind::lockexclusive' => array ( 0 => 'mysql_xdevapi\\CollectionFind', 'lock_waiting_option=' => 'int', ), - 'mysql_xdevapi\\collectionfind::lockShared' => + 'mysql_xdevapi\\collectionfind::lockshared' => array ( 0 => 'mysql_xdevapi\\CollectionFind', 'lock_waiting_option=' => 'int', @@ -65586,13 +65586,13 @@ 0 => 'mysql_xdevapi\\CollectionFind', 'sort_expr' => 'string', ), - 'mysql_xdevapi\\collectionmodify::arrayAppend' => + 'mysql_xdevapi\\collectionmodify::arrayappend' => array ( 0 => 'mysql_xdevapi\\CollectionModify', 'collection_field' => 'string', 'expression_or_literal' => 'string', ), - 'mysql_xdevapi\\collectionmodify::arrayInsert' => + 'mysql_xdevapi\\collectionmodify::arrayinsert' => array ( 0 => 'mysql_xdevapi\\CollectionModify', 'collection_field' => 'string', @@ -65663,51 +65663,51 @@ 0 => 'mysql_xdevapi\\CollectionRemove', 'sort_expr' => 'string', ), - 'mysql_xdevapi\\columnresult::getCharacterSetName' => + 'mysql_xdevapi\\columnresult::getcharactersetname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\columnresult::getCollationName' => + 'mysql_xdevapi\\columnresult::getcollationname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\columnresult::getColumnLabel' => + 'mysql_xdevapi\\columnresult::getcolumnlabel' => array ( 0 => 'string', ), - 'mysql_xdevapi\\columnresult::getColumnName' => + 'mysql_xdevapi\\columnresult::getcolumnname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\columnresult::getFractionalDigits' => + 'mysql_xdevapi\\columnresult::getfractionaldigits' => array ( 0 => 'int', ), - 'mysql_xdevapi\\columnresult::getLength' => + 'mysql_xdevapi\\columnresult::getlength' => array ( 0 => 'int', ), - 'mysql_xdevapi\\columnresult::getSchemaName' => + 'mysql_xdevapi\\columnresult::getschemaname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\columnresult::getTableLabel' => + 'mysql_xdevapi\\columnresult::gettablelabel' => array ( 0 => 'string', ), - 'mysql_xdevapi\\columnresult::getTableName' => + 'mysql_xdevapi\\columnresult::gettablename' => array ( 0 => 'string', ), - 'mysql_xdevapi\\columnresult::getType' => + 'mysql_xdevapi\\columnresult::gettype' => array ( 0 => 'int', ), - 'mysql_xdevapi\\columnresult::isNumberSigned' => + 'mysql_xdevapi\\columnresult::isnumbersigned' => array ( 0 => 'int', ), - 'mysql_xdevapi\\columnresult::isPadded' => + 'mysql_xdevapi\\columnresult::ispadded' => array ( 0 => 'int', ), @@ -65731,31 +65731,31 @@ 0 => 'mysql_xdevapi\\CrudOperationSortable', 'sort_expr' => 'string', ), - 'mysql_xdevapi\\databaseobject::existsInDatabase' => + 'mysql_xdevapi\\databaseobject::existsindatabase' => array ( 0 => 'bool', ), - 'mysql_xdevapi\\databaseobject::getName' => + 'mysql_xdevapi\\databaseobject::getname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\databaseobject::getSession' => + 'mysql_xdevapi\\databaseobject::getsession' => array ( 0 => 'mysql_xdevapi\\Session', ), - 'mysql_xdevapi\\docresult::fetchAll' => + 'mysql_xdevapi\\docresult::fetchall' => array ( 0 => 'array', ), - 'mysql_xdevapi\\docresult::fetchOne' => + 'mysql_xdevapi\\docresult::fetchone' => array ( 0 => 'object', ), - 'mysql_xdevapi\\docresult::getWarnings' => + 'mysql_xdevapi\\docresult::getwarnings' => array ( 0 => 'array', ), - 'mysql_xdevapi\\docresult::getWarningsCount' => + 'mysql_xdevapi\\docresult::getwarningscount' => array ( 0 => 'int', ), @@ -65768,96 +65768,96 @@ 0 => 'mysql_xdevapi\\Session', 'uri' => 'string', ), - 'mysql_xdevapi\\result::getAutoIncrementValue' => + 'mysql_xdevapi\\result::getautoincrementvalue' => array ( 0 => 'int', ), - 'mysql_xdevapi\\result::getGeneratedIds' => + 'mysql_xdevapi\\result::getgeneratedids' => array ( 0 => 'ArrayOfInt', ), - 'mysql_xdevapi\\result::getWarnings' => + 'mysql_xdevapi\\result::getwarnings' => array ( 0 => 'array', ), - 'mysql_xdevapi\\result::getWarningsCount' => + 'mysql_xdevapi\\result::getwarningscount' => array ( 0 => 'int', ), - 'mysql_xdevapi\\rowresult::fetchAll' => + 'mysql_xdevapi\\rowresult::fetchall' => array ( 0 => 'array', ), - 'mysql_xdevapi\\rowresult::fetchOne' => + 'mysql_xdevapi\\rowresult::fetchone' => array ( 0 => 'object', ), - 'mysql_xdevapi\\rowresult::getColumnCount' => + 'mysql_xdevapi\\rowresult::getcolumncount' => array ( 0 => 'int', ), - 'mysql_xdevapi\\rowresult::getColumnNames' => + 'mysql_xdevapi\\rowresult::getcolumnnames' => array ( 0 => 'array', ), - 'mysql_xdevapi\\rowresult::getColumns' => + 'mysql_xdevapi\\rowresult::getcolumns' => array ( 0 => 'array', ), - 'mysql_xdevapi\\rowresult::getWarnings' => + 'mysql_xdevapi\\rowresult::getwarnings' => array ( 0 => 'array', ), - 'mysql_xdevapi\\rowresult::getWarningsCount' => + 'mysql_xdevapi\\rowresult::getwarningscount' => array ( 0 => 'int', ), - 'mysql_xdevapi\\schema::createCollection' => + 'mysql_xdevapi\\schema::createcollection' => array ( 0 => 'mysql_xdevapi\\Collection', 'name' => 'string', ), - 'mysql_xdevapi\\schema::dropCollection' => + 'mysql_xdevapi\\schema::dropcollection' => array ( 0 => 'bool', 'collection_name' => 'string', ), - 'mysql_xdevapi\\schema::existsInDatabase' => + 'mysql_xdevapi\\schema::existsindatabase' => array ( 0 => 'bool', ), - 'mysql_xdevapi\\schema::getCollection' => + 'mysql_xdevapi\\schema::getcollection' => array ( 0 => 'mysql_xdevapi\\Collection', 'name' => 'string', ), - 'mysql_xdevapi\\schema::getCollectionAsTable' => + 'mysql_xdevapi\\schema::getcollectionastable' => array ( 0 => 'mysql_xdevapi\\Table', 'name' => 'string', ), - 'mysql_xdevapi\\schema::getCollections' => + 'mysql_xdevapi\\schema::getcollections' => array ( 0 => 'array', ), - 'mysql_xdevapi\\schema::getName' => + 'mysql_xdevapi\\schema::getname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\schema::getSession' => + 'mysql_xdevapi\\schema::getsession' => array ( 0 => 'mysql_xdevapi\\Session', ), - 'mysql_xdevapi\\schema::getTable' => + 'mysql_xdevapi\\schema::gettable' => array ( 0 => 'mysql_xdevapi\\Table', 'name' => 'string', ), - 'mysql_xdevapi\\schema::getTables' => + 'mysql_xdevapi\\schema::gettables' => array ( 0 => 'array', ), - 'mysql_xdevapi\\schemaobject::getSchema' => + 'mysql_xdevapi\\schemaobject::getschema' => array ( 0 => 'mysql_xdevapi\\Schema', ), @@ -65869,57 +65869,57 @@ array ( 0 => 'object', ), - 'mysql_xdevapi\\session::createSchema' => + 'mysql_xdevapi\\session::createschema' => array ( 0 => 'mysql_xdevapi\\Schema', 'schema_name' => 'string', ), - 'mysql_xdevapi\\session::dropSchema' => + 'mysql_xdevapi\\session::dropschema' => array ( 0 => 'bool', 'schema_name' => 'string', ), - 'mysql_xdevapi\\session::executeSql' => + 'mysql_xdevapi\\session::executesql' => array ( 0 => 'object', 'statement' => 'string', ), - 'mysql_xdevapi\\session::generateUUID' => + 'mysql_xdevapi\\session::generateuuid' => array ( 0 => 'string', ), - 'mysql_xdevapi\\session::getClientId' => + 'mysql_xdevapi\\session::getclientid' => array ( 0 => 'int', ), - 'mysql_xdevapi\\session::getSchema' => + 'mysql_xdevapi\\session::getschema' => array ( 0 => 'mysql_xdevapi\\Schema', 'schema_name' => 'string', ), - 'mysql_xdevapi\\session::getSchemas' => + 'mysql_xdevapi\\session::getschemas' => array ( 0 => 'array', ), - 'mysql_xdevapi\\session::getServerVersion' => + 'mysql_xdevapi\\session::getserverversion' => array ( 0 => 'int', ), - 'mysql_xdevapi\\session::killClient' => + 'mysql_xdevapi\\session::killclient' => array ( 0 => 'object', 'client_id' => 'int', ), - 'mysql_xdevapi\\session::listClients' => + 'mysql_xdevapi\\session::listclients' => array ( 0 => 'array', ), - 'mysql_xdevapi\\session::quoteName' => + 'mysql_xdevapi\\session::quotename' => array ( 0 => 'string', 'name' => 'string', ), - 'mysql_xdevapi\\session::releaseSavepoint' => + 'mysql_xdevapi\\session::releasesavepoint' => array ( 0 => 'void', 'name' => 'string', @@ -65928,12 +65928,12 @@ array ( 0 => 'void', ), - 'mysql_xdevapi\\session::rollbackTo' => + 'mysql_xdevapi\\session::rollbackto' => array ( 0 => 'void', 'name' => 'string', ), - 'mysql_xdevapi\\session::setSavepoint' => + 'mysql_xdevapi\\session::setsavepoint' => array ( 0 => 'string', 'name=' => 'string', @@ -65943,7 +65943,7 @@ 0 => 'mysql_xdevapi\\SqlStatement', 'query' => 'string', ), - 'mysql_xdevapi\\session::startTransaction' => + 'mysql_xdevapi\\session::starttransaction' => array ( 0 => 'void', ), @@ -65956,75 +65956,75 @@ array ( 0 => 'mysql_xdevapi\\Result', ), - 'mysql_xdevapi\\sqlstatement::getNextResult' => + 'mysql_xdevapi\\sqlstatement::getnextresult' => array ( 0 => 'mysql_xdevapi\\Result', ), - 'mysql_xdevapi\\sqlstatement::getResult' => + 'mysql_xdevapi\\sqlstatement::getresult' => array ( 0 => 'mysql_xdevapi\\Result', ), - 'mysql_xdevapi\\sqlstatement::hasMoreResults' => + 'mysql_xdevapi\\sqlstatement::hasmoreresults' => array ( 0 => 'bool', ), - 'mysql_xdevapi\\sqlstatementresult::fetchAll' => + 'mysql_xdevapi\\sqlstatementresult::fetchall' => array ( 0 => 'array', ), - 'mysql_xdevapi\\sqlstatementresult::fetchOne' => + 'mysql_xdevapi\\sqlstatementresult::fetchone' => array ( 0 => 'object', ), - 'mysql_xdevapi\\sqlstatementresult::getAffectedItemsCount' => + 'mysql_xdevapi\\sqlstatementresult::getaffecteditemscount' => array ( 0 => 'int', ), - 'mysql_xdevapi\\sqlstatementresult::getColumnCount' => + 'mysql_xdevapi\\sqlstatementresult::getcolumncount' => array ( 0 => 'int', ), - 'mysql_xdevapi\\sqlstatementresult::getColumnNames' => + 'mysql_xdevapi\\sqlstatementresult::getcolumnnames' => array ( 0 => 'array', ), - 'mysql_xdevapi\\sqlstatementresult::getColumns' => + 'mysql_xdevapi\\sqlstatementresult::getcolumns' => array ( 0 => 'array', ), - 'mysql_xdevapi\\sqlstatementresult::getGeneratedIds' => + 'mysql_xdevapi\\sqlstatementresult::getgeneratedids' => array ( 0 => 'array', ), - 'mysql_xdevapi\\sqlstatementresult::getLastInsertId' => + 'mysql_xdevapi\\sqlstatementresult::getlastinsertid' => array ( 0 => 'string', ), - 'mysql_xdevapi\\sqlstatementresult::getWarnings' => + 'mysql_xdevapi\\sqlstatementresult::getwarnings' => array ( 0 => 'array', ), - 'mysql_xdevapi\\sqlstatementresult::getWarningsCount' => + 'mysql_xdevapi\\sqlstatementresult::getwarningscount' => array ( 0 => 'int', ), - 'mysql_xdevapi\\sqlstatementresult::hasData' => + 'mysql_xdevapi\\sqlstatementresult::hasdata' => array ( 0 => 'bool', ), - 'mysql_xdevapi\\sqlstatementresult::nextResult' => + 'mysql_xdevapi\\sqlstatementresult::nextresult' => array ( 0 => 'mysql_xdevapi\\Result', ), - 'mysql_xdevapi\\statement::getNextResult' => + 'mysql_xdevapi\\statement::getnextresult' => array ( 0 => 'mysql_xdevapi\\Result', ), - 'mysql_xdevapi\\statement::getResult' => + 'mysql_xdevapi\\statement::getresult' => array ( 0 => 'mysql_xdevapi\\Result', ), - 'mysql_xdevapi\\statement::hasMoreResults' => + 'mysql_xdevapi\\statement::hasmoreresults' => array ( 0 => 'bool', ), @@ -66036,19 +66036,19 @@ array ( 0 => 'mysql_xdevapi\\TableDelete', ), - 'mysql_xdevapi\\table::existsInDatabase' => + 'mysql_xdevapi\\table::existsindatabase' => array ( 0 => 'bool', ), - 'mysql_xdevapi\\table::getName' => + 'mysql_xdevapi\\table::getname' => array ( 0 => 'string', ), - 'mysql_xdevapi\\table::getSchema' => + 'mysql_xdevapi\\table::getschema' => array ( 0 => 'mysql_xdevapi\\Schema', ), - 'mysql_xdevapi\\table::getSession' => + 'mysql_xdevapi\\table::getsession' => array ( 0 => 'mysql_xdevapi\\Session', ), @@ -66058,7 +66058,7 @@ 'columns' => 'mixed', '...args=' => 'mixed', ), - 'mysql_xdevapi\\table::isView' => + 'mysql_xdevapi\\table::isview' => array ( 0 => 'bool', ), @@ -66119,7 +66119,7 @@ array ( 0 => 'mysql_xdevapi\\RowResult', ), - 'mysql_xdevapi\\tableselect::groupBy' => + 'mysql_xdevapi\\tableselect::groupby' => array ( 0 => 'mysql_xdevapi\\TableSelect', 'sort_expr' => 'mixed', @@ -66134,12 +66134,12 @@ 0 => 'mysql_xdevapi\\TableSelect', 'rows' => 'int', ), - 'mysql_xdevapi\\tableselect::lockExclusive' => + 'mysql_xdevapi\\tableselect::lockexclusive' => array ( 0 => 'mysql_xdevapi\\TableSelect', 'lock_waiting_option=' => 'int', ), - 'mysql_xdevapi\\tableselect::lockShared' => + 'mysql_xdevapi\\tableselect::lockshared' => array ( 0 => 'mysql_xdevapi\\TableSelect', 'lock_waiting_option=' => 'int', @@ -69336,24 +69336,24 @@ array ( 0 => 'bool', ), - 'outputformatObj::getOption' => + 'outputformatobj::getoption' => array ( 0 => 'string', 'property_name' => 'string', ), - 'outputformatObj::set' => + 'outputformatobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'outputformatObj::setOption' => + 'outputformatobj::setoption' => array ( 0 => 'void', 'property_name' => 'string', 'new_value' => 'string', ), - 'outputformatObj::validate' => + 'outputformatobj::validate' => array ( 0 => 'int', ), @@ -69375,11 +69375,11 @@ 'format' => 'string', '...values=' => 'mixed', ), - 'parallel\\Future::done' => + 'parallel\\future::done' => array ( 0 => 'bool', ), - 'parallel\\Future::select' => + 'parallel\\future::select' => array ( 0 => 'mixed', '&resolving' => 'array', @@ -69388,37 +69388,37 @@ '&w_timedout=' => 'array', 'timeout=' => 'int', ), - 'parallel\\Future::value' => + 'parallel\\future::value' => array ( 0 => 'mixed', 'timeout=' => 'int', ), - 'parallel\\Runtime::__construct' => + 'parallel\\runtime::__construct' => array ( 0 => 'void', 'arg' => 'array|string', ), - 'parallel\\Runtime::__construct\'1' => + 'parallel\\runtime::__construct\'1' => array ( 0 => 'void', 'bootstrap' => 'string', 'configuration' => 'array', ), - 'parallel\\Runtime::close' => + 'parallel\\runtime::close' => array ( 0 => 'void', ), - 'parallel\\Runtime::kill' => + 'parallel\\runtime::kill' => array ( 0 => 'void', ), - 'parallel\\Runtime::run' => + 'parallel\\runtime::run' => array ( 0 => 'null|parallel\\Future', 'closure' => 'Closure', 'args=' => 'array', ), - 'parle\\rlexer::insertMacro' => + 'parle\\rlexer::insertmacro' => array ( 0 => 'void', 'name' => 'string', @@ -70425,11 +70425,11 @@ '&rw_consumed' => 'int', 'closing' => 'bool', ), - 'php_user_filter::onClose' => + 'php_user_filter::onclose' => array ( 0 => 'void', ), - 'php_user_filter::onCreate' => + 'php_user_filter::oncreate' => array ( 0 => 'bool', ), @@ -70503,149 +70503,149 @@ 0 => 'false|string', 'extension=' => 'string', ), - 'pht\\AtomicInteger::__construct' => + 'pht\\atomicinteger::__construct' => array ( 0 => 'void', 'value=' => 'int', ), - 'pht\\AtomicInteger::dec' => + 'pht\\atomicinteger::dec' => array ( 0 => 'void', ), - 'pht\\AtomicInteger::get' => + 'pht\\atomicinteger::get' => array ( 0 => 'int', ), - 'pht\\AtomicInteger::inc' => + 'pht\\atomicinteger::inc' => array ( 0 => 'void', ), - 'pht\\AtomicInteger::lock' => + 'pht\\atomicinteger::lock' => array ( 0 => 'void', ), - 'pht\\AtomicInteger::set' => + 'pht\\atomicinteger::set' => array ( 0 => 'void', 'value' => 'int', ), - 'pht\\AtomicInteger::unlock' => + 'pht\\atomicinteger::unlock' => array ( 0 => 'void', ), - 'pht\\HashTable::lock' => + 'pht\\hashtable::lock' => array ( 0 => 'void', ), - 'pht\\HashTable::size' => + 'pht\\hashtable::size' => array ( 0 => 'int', ), - 'pht\\HashTable::unlock' => + 'pht\\hashtable::unlock' => array ( 0 => 'void', ), - 'pht\\Queue::front' => + 'pht\\queue::front' => array ( 0 => 'mixed', ), - 'pht\\Queue::lock' => + 'pht\\queue::lock' => array ( 0 => 'void', ), - 'pht\\Queue::pop' => + 'pht\\queue::pop' => array ( 0 => 'mixed', ), - 'pht\\Queue::push' => + 'pht\\queue::push' => array ( 0 => 'void', 'value' => 'mixed', ), - 'pht\\Queue::size' => + 'pht\\queue::size' => array ( 0 => 'int', ), - 'pht\\Queue::unlock' => + 'pht\\queue::unlock' => array ( 0 => 'void', ), - 'pht\\Runnable::run' => + 'pht\\runnable::run' => array ( 0 => 'void', ), - 'pht\\Vector::__construct' => + 'pht\\vector::__construct' => array ( 0 => 'void', 'size=' => 'int', 'value=' => 'mixed', ), - 'pht\\Vector::deleteAt' => + 'pht\\vector::deleteat' => array ( 0 => 'void', 'offset' => 'int', ), - 'pht\\Vector::insertAt' => + 'pht\\vector::insertat' => array ( 0 => 'void', 'value' => 'mixed', 'offset' => 'int', ), - 'pht\\Vector::lock' => + 'pht\\vector::lock' => array ( 0 => 'void', ), - 'pht\\Vector::pop' => + 'pht\\vector::pop' => array ( 0 => 'mixed', ), - 'pht\\Vector::push' => + 'pht\\vector::push' => array ( 0 => 'void', 'value' => 'mixed', ), - 'pht\\Vector::resize' => + 'pht\\vector::resize' => array ( 0 => 'void', 'size' => 'int', 'value=' => 'mixed', ), - 'pht\\Vector::shift' => + 'pht\\vector::shift' => array ( 0 => 'mixed', ), - 'pht\\Vector::size' => + 'pht\\vector::size' => array ( 0 => 'int', ), - 'pht\\Vector::unlock' => + 'pht\\vector::unlock' => array ( 0 => 'void', ), - 'pht\\Vector::unshift' => + 'pht\\vector::unshift' => array ( 0 => 'void', 'value' => 'mixed', ), - 'pht\\Vector::updateAt' => + 'pht\\vector::updateat' => array ( 0 => 'void', 'value' => 'mixed', 'offset' => 'int', ), - 'pht\\thread::addClassTask' => + 'pht\\thread::addclasstask' => array ( 0 => 'void', 'className' => 'string', '...ctorArgs=' => 'mixed', ), - 'pht\\thread::addFileTask' => + 'pht\\thread::addfiletask' => array ( 0 => 'void', 'fileName' => 'string', '...globals=' => 'mixed', ), - 'pht\\thread::addFunctionTask' => + 'pht\\thread::addfunctiontask' => array ( 0 => 'void', 'func' => 'callable', @@ -70659,7 +70659,7 @@ array ( 0 => 'void', ), - 'pht\\thread::taskCount' => + 'pht\\thread::taskcount' => array ( 0 => 'int', ), @@ -70684,27 +70684,27 @@ 'dest_width' => 'int', 'threshold' => 'int', ), - 'pointObj::__construct' => + 'pointobj::__construct' => array ( 0 => 'void', ), - 'pointObj::distanceToLine' => + 'pointobj::distancetoline' => array ( 0 => 'float', 'p1' => 'pointObj', 'p2' => 'pointObj', ), - 'pointObj::distanceToPoint' => + 'pointobj::distancetopoint' => array ( 0 => 'float', 'poPoint' => 'pointObj', ), - 'pointObj::distanceToShape' => + 'pointobj::distancetoshape' => array ( 0 => 'float', 'shape' => 'shapeObj', ), - 'pointObj::draw' => + 'pointobj::draw' => array ( 0 => 'int', 'map' => 'mapObj', @@ -70713,24 +70713,24 @@ 'class_index' => 'int', 'text' => 'string', ), - 'pointObj::ms_newPointObj' => + 'pointobj::ms_newpointobj' => array ( 0 => 'pointObj', ), - 'pointObj::project' => + 'pointobj::project' => array ( 0 => 'int', 'in' => 'projectionObj', 'out' => 'projectionObj', ), - 'pointObj::setXY' => + 'pointobj::setxy' => array ( 0 => 'int', 'x' => 'float', 'y' => 'float', 'm' => 'float', ), - 'pointObj::setXYZ' => + 'pointobj::setxyz' => array ( 0 => 'int', 'x' => 'float', @@ -71103,16 +71103,16 @@ 'process' => 'resource', 'signal=' => 'int', ), - 'projectionObj::__construct' => + 'projectionobj::__construct' => array ( 0 => 'void', 'projectionString' => 'string', ), - 'projectionObj::getUnits' => + 'projectionobj::getunits' => array ( 0 => 'int', ), - 'projectionObj::ms_newProjectionObj' => + 'projectionobj::ms_newprojectionobj' => array ( 0 => 'projectionObj', 'projectionString' => 'string', @@ -71981,21 +71981,21 @@ 0 => 'QDomDocument', 'doc' => 'string', ), - 'querymapObj::convertToString' => + 'querymapobj::converttostring' => array ( 0 => 'string', ), - 'querymapObj::free' => + 'querymapobj::free' => array ( 0 => 'void', ), - 'querymapObj::set' => + 'querymapobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'querymapObj::updateFromString' => + 'querymapobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', @@ -72398,11 +72398,11 @@ 'request' => 'string', 'string' => 'string', ), - 'rectObj::__construct' => + 'rectobj::__construct' => array ( 0 => 'void', ), - 'rectObj::draw' => + 'rectobj::draw' => array ( 0 => 'int', 'map' => 'mapObj', @@ -72411,29 +72411,29 @@ 'class_index' => 'int', 'text' => 'string', ), - 'rectObj::fit' => + 'rectobj::fit' => array ( 0 => 'float', 'width' => 'int', 'height' => 'int', ), - 'rectObj::ms_newRectObj' => + 'rectobj::ms_newrectobj' => array ( 0 => 'rectObj', ), - 'rectObj::project' => + 'rectobj::project' => array ( 0 => 'int', 'in' => 'projectionObj', 'out' => 'projectionObj', ), - 'rectObj::set' => + 'rectobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'rectObj::setextent' => + 'rectobj::setextent' => array ( 0 => 'void', 'minx' => 'float', @@ -72982,28 +72982,28 @@ 0 => 'array', 'value' => 'mixed', ), - 'scalebarObj::convertToString' => + 'scalebarobj::converttostring' => array ( 0 => 'string', ), - 'scalebarObj::free' => + 'scalebarobj::free' => array ( 0 => 'void', ), - 'scalebarObj::set' => + 'scalebarobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'scalebarObj::setImageColor' => + 'scalebarobj::setimagecolor' => array ( 0 => 'int', 'red' => 'int', 'green' => 'int', 'blue' => 'int', ), - 'scalebarObj::updateFromString' => + 'scalebarobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', @@ -73209,7 +73209,7 @@ array ( 0 => 'bool', ), - 'setLeftFill' => + 'setleftfill' => array ( 0 => 'void', 'red' => 'int', @@ -73217,7 +73217,7 @@ 'blue' => 'int', 'a=' => 'int', ), - 'setLine' => + 'setline' => array ( 0 => 'void', 'width' => 'int', @@ -73226,7 +73226,7 @@ 'blue' => 'int', 'a=' => 'int', ), - 'setRightFill' => + 'setrightfill' => array ( 0 => 'void', 'red' => 'int', @@ -73343,209 +73343,209 @@ 'filename' => 'string', 'raw_output=' => 'bool', ), - 'shapeObj::__construct' => + 'shapeobj::__construct' => array ( 0 => 'void', 'type' => 'int', ), - 'shapeObj::add' => + 'shapeobj::add' => array ( 0 => 'int', 'line' => 'lineObj', ), - 'shapeObj::boundary' => + 'shapeobj::boundary' => array ( 0 => 'shapeObj', ), - 'shapeObj::contains' => + 'shapeobj::contains' => array ( 0 => 'bool', 'point' => 'pointObj', ), - 'shapeObj::containsShape' => + 'shapeobj::containsshape' => array ( 0 => 'int', 'shape2' => 'shapeObj', ), - 'shapeObj::convexhull' => + 'shapeobj::convexhull' => array ( 0 => 'shapeObj', ), - 'shapeObj::crosses' => + 'shapeobj::crosses' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'shapeObj::difference' => + 'shapeobj::difference' => array ( 0 => 'shapeObj', 'shape' => 'shapeObj', ), - 'shapeObj::disjoint' => + 'shapeobj::disjoint' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'shapeObj::draw' => + 'shapeobj::draw' => array ( 0 => 'int', 'map' => 'mapObj', 'layer' => 'layerObj', 'img' => 'imageObj', ), - 'shapeObj::equals' => + 'shapeobj::equals' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'shapeObj::free' => + 'shapeobj::free' => array ( 0 => 'void', ), - 'shapeObj::getArea' => + 'shapeobj::getarea' => array ( 0 => 'float', ), - 'shapeObj::getCentroid' => + 'shapeobj::getcentroid' => array ( 0 => 'pointObj', ), - 'shapeObj::getLabelPoint' => + 'shapeobj::getlabelpoint' => array ( 0 => 'pointObj', ), - 'shapeObj::getLength' => + 'shapeobj::getlength' => array ( 0 => 'float', ), - 'shapeObj::getPointUsingMeasure' => + 'shapeobj::getpointusingmeasure' => array ( 0 => 'pointObj', 'm' => 'float', ), - 'shapeObj::getValue' => + 'shapeobj::getvalue' => array ( 0 => 'string', 'layer' => 'layerObj', 'filedname' => 'string', ), - 'shapeObj::intersection' => + 'shapeobj::intersection' => array ( 0 => 'shapeObj', 'shape' => 'shapeObj', ), - 'shapeObj::intersects' => + 'shapeobj::intersects' => array ( 0 => 'bool', 'shape' => 'shapeObj', ), - 'shapeObj::line' => + 'shapeobj::line' => array ( 0 => 'lineObj', 'i' => 'int', ), - 'shapeObj::ms_shapeObjFromWkt' => + 'shapeobj::ms_shapeobjfromwkt' => array ( 0 => 'shapeObj', 'wkt' => 'string', ), - 'shapeObj::overlaps' => + 'shapeobj::overlaps' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'shapeObj::project' => + 'shapeobj::project' => array ( 0 => 'int', 'in' => 'projectionObj', 'out' => 'projectionObj', ), - 'shapeObj::set' => + 'shapeobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'shapeObj::setBounds' => + 'shapeobj::setbounds' => array ( 0 => 'int', ), - 'shapeObj::simplify' => + 'shapeobj::simplify' => array ( 0 => 'null|shapeObj', 'tolerance' => 'float', ), - 'shapeObj::symdifference' => + 'shapeobj::symdifference' => array ( 0 => 'shapeObj', 'shape' => 'shapeObj', ), - 'shapeObj::toWkt' => + 'shapeobj::towkt' => array ( 0 => 'string', ), - 'shapeObj::topologyPreservingSimplify' => + 'shapeobj::topologypreservingsimplify' => array ( 0 => 'null|shapeObj', 'tolerance' => 'float', ), - 'shapeObj::touches' => + 'shapeobj::touches' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'shapeObj::union' => + 'shapeobj::union' => array ( 0 => 'shapeObj', 'shape' => 'shapeObj', ), - 'shapeObj::within' => + 'shapeobj::within' => array ( 0 => 'int', 'shape2' => 'shapeObj', ), - 'shapefileObj::__construct' => + 'shapefileobj::__construct' => array ( 0 => 'void', 'filename' => 'string', 'type' => 'int', ), - 'shapefileObj::addPoint' => + 'shapefileobj::addpoint' => array ( 0 => 'int', 'point' => 'pointObj', ), - 'shapefileObj::addShape' => + 'shapefileobj::addshape' => array ( 0 => 'int', 'shape' => 'shapeObj', ), - 'shapefileObj::free' => + 'shapefileobj::free' => array ( 0 => 'void', ), - 'shapefileObj::getExtent' => + 'shapefileobj::getextent' => array ( 0 => 'rectObj', 'i' => 'int', ), - 'shapefileObj::getPoint' => + 'shapefileobj::getpoint' => array ( 0 => 'shapeObj', 'i' => 'int', ), - 'shapefileObj::getShape' => + 'shapefileobj::getshape' => array ( 0 => 'shapeObj', 'i' => 'int', ), - 'shapefileObj::getTransformed' => + 'shapefileobj::gettransformed' => array ( 0 => 'shapeObj', 'map' => 'mapObj', 'i' => 'int', ), - 'shapefileObj::ms_newShapefileObj' => + 'shapefileobj::ms_newshapefileobj' => array ( 0 => 'shapefileObj', 'filename' => 'string', @@ -75606,81 +75606,81 @@ 'offset=' => 'int', 'length=' => 'int', ), - 'streamWrapper::__construct' => + 'streamwrapper::__construct' => array ( 0 => 'void', ), - 'streamWrapper::__destruct' => + 'streamwrapper::__destruct' => array ( 0 => 'void', ), - 'streamWrapper::dir_closedir' => + 'streamwrapper::dir_closedir' => array ( 0 => 'bool', ), - 'streamWrapper::dir_opendir' => + 'streamwrapper::dir_opendir' => array ( 0 => 'bool', 'path' => 'string', 'options' => 'int', ), - 'streamWrapper::dir_readdir' => + 'streamwrapper::dir_readdir' => array ( 0 => 'string', ), - 'streamWrapper::dir_rewinddir' => + 'streamwrapper::dir_rewinddir' => array ( 0 => 'bool', ), - 'streamWrapper::mkdir' => + 'streamwrapper::mkdir' => array ( 0 => 'bool', 'path' => 'string', 'mode' => 'int', 'options' => 'int', ), - 'streamWrapper::rename' => + 'streamwrapper::rename' => array ( 0 => 'bool', 'path_from' => 'string', 'path_to' => 'string', ), - 'streamWrapper::rmdir' => + 'streamwrapper::rmdir' => array ( 0 => 'bool', 'path' => 'string', 'options' => 'int', ), - 'streamWrapper::stream_cast' => + 'streamwrapper::stream_cast' => array ( 0 => 'resource', 'cast_as' => 'int', ), - 'streamWrapper::stream_close' => + 'streamwrapper::stream_close' => array ( 0 => 'void', ), - 'streamWrapper::stream_eof' => + 'streamwrapper::stream_eof' => array ( 0 => 'bool', ), - 'streamWrapper::stream_flush' => + 'streamwrapper::stream_flush' => array ( 0 => 'bool', ), - 'streamWrapper::stream_lock' => + 'streamwrapper::stream_lock' => array ( 0 => 'bool', 'operation' => 'mode', ), - 'streamWrapper::stream_metadata' => + 'streamwrapper::stream_metadata' => array ( 0 => 'bool', 'path' => 'string', 'option' => 'int', 'value' => 'mixed', ), - 'streamWrapper::stream_open' => + 'streamwrapper::stream_open' => array ( 0 => 'bool', 'path' => 'string', @@ -75688,48 +75688,48 @@ 'options' => 'int', 'opened_path' => 'string', ), - 'streamWrapper::stream_read' => + 'streamwrapper::stream_read' => array ( 0 => 'string', 'count' => 'int', ), - 'streamWrapper::stream_seek' => + 'streamwrapper::stream_seek' => array ( 0 => 'bool', 'offset' => 'int', 'whence' => 'int', ), - 'streamWrapper::stream_set_option' => + 'streamwrapper::stream_set_option' => array ( 0 => 'bool', 'option' => 'int', 'arg1' => 'int', 'arg2' => 'int', ), - 'streamWrapper::stream_stat' => + 'streamwrapper::stream_stat' => array ( 0 => 'array', ), - 'streamWrapper::stream_tell' => + 'streamwrapper::stream_tell' => array ( 0 => 'int', ), - 'streamWrapper::stream_truncate' => + 'streamwrapper::stream_truncate' => array ( 0 => 'bool', 'new_size' => 'int', ), - 'streamWrapper::stream_write' => + 'streamwrapper::stream_write' => array ( 0 => 'int', 'data' => 'string', ), - 'streamWrapper::unlink' => + 'streamwrapper::unlink' => array ( 0 => 'bool', 'path' => 'string', ), - 'streamWrapper::url_stat' => + 'streamwrapper::url_stat' => array ( 0 => 'array', 'path' => 'string', @@ -76205,58 +76205,58 @@ 0 => 'string', 'value' => 'mixed', ), - 'styleObj::__construct' => + 'styleobj::__construct' => array ( 0 => 'void', 'label' => 'labelObj', 'style' => 'styleObj', ), - 'styleObj::convertToString' => + 'styleobj::converttostring' => array ( 0 => 'string', ), - 'styleObj::free' => + 'styleobj::free' => array ( 0 => 'void', ), - 'styleObj::getBinding' => + 'styleobj::getbinding' => array ( 0 => 'string', 'stylebinding' => 'mixed', ), - 'styleObj::getGeomTransform' => + 'styleobj::getgeomtransform' => array ( 0 => 'string', ), - 'styleObj::ms_newStyleObj' => + 'styleobj::ms_newstyleobj' => array ( 0 => 'styleObj', 'class' => 'classObj', 'style' => 'styleObj', ), - 'styleObj::removeBinding' => + 'styleobj::removebinding' => array ( 0 => 'int', 'stylebinding' => 'mixed', ), - 'styleObj::set' => + 'styleobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'styleObj::setBinding' => + 'styleobj::setbinding' => array ( 0 => 'int', 'stylebinding' => 'mixed', 'value' => 'string', ), - 'styleObj::setGeomTransform' => + 'styleobj::setgeomtransform' => array ( 0 => 'int', 'value' => 'string', ), - 'styleObj::updateFromString' => + 'styleobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', @@ -77054,7 +77054,7 @@ 'ymin' => 'float', 'ymax' => 'float', ), - 'swoole\\async::dnsLookup' => + 'swoole\\async::dnslookup' => array ( 0 => 'void', 'hostname' => 'string', @@ -77068,7 +77068,7 @@ 'chunk_size=' => 'int', 'offset=' => 'int', ), - 'swoole\\async::readFile' => + 'swoole\\async::readfile' => array ( 0 => 'void', 'filename' => 'string', @@ -77087,7 +77087,7 @@ 'offset=' => 'int', 'callback=' => 'callable', ), - 'swoole\\async::writeFile' => + 'swoole\\async::writefile' => array ( 0 => 'void', 'filename' => 'string', @@ -77124,7 +77124,7 @@ array ( 0 => 'void', ), - 'swoole\\buffer::__toString' => + 'swoole\\buffer::__tostring' => array ( 0 => 'string', ), @@ -77207,7 +77207,7 @@ array ( 0 => 'array', ), - 'swoole\\client::isConnected' => + 'swoole\\client::isconnected' => array ( 0 => 'bool', ), @@ -77284,23 +77284,23 @@ array ( 0 => 'Connection', ), - 'swoole\\connection\\iterator::offsetExists' => + 'swoole\\connection\\iterator::offsetexists' => array ( 0 => 'bool', 'index' => 'int', ), - 'swoole\\connection\\iterator::offsetGet' => + 'swoole\\connection\\iterator::offsetget' => array ( 0 => 'Connection', 'index' => 'string', ), - 'swoole\\connection\\iterator::offsetSet' => + 'swoole\\connection\\iterator::offsetset' => array ( 0 => 'void', 'offset' => 'int', 'connection' => 'mixed', ), - 'swoole\\connection\\iterator::offsetUnset' => + 'swoole\\connection\\iterator::offsetunset' => array ( 0 => 'void', 'offset' => 'int', @@ -77366,7 +77366,7 @@ array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\client::isConnected' => + 'swoole\\coroutine\\client::isconnected' => array ( 0 => 'ReturnType', ), @@ -77394,7 +77394,7 @@ array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::addFile' => + 'swoole\\coroutine\\http\\client::addfile' => array ( 0 => 'ReturnType', ), @@ -77410,11 +77410,11 @@ array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::getDefer' => + 'swoole\\coroutine\\http\\client::getdefer' => array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::isConnected' => + 'swoole\\coroutine\\http\\client::isconnected' => array ( 0 => 'ReturnType', ), @@ -77430,23 +77430,23 @@ array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::setCookies' => + 'swoole\\coroutine\\http\\client::setcookies' => array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::setData' => + 'swoole\\coroutine\\http\\client::setdata' => array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::setDefer' => + 'swoole\\coroutine\\http\\client::setdefer' => array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::setHeaders' => + 'swoole\\coroutine\\http\\client::setheaders' => array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\http\\client::setMethod' => + 'swoole\\coroutine\\http\\client::setmethod' => array ( 0 => 'ReturnType', ), @@ -77462,7 +77462,7 @@ array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\mysql::getDefer' => + 'swoole\\coroutine\\mysql::getdefer' => array ( 0 => 'ReturnType', ), @@ -77474,7 +77474,7 @@ array ( 0 => 'ReturnType', ), - 'swoole\\coroutine\\mysql::setDefer' => + 'swoole\\coroutine\\mysql::setdefer' => array ( 0 => 'ReturnType', ), @@ -77522,7 +77522,7 @@ array ( 0 => 'void', ), - 'swoole\\http\\client::addFile' => + 'swoole\\http\\client::addfile' => array ( 0 => 'void', 'path' => 'string', @@ -77555,7 +77555,7 @@ 'path' => 'string', 'callback' => 'callable', ), - 'swoole\\http\\client::isConnected' => + 'swoole\\http\\client::isconnected' => array ( 0 => 'bool', ), @@ -77584,22 +77584,22 @@ 0 => 'void', 'settings' => 'array', ), - 'swoole\\http\\client::setCookies' => + 'swoole\\http\\client::setcookies' => array ( 0 => 'void', 'cookies' => 'array', ), - 'swoole\\http\\client::setData' => + 'swoole\\http\\client::setdata' => array ( 0 => 'ReturnType', 'data' => 'string', ), - 'swoole\\http\\client::setHeaders' => + 'swoole\\http\\client::setheaders' => array ( 0 => 'void', 'headers' => 'array', ), - 'swoole\\http\\client::setMethod' => + 'swoole\\http\\client::setmethod' => array ( 0 => 'void', 'method' => 'string', @@ -77650,7 +77650,7 @@ 'value' => 'string', 'ucwords=' => 'string', ), - 'swoole\\http\\response::initHeader' => + 'swoole\\http\\response::initheader' => array ( 0 => 'ReturnType', ), @@ -77736,7 +77736,7 @@ 'server_config' => 'array', 'callback' => 'callable', ), - 'swoole\\mysql::getBuffer' => + 'swoole\\mysql::getbuffer' => array ( 0 => 'ReturnType', ), @@ -77782,7 +77782,7 @@ 0 => 'void', 'exit_code=' => 'string', ), - 'swoole\\process::freeQueue' => + 'swoole\\process::freequeue' => array ( 0 => 'void', ), @@ -77822,11 +77822,11 @@ array ( 0 => 'void', ), - 'swoole\\process::statQueue' => + 'swoole\\process::statqueue' => array ( 0 => 'array', ), - 'swoole\\process::useQueue' => + 'swoole\\process::usequeue' => array ( 0 => 'bool', 'key' => 'int', @@ -77848,7 +77848,7 @@ 'type' => 'string', 'value=' => 'string', ), - 'swoole\\redis\\server::setHandler' => + 'swoole\\redis\\server::sethandler' => array ( 0 => 'ReturnType', 'command' => 'string', @@ -77872,7 +77872,7 @@ 'data' => 'string', 'args=' => 'string', ), - 'swoole\\server::addProcess' => + 'swoole\\server::addprocess' => array ( 0 => 'bool', 'process' => 'swoole_process', @@ -77935,19 +77935,19 @@ 0 => 'void', 'data' => 'string', ), - 'swoole\\server::getClientInfo' => + 'swoole\\server::getclientinfo' => array ( 0 => 'ReturnType', 'fd' => 'int', 'reactor_id=' => 'int', ), - 'swoole\\server::getClientList' => + 'swoole\\server::getclientlist' => array ( 0 => 'array', 'start_fd' => 'int', 'pagesize=' => 'int', ), - 'swoole\\server::getLastError' => + 'swoole\\server::getlasterror' => array ( 0 => 'int', ), @@ -77996,7 +77996,7 @@ 'data' => 'string', 'reactor_id=' => 'int', ), - 'swoole\\server::sendMessage' => + 'swoole\\server::sendmessage' => array ( 0 => 'bool', 'worker_id' => 'int', @@ -78052,7 +78052,7 @@ 'dst_worker_id=' => 'int', 'callback=' => 'callable', ), - 'swoole\\server::taskWaitMulti' => + 'swoole\\server::taskwaitmulti' => array ( 0 => 'void', 'tasks' => 'array', @@ -78369,47 +78369,47 @@ array ( 0 => 'string', ), - 'symbolObj::__construct' => + 'symbolobj::__construct' => array ( 0 => 'void', 'map' => 'mapObj', 'symbolname' => 'string', ), - 'symbolObj::free' => + 'symbolobj::free' => array ( 0 => 'void', ), - 'symbolObj::getPatternArray' => + 'symbolobj::getpatternarray' => array ( 0 => 'array', ), - 'symbolObj::getPointsArray' => + 'symbolobj::getpointsarray' => array ( 0 => 'array', ), - 'symbolObj::ms_newSymbolObj' => + 'symbolobj::ms_newsymbolobj' => array ( 0 => 'int', 'map' => 'mapObj', 'symbolname' => 'string', ), - 'symbolObj::set' => + 'symbolobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'symbolObj::setImagePath' => + 'symbolobj::setimagepath' => array ( 0 => 'int', 'filename' => 'string', ), - 'symbolObj::setPattern' => + 'symbolobj::setpattern' => array ( 0 => 'int', 'int' => 'array', ), - 'symbolObj::setPoints' => + 'symbolobj::setpoints' => array ( 0 => 'int', 'double' => 'array', @@ -78487,7 +78487,7 @@ array ( 0 => 'null|tidyNode', ), - 'tidy::cleanRepair' => + 'tidy::cleanrepair' => array ( 0 => 'bool', ), @@ -78495,29 +78495,29 @@ array ( 0 => 'bool', ), - 'tidy::getConfig' => + 'tidy::getconfig' => array ( 0 => 'array', ), - 'tidy::getHtmlVer' => + 'tidy::gethtmlver' => array ( 0 => 'int', ), - 'tidy::getOpt' => + 'tidy::getopt' => array ( 0 => 'bool|int|string', 'option' => 'string', ), - 'tidy::getOptDoc' => + 'tidy::getoptdoc' => array ( 0 => 'string', 'option' => 'string', ), - 'tidy::getRelease' => + 'tidy::getrelease' => array ( 0 => 'string', ), - 'tidy::getStatus' => + 'tidy::getstatus' => array ( 0 => 'int', ), @@ -78529,15 +78529,15 @@ array ( 0 => 'null|tidyNode', ), - 'tidy::isXhtml' => + 'tidy::isxhtml' => array ( 0 => 'bool', ), - 'tidy::isXml' => + 'tidy::isxml' => array ( 0 => 'bool', ), - 'tidy::parseFile' => + 'tidy::parsefile' => array ( 0 => 'bool', 'filename' => 'string', @@ -78545,14 +78545,14 @@ 'encoding=' => 'string', 'useIncludePath=' => 'bool', ), - 'tidy::parseString' => + 'tidy::parsestring' => array ( 0 => 'bool', 'string' => 'string', 'config=' => 'array|string', 'encoding=' => 'string', ), - 'tidy::repairFile' => + 'tidy::repairfile' => array ( 0 => 'string', 'filename' => 'string', @@ -78560,7 +78560,7 @@ 'encoding=' => 'string', 'useIncludePath=' => 'bool', ), - 'tidy::repairString' => + 'tidy::repairstring' => array ( 0 => 'string', 'string' => 'string', @@ -78571,43 +78571,43 @@ array ( 0 => 'null|tidyNode', ), - 'tidyNode::__construct' => + 'tidynode::__construct' => array ( 0 => 'void', ), - 'tidyNode::getParent' => + 'tidynode::getparent' => array ( 0 => 'null|tidyNode', ), - 'tidyNode::hasChildren' => + 'tidynode::haschildren' => array ( 0 => 'bool', ), - 'tidyNode::hasSiblings' => + 'tidynode::hassiblings' => array ( 0 => 'bool', ), - 'tidyNode::isAsp' => + 'tidynode::isasp' => array ( 0 => 'bool', ), - 'tidyNode::isComment' => + 'tidynode::iscomment' => array ( 0 => 'bool', ), - 'tidyNode::isHtml' => + 'tidynode::ishtml' => array ( 0 => 'bool', ), - 'tidyNode::isJste' => + 'tidynode::isjste' => array ( 0 => 'bool', ), - 'tidyNode::isPhp' => + 'tidynode::isphp' => array ( 0 => 'bool', ), - 'tidyNode::isText' => + 'tidynode::istext' => array ( 0 => 'bool', ), @@ -80239,7 +80239,7 @@ 'var' => 'int', 'val' => 'string', ), - 'ui\\area::onDraw' => + 'ui\\area::ondraw' => array ( 0 => 'mixed', 'pen' => 'UI\\Draw\\Pen', @@ -80247,14 +80247,14 @@ 'clipPoint' => 'UI\\Point', 'clipSize' => 'UI\\Size', ), - 'ui\\area::onKey' => + 'ui\\area::onkey' => array ( 0 => 'mixed', 'key' => 'string', 'ext' => 'int', 'flags' => 'int', ), - 'ui\\area::onMouse' => + 'ui\\area::onmouse' => array ( 0 => 'mixed', 'areaPoint' => 'UI\\Point', @@ -80265,13 +80265,13 @@ array ( 0 => 'mixed', ), - 'ui\\area::scrollTo' => + 'ui\\area::scrollto' => array ( 0 => 'mixed', 'point' => 'UI\\Point', 'size' => 'UI\\Size', ), - 'ui\\area::setSize' => + 'ui\\area::setsize' => array ( 0 => 'mixed', 'size' => 'UI\\Size', @@ -80288,11 +80288,11 @@ array ( 0 => 'mixed', ), - 'ui\\control::getParent' => + 'ui\\control::getparent' => array ( 0 => 'UI\\Control', ), - 'ui\\control::getTopLevel' => + 'ui\\control::gettoplevel' => array ( 0 => 'int', ), @@ -80300,15 +80300,15 @@ array ( 0 => 'mixed', ), - 'ui\\control::isEnabled' => + 'ui\\control::isenabled' => array ( 0 => 'bool', ), - 'ui\\control::isVisible' => + 'ui\\control::isvisible' => array ( 0 => 'bool', ), - 'ui\\control::setParent' => + 'ui\\control::setparent' => array ( 0 => 'mixed', 'parent' => 'UI\\Control', @@ -80328,59 +80328,59 @@ 0 => 'bool', 'index' => 'int', ), - 'ui\\controls\\box::getOrientation' => + 'ui\\controls\\box::getorientation' => array ( 0 => 'int', ), - 'ui\\controls\\box::isPadded' => + 'ui\\controls\\box::ispadded' => array ( 0 => 'bool', ), - 'ui\\controls\\box::setPadded' => + 'ui\\controls\\box::setpadded' => array ( 0 => 'mixed', 'padded' => 'bool', ), - 'ui\\controls\\button::getText' => + 'ui\\controls\\button::gettext' => array ( 0 => 'string', ), - 'ui\\controls\\button::onClick' => + 'ui\\controls\\button::onclick' => array ( 0 => 'mixed', ), - 'ui\\controls\\button::setText' => + 'ui\\controls\\button::settext' => array ( 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\check::getText' => + 'ui\\controls\\check::gettext' => array ( 0 => 'string', ), - 'ui\\controls\\check::isChecked' => + 'ui\\controls\\check::ischecked' => array ( 0 => 'bool', ), - 'ui\\controls\\check::onToggle' => + 'ui\\controls\\check::ontoggle' => array ( 0 => 'mixed', ), - 'ui\\controls\\check::setChecked' => + 'ui\\controls\\check::setchecked' => array ( 0 => 'mixed', 'checked' => 'bool', ), - 'ui\\controls\\check::setText' => + 'ui\\controls\\check::settext' => array ( 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\colorbutton::getColor' => + 'ui\\controls\\colorbutton::getcolor' => array ( 0 => 'UI\\Color', ), - 'ui\\controls\\colorbutton::onChange' => + 'ui\\controls\\colorbutton::onchange' => array ( 0 => 'mixed', ), @@ -80389,15 +80389,15 @@ 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\combo::getSelected' => + 'ui\\controls\\combo::getselected' => array ( 0 => 'int', ), - 'ui\\controls\\combo::onSelected' => + 'ui\\controls\\combo::onselected' => array ( 0 => 'mixed', ), - 'ui\\controls\\combo::setSelected' => + 'ui\\controls\\combo::setselected' => array ( 0 => 'mixed', 'index' => 'int', @@ -80407,37 +80407,37 @@ 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\editablecombo::getText' => + 'ui\\controls\\editablecombo::gettext' => array ( 0 => 'string', ), - 'ui\\controls\\editablecombo::onChange' => + 'ui\\controls\\editablecombo::onchange' => array ( 0 => 'mixed', ), - 'ui\\controls\\editablecombo::setText' => + 'ui\\controls\\editablecombo::settext' => array ( 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\entry::getText' => + 'ui\\controls\\entry::gettext' => array ( 0 => 'string', ), - 'ui\\controls\\entry::isReadOnly' => + 'ui\\controls\\entry::isreadonly' => array ( 0 => 'bool', ), - 'ui\\controls\\entry::onChange' => + 'ui\\controls\\entry::onchange' => array ( 0 => 'mixed', ), - 'ui\\controls\\entry::setReadOnly' => + 'ui\\controls\\entry::setreadonly' => array ( 0 => 'mixed', 'readOnly' => 'bool', ), - 'ui\\controls\\entry::setText' => + 'ui\\controls\\entry::settext' => array ( 0 => 'mixed', 'text' => 'string', @@ -80454,11 +80454,11 @@ 0 => 'bool', 'index' => 'int', ), - 'ui\\controls\\form::isPadded' => + 'ui\\controls\\form::ispadded' => array ( 0 => 'bool', ), - 'ui\\controls\\form::setPadded' => + 'ui\\controls\\form::setpadded' => array ( 0 => 'mixed', 'padded' => 'bool', @@ -80476,11 +80476,11 @@ 'vexpand' => 'bool', 'valign' => 'int', ), - 'ui\\controls\\grid::isPadded' => + 'ui\\controls\\grid::ispadded' => array ( 0 => 'bool', ), - 'ui\\controls\\grid::setPadded' => + 'ui\\controls\\grid::setpadded' => array ( 0 => 'mixed', 'padding' => 'bool', @@ -80490,29 +80490,29 @@ 0 => 'mixed', 'control' => 'UI\\Control', ), - 'ui\\controls\\group::getTitle' => + 'ui\\controls\\group::gettitle' => array ( 0 => 'string', ), - 'ui\\controls\\group::hasMargin' => + 'ui\\controls\\group::hasmargin' => array ( 0 => 'bool', ), - 'ui\\controls\\group::setMargin' => + 'ui\\controls\\group::setmargin' => array ( 0 => 'mixed', 'margin' => 'bool', ), - 'ui\\controls\\group::setTitle' => + 'ui\\controls\\group::settitle' => array ( 0 => 'mixed', 'title' => 'string', ), - 'ui\\controls\\label::getText' => + 'ui\\controls\\label::gettext' => array ( 0 => 'string', ), - 'ui\\controls\\label::setText' => + 'ui\\controls\\label::settext' => array ( 0 => 'mixed', 'text' => 'string', @@ -80522,33 +80522,33 @@ 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\multilineentry::getText' => + 'ui\\controls\\multilineentry::gettext' => array ( 0 => 'string', ), - 'ui\\controls\\multilineentry::isReadOnly' => + 'ui\\controls\\multilineentry::isreadonly' => array ( 0 => 'bool', ), - 'ui\\controls\\multilineentry::onChange' => + 'ui\\controls\\multilineentry::onchange' => array ( 0 => 'mixed', ), - 'ui\\controls\\multilineentry::setReadOnly' => + 'ui\\controls\\multilineentry::setreadonly' => array ( 0 => 'mixed', 'readOnly' => 'bool', ), - 'ui\\controls\\multilineentry::setText' => + 'ui\\controls\\multilineentry::settext' => array ( 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\progress::getValue' => + 'ui\\controls\\progress::getvalue' => array ( 0 => 'int', ), - 'ui\\controls\\progress::setValue' => + 'ui\\controls\\progress::setvalue' => array ( 0 => 'mixed', 'value' => 'int', @@ -80558,41 +80558,41 @@ 0 => 'mixed', 'text' => 'string', ), - 'ui\\controls\\radio::getSelected' => + 'ui\\controls\\radio::getselected' => array ( 0 => 'int', ), - 'ui\\controls\\radio::onSelected' => + 'ui\\controls\\radio::onselected' => array ( 0 => 'mixed', ), - 'ui\\controls\\radio::setSelected' => + 'ui\\controls\\radio::setselected' => array ( 0 => 'mixed', 'index' => 'int', ), - 'ui\\controls\\slider::getValue' => + 'ui\\controls\\slider::getvalue' => array ( 0 => 'int', ), - 'ui\\controls\\slider::onChange' => + 'ui\\controls\\slider::onchange' => array ( 0 => 'mixed', ), - 'ui\\controls\\slider::setValue' => + 'ui\\controls\\slider::setvalue' => array ( 0 => 'mixed', 'value' => 'int', ), - 'ui\\controls\\spin::getValue' => + 'ui\\controls\\spin::getvalue' => array ( 0 => 'int', ), - 'ui\\controls\\spin::onChange' => + 'ui\\controls\\spin::onchange' => array ( 0 => 'mixed', ), - 'ui\\controls\\spin::setValue' => + 'ui\\controls\\spin::setvalue' => array ( 0 => 'mixed', 'value' => 'int', @@ -80608,12 +80608,12 @@ 0 => 'bool', 'index' => 'int', ), - 'ui\\controls\\tab::hasMargin' => + 'ui\\controls\\tab::hasmargin' => array ( 0 => 'bool', 'page' => 'int', ), - 'ui\\controls\\tab::insertAt' => + 'ui\\controls\\tab::insertat' => array ( 0 => 'mixed', 'name' => 'string', @@ -80624,27 +80624,27 @@ array ( 0 => 'int', ), - 'ui\\controls\\tab::setMargin' => + 'ui\\controls\\tab::setmargin' => array ( 0 => 'mixed', 'page' => 'int', 'margin' => 'bool', ), - 'ui\\draw\\brush::getColor' => + 'ui\\draw\\brush::getcolor' => array ( 0 => 'UI\\Draw\\Color', ), - 'ui\\draw\\brush\\gradient::delStop' => + 'ui\\draw\\brush\\gradient::delstop' => array ( 0 => 'int', 'index' => 'int', ), - 'ui\\draw\\color::getChannel' => + 'ui\\draw\\color::getchannel' => array ( 0 => 'float', 'channel' => 'int', ), - 'ui\\draw\\color::setChannel' => + 'ui\\draw\\color::setchannel' => array ( 0 => 'void', 'channel' => 'int', @@ -80654,7 +80654,7 @@ array ( 0 => 'mixed', ), - 'ui\\draw\\matrix::isInvertible' => + 'ui\\draw\\matrix::isinvertible' => array ( 0 => 'bool', ), @@ -80686,13 +80686,13 @@ 0 => 'mixed', 'point' => 'UI\\Point', ), - 'ui\\draw\\path::addRectangle' => + 'ui\\draw\\path::addrectangle' => array ( 0 => 'mixed', 'point' => 'UI\\Point', 'size' => 'UI\\Size', ), - 'ui\\draw\\path::arcTo' => + 'ui\\draw\\path::arcto' => array ( 0 => 'mixed', 'point' => 'UI\\Point', @@ -80701,7 +80701,7 @@ 'sweep' => 'float', 'negative' => 'float', ), - 'ui\\draw\\path::bezierTo' => + 'ui\\draw\\path::bezierto' => array ( 0 => 'mixed', 'point' => 'UI\\Point', @@ -80710,7 +80710,7 @@ 'sweep' => 'float', 'negative' => 'float', ), - 'ui\\draw\\path::closeFigure' => + 'ui\\draw\\path::closefigure' => array ( 0 => 'mixed', ), @@ -80718,7 +80718,7 @@ array ( 0 => 'mixed', ), - 'ui\\draw\\path::lineTo' => + 'ui\\draw\\path::lineto' => array ( 0 => 'mixed', 'point' => 'UI\\Point', @@ -80727,12 +80727,12 @@ 'sweep' => 'float', 'negative' => 'float', ), - 'ui\\draw\\path::newFigure' => + 'ui\\draw\\path::newfigure' => array ( 0 => 'mixed', 'point' => 'UI\\Point', ), - 'ui\\draw\\path::newFigureWithArc' => + 'ui\\draw\\path::newfigurewitharc' => array ( 0 => 'mixed', 'point' => 'UI\\Point', @@ -80765,79 +80765,79 @@ 'point' => 'UI\\Point', 'layout' => 'UI\\Draw\\Text\\Layout', ), - 'ui\\draw\\stroke::getCap' => + 'ui\\draw\\stroke::getcap' => array ( 0 => 'int', ), - 'ui\\draw\\stroke::getJoin' => + 'ui\\draw\\stroke::getjoin' => array ( 0 => 'int', ), - 'ui\\draw\\stroke::getMiterLimit' => + 'ui\\draw\\stroke::getmiterlimit' => array ( 0 => 'float', ), - 'ui\\draw\\stroke::getThickness' => + 'ui\\draw\\stroke::getthickness' => array ( 0 => 'float', ), - 'ui\\draw\\stroke::setCap' => + 'ui\\draw\\stroke::setcap' => array ( 0 => 'mixed', 'cap' => 'int', ), - 'ui\\draw\\stroke::setJoin' => + 'ui\\draw\\stroke::setjoin' => array ( 0 => 'mixed', 'join' => 'int', ), - 'ui\\draw\\stroke::setMiterLimit' => + 'ui\\draw\\stroke::setmiterlimit' => array ( 0 => 'mixed', 'limit' => 'float', ), - 'ui\\draw\\stroke::setThickness' => + 'ui\\draw\\stroke::setthickness' => array ( 0 => 'mixed', 'thickness' => 'float', ), - 'ui\\draw\\text\\font::getAscent' => + 'ui\\draw\\text\\font::getascent' => array ( 0 => 'float', ), - 'ui\\draw\\text\\font::getDescent' => + 'ui\\draw\\text\\font::getdescent' => array ( 0 => 'float', ), - 'ui\\draw\\text\\font::getLeading' => + 'ui\\draw\\text\\font::getleading' => array ( 0 => 'float', ), - 'ui\\draw\\text\\font::getUnderlinePosition' => + 'ui\\draw\\text\\font::getunderlineposition' => array ( 0 => 'float', ), - 'ui\\draw\\text\\font::getUnderlineThickness' => + 'ui\\draw\\text\\font::getunderlinethickness' => array ( 0 => 'float', ), - 'ui\\draw\\text\\font\\descriptor::getFamily' => + 'ui\\draw\\text\\font\\descriptor::getfamily' => array ( 0 => 'string', ), - 'ui\\draw\\text\\font\\descriptor::getItalic' => + 'ui\\draw\\text\\font\\descriptor::getitalic' => array ( 0 => 'int', ), - 'ui\\draw\\text\\font\\descriptor::getSize' => + 'ui\\draw\\text\\font\\descriptor::getsize' => array ( 0 => 'float', ), - 'ui\\draw\\text\\font\\descriptor::getStretch' => + 'ui\\draw\\text\\font\\descriptor::getstretch' => array ( 0 => 'int', ), - 'ui\\draw\\text\\font\\descriptor::getWeight' => + 'ui\\draw\\text\\font\\descriptor::getweight' => array ( 0 => 'int', ), @@ -80845,7 +80845,7 @@ array ( 0 => 'array', ), - 'ui\\draw\\text\\layout::setWidth' => + 'ui\\draw\\text\\layout::setwidth' => array ( 0 => 'mixed', 'width' => 'float', @@ -80854,7 +80854,7 @@ array ( 0 => 'void', ), - 'ui\\executor::onExecute' => + 'ui\\executor::onexecute' => array ( 0 => 'void', ), @@ -80864,28 +80864,28 @@ 'name' => 'string', 'type=' => 'string', ), - 'ui\\menu::appendAbout' => + 'ui\\menu::appendabout' => array ( 0 => 'UI\\MenuItem', 'type=' => 'string', ), - 'ui\\menu::appendCheck' => + 'ui\\menu::appendcheck' => array ( 0 => 'UI\\MenuItem', 'name' => 'string', 'type=' => 'string', ), - 'ui\\menu::appendPreferences' => + 'ui\\menu::appendpreferences' => array ( 0 => 'UI\\MenuItem', 'type=' => 'string', ), - 'ui\\menu::appendQuit' => + 'ui\\menu::appendquit' => array ( 0 => 'UI\\MenuItem', 'type=' => 'string', ), - 'ui\\menu::appendSeparator' => + 'ui\\menu::appendseparator' => array ( 0 => 'mixed', ), @@ -80897,33 +80897,33 @@ array ( 0 => 'mixed', ), - 'ui\\menuitem::isChecked' => + 'ui\\menuitem::ischecked' => array ( 0 => 'bool', ), - 'ui\\menuitem::onClick' => + 'ui\\menuitem::onclick' => array ( 0 => 'mixed', ), - 'ui\\menuitem::setChecked' => + 'ui\\menuitem::setchecked' => array ( 0 => 'mixed', 'checked' => 'bool', ), - 'ui\\point::getX' => + 'ui\\point::getx' => array ( 0 => 'float', ), - 'ui\\point::getY' => + 'ui\\point::gety' => array ( 0 => 'float', ), - 'ui\\point::setX' => + 'ui\\point::setx' => array ( 0 => 'mixed', 'point' => 'float', ), - 'ui\\point::setY' => + 'ui\\point::sety' => array ( 0 => 'mixed', 'point' => 'float', @@ -80937,20 +80937,20 @@ 0 => 'void', 'flags=' => 'int', ), - 'ui\\size::getHeight' => + 'ui\\size::getheight' => array ( 0 => 'float', ), - 'ui\\size::getWidth' => + 'ui\\size::getwidth' => array ( 0 => 'float', ), - 'ui\\size::setHeight' => + 'ui\\size::setheight' => array ( 0 => 'mixed', 'size' => 'float', ), - 'ui\\size::setWidth' => + 'ui\\size::setwidth' => array ( 0 => 'mixed', 'size' => 'float', @@ -80966,23 +80966,23 @@ 'title' => 'string', 'msg' => 'string', ), - 'ui\\window::getSize' => + 'ui\\window::getsize' => array ( 0 => 'UI\\Size', ), - 'ui\\window::getTitle' => + 'ui\\window::gettitle' => array ( 0 => 'string', ), - 'ui\\window::hasBorders' => + 'ui\\window::hasborders' => array ( 0 => 'bool', ), - 'ui\\window::hasMargin' => + 'ui\\window::hasmargin' => array ( 0 => 'bool', ), - 'ui\\window::isFullScreen' => + 'ui\\window::isfullscreen' => array ( 0 => 'bool', ), @@ -80992,7 +80992,7 @@ 'title' => 'string', 'msg' => 'string', ), - 'ui\\window::onClosing' => + 'ui\\window::onclosing' => array ( 0 => 'int', ), @@ -81004,27 +81004,27 @@ array ( 0 => 'string', ), - 'ui\\window::setBorders' => + 'ui\\window::setborders' => array ( 0 => 'mixed', 'borders' => 'bool', ), - 'ui\\window::setFullScreen' => + 'ui\\window::setfullscreen' => array ( 0 => 'mixed', 'full' => 'bool', ), - 'ui\\window::setMargin' => + 'ui\\window::setmargin' => array ( 0 => 'mixed', 'margin' => 'bool', ), - 'ui\\window::setSize' => + 'ui\\window::setsize' => array ( 0 => 'mixed', 'size' => 'UI\\Size', ), - 'ui\\window::setTitle' => + 'ui\\window::settitle' => array ( 0 => 'mixed', 'title' => 'string', @@ -81759,21 +81759,21 @@ 'var_name' => 'mixed', '...vars=' => 'mixed', ), - 'webObj::convertToString' => + 'webobj::converttostring' => array ( 0 => 'string', ), - 'webObj::free' => + 'webobj::free' => array ( 0 => 'void', ), - 'webObj::set' => + 'webobj::set' => array ( 0 => 'int', 'property_name' => 'string', 'new_value' => 'mixed', ), - 'webObj::updateFromString' => + 'webobj::updatefromstring' => array ( 0 => 'int', 'snippet' => 'string', @@ -82000,7 +82000,7 @@ array ( 0 => 'null|string', ), - 'wkhtmltox\\image\\converter::getVersion' => + 'wkhtmltox\\image\\converter::getversion' => array ( 0 => 'string', ), @@ -82013,7 +82013,7 @@ array ( 0 => 'null|string', ), - 'wkhtmltox\\pdf\\converter::getVersion' => + 'wkhtmltox\\pdf\\converter::getversion' => array ( 0 => 'string', ), diff --git a/src/Psalm/Internal/Codebase/InternalCallMapHandler.php b/src/Psalm/Internal/Codebase/InternalCallMapHandler.php index 2838ad66401..116f8001814 100644 --- a/src/Psalm/Internal/Codebase/InternalCallMapHandler.php +++ b/src/Psalm/Internal/Codebase/InternalCallMapHandler.php @@ -367,15 +367,8 @@ public static function getCallMap(): array return self::$call_map; } - /** @var non-empty-array> */ - $call_map_data = require(dirname(__DIR__, 4) . '/dictionaries/CallMap.php'); - - $call_map = []; - - foreach ($call_map_data as $key => $value) { - $cased_key = strtolower($key); - $call_map[$cased_key] = $value; - } + /** @var non-empty-array> */ + $call_map = require(dirname(__DIR__, 4) . '/dictionaries/CallMap.php'); self::$call_map = $call_map; @@ -412,18 +405,15 @@ public static function getCallMap(): array $diff_call_map = require($delta_file); foreach ($diff_call_map['added'] as $key => $_) { - $cased_key = strtolower($key); - unset(self::$call_map[$cased_key]); + unset(self::$call_map[$key]); } foreach ($diff_call_map['removed'] as $key => $value) { - $cased_key = strtolower($key); - self::$call_map[$cased_key] = $value; + self::$call_map[$key] = $value; } foreach ($diff_call_map['changed'] as $key => ['old' => $value]) { - $cased_key = strtolower($key); - self::$call_map[$cased_key] = $value; + self::$call_map[$key] = $value; } } }