├── .github └── workflows │ ├── main.yml │ ├── testLinks.yml │ └── testPeclExtensions.yml ├── .idea ├── encodings.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── modules.xml ├── php-docker-settings.xml ├── php-test-framework.xml ├── php.xml ├── phpstorm-stubs.iml ├── runConfigurations │ ├── AllTests.xml │ └── AllTestsWithCheckLinks.xml └── vcs.xml ├── .space.kts ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Core ├── Core.php ├── Core_c.php └── Core_d.php ├── Ev └── Ev.php ├── FFI ├── .phpstorm.meta.php └── FFI.php ├── Inspections.xml ├── LICENSE ├── LuaSandbox └── LuaSandbox.php ├── PDO └── PDO.php ├── Parle ├── ErrorInfo.php ├── Lexer.php ├── LexerException.php ├── Parser.php ├── ParserException.php ├── RLexer.php ├── RParser.php ├── Stack.php └── Token.php ├── Phar └── Phar.php ├── PhpStormStubsMap.php ├── README.md ├── Reflection ├── .phpstorm.meta.php ├── PropertyHookType.php ├── Reflection.php ├── ReflectionAttribute.php ├── ReflectionClass.php ├── ReflectionClassConstant.php ├── ReflectionConstant.php ├── ReflectionEnum.php ├── ReflectionEnumBackedCase.php ├── ReflectionEnumUnitCase.php ├── ReflectionException.php ├── ReflectionExtension.php ├── ReflectionFiber.php ├── ReflectionFunction.php ├── ReflectionFunctionAbstract.php ├── ReflectionGenerator.php ├── ReflectionIntersectionType.php ├── ReflectionMethod.php ├── ReflectionNamedType.php ├── ReflectionObject.php ├── ReflectionParameter.php ├── ReflectionProperty.php ├── ReflectionReference.php ├── ReflectionType.php ├── ReflectionUnionType.php ├── ReflectionZendExtension.php └── Reflector.php ├── SPL ├── SPL.php ├── SPL_c1.php └── SPL_f.php ├── SQLite └── SQLite.php ├── SaxonC └── SaxonC.php ├── SimpleXML └── SimpleXML.php ├── SplType └── SplType.php ├── Zend OPcache └── OPcache.php ├── ZendCache └── ZendCache.php ├── ZendDebugger └── ZendDebugger.php ├── ZendUtils └── ZendUtils.php ├── aerospike ├── Bytes.php └── aerospike.php ├── amqp └── amqp.php ├── apache └── apache.php ├── apcu └── apcu.php ├── ast └── ast.php ├── bcmath └── bcmath.php ├── blackfire └── blackfire.php ├── brotli └── brotli.php ├── bz2 └── bz2.php ├── calendar └── calendar.php ├── cassandra └── cassandra.php ├── com_dotnet └── com_dotnet.php ├── composer.json ├── composer.lock ├── couchbase └── couchbase.php ├── couchbase_v2 ├── couchbase.php └── toplevel.php ├── crypto └── crypto.php ├── ctype └── ctype.php ├── cubrid └── cubrid.php ├── curl ├── CURLStringFile.php ├── curl.php └── curl_d.php ├── date ├── date.php ├── date_c.php └── date_d.php ├── dba ├── Connection.php └── dba.php ├── decimal └── decimal.php ├── dio ├── dio.php └── dio_d.php ├── dom ├── dom.php ├── dom_c.php └── dom_n.php ├── ds └── ds.php ├── eio └── eio.php ├── elastic_apm └── elastic_apm.php ├── enchant └── enchant.php ├── event └── event.php ├── excimer ├── ExcimerLog.php ├── ExcimerLogEntry.php ├── ExcimerProfiler.php ├── ExcimerTimer.php └── globals.php ├── exif └── exif.php ├── expect └── expect.php ├── fann └── fann.php ├── ffmpeg └── ffmpeg.php ├── fileinfo └── fileinfo.php ├── filter ├── filter.php └── filter_c.php ├── fpm └── fpm.php ├── frankenphp └── frankenphp.php ├── ftp ├── Connection.php └── ftp.php ├── gd ├── GdFont.php └── gd.php ├── gearman └── gearman.php ├── geoip └── geoip.php ├── geos └── geos.php ├── gettext └── gettext.php ├── gmagick └── gmagick.php ├── gmp └── gmp.php ├── gnupg └── gnupg.php ├── grpc └── grpc.php ├── hash └── hash.php ├── http ├── http.php └── http3.php ├── ibm_db2 └── ibm_db2.php ├── iconv └── iconv.php ├── igbinary └── igbinary.php ├── imagick └── imagick.php ├── imap ├── Connection.php └── imap.php ├── inotify └── inotify.php ├── interbase └── interbase.php ├── intl ├── IntlChar.php ├── IntlDatePatternGenerator.php ├── IntlListFormatter.php └── intl.php ├── json └── json.php ├── jsonpath └── jsonpath.php ├── judy └── judy.php ├── ldap ├── Connection.php ├── Result.php ├── ResultEntry.php └── ldap.php ├── leveldb └── LevelDB.php ├── libevent └── libevent.php ├── libsodium ├── libsodium.php ├── libsodium_d.php └── libsodium_f.php ├── libvirt-php └── libvirt-php.php ├── libxml └── libxml.php ├── lua └── lua.php ├── lzf └── lzf.php ├── mailparse └── mailparse.php ├── mapscript └── mapscript.php ├── maxminddb └── maxminddb.php ├── mbstring └── mbstring.php ├── mcrypt └── mcrypt.php ├── memcache └── memcache.php ├── memcached └── memcached.php ├── meminfo └── meminfo.php ├── meta ├── .phpstorm.meta.php ├── attributes │ ├── ArrayShape.php │ ├── Deprecated.php │ ├── ExpectedValues.php │ ├── Immutable.php │ ├── Language.php │ ├── NoReturn.php │ ├── ObjectShape.php │ ├── Pure.php │ └── internal │ │ ├── LanguageLevelTypeAware.php │ │ ├── PhpStormStubsElementAvailable.php │ │ ├── ReturnTypeContract.php │ │ └── TentativeType.php ├── encodings │ └── .phpstorm.meta.php ├── guzzle │ └── .phpstorm.meta.php ├── hash_algo │ └── .phpstorm.meta.php ├── locales │ └── .phpstorm.meta.php ├── mockery │ └── .phpstorm.meta.php ├── pest │ └── .phpstorm.meta.php ├── phpunit │ └── .phpstorm.meta.php └── psr │ └── log │ └── .phpstorm.meta.php ├── ming └── ming.php ├── mongo └── mongo.php ├── mongodb ├── BSON │ ├── Binary.php │ ├── BinaryInterface.php │ ├── DBPointer.php │ ├── Decimal128.php │ ├── Decimal128Interface.php │ ├── Document.php │ ├── Int64.php │ ├── Iterator.php │ ├── Javascript.php │ ├── JavascriptInterface.php │ ├── MaxKey.php │ ├── MaxKeyInterface.php │ ├── MinKey.php │ ├── MinKeyInterface.php │ ├── ObjectId.php │ ├── ObjectIdInterface.php │ ├── PackedArray.php │ ├── Persistable.php │ ├── Regex.php │ ├── RegexInterface.php │ ├── Serializable.php │ ├── Symbol.php │ ├── Timestamp.php │ ├── TimestampInterface.php │ ├── Type.php │ ├── UTCDateTime.php │ ├── UTCDateTimeInterface.php │ ├── Undefined.php │ └── Unserializable.php ├── BulkWrite.php ├── BulkWriteCommand.stub.php ├── BulkWriteCommandResult.stub.php ├── ClientEncryption.php ├── Command.php ├── Cursor.php ├── CursorInterface.php ├── Exception │ ├── AuthenticationException.php │ ├── BulkWriteCommandException.stub.php │ ├── BulkWriteException.php │ ├── CommandException.php │ ├── ConnectionException.php │ ├── ConnectionTimeoutException.php │ ├── EncryptionException.php │ ├── Exception.php │ ├── ExecutionTimeoutException.php │ ├── InvalidArgumentException.php │ ├── LogicException.php │ ├── RuntimeException.php │ ├── ServerException.php │ ├── UnexpectedValueException.php │ └── WriteConcernException.php ├── Manager.php ├── Monitoring │ ├── CommandFailedEvent.php │ ├── CommandStartedEvent.php │ ├── CommandSubscriber.php │ ├── CommandSucceededEvent.php │ ├── LogSubscriber.php │ ├── SDAMSubscriber.php │ ├── ServerChangedEvent.php │ ├── ServerClosedEvent.php │ ├── ServerHeartbeatFailedEvent.php │ ├── ServerHeartbeatStartedEvent.php │ ├── ServerHeartbeatSucceededEvent.php │ ├── ServerOpeningEvent.php │ ├── Subscriber.php │ ├── TopologyChangedEvent.php │ ├── TopologyClosedEvent.php │ ├── TopologyOpeningEvent.php │ └── functions.php ├── Query.php ├── ReadConcern.php ├── ReadPreference.php ├── Server.php ├── ServerApi.php ├── ServerDescription.php ├── Session.php ├── TopologyDescription.php ├── WriteConcern.php ├── WriteConcernError.php ├── WriteError.php ├── WriteResult.php └── mongodb.php ├── mosquitto-php └── mosquitto-php.php ├── mqseries └── mqseries.php ├── msgpack └── msgpack.php ├── mssql └── mssql.php ├── mysql └── mysql.php ├── mysql_xdevapi └── mysql_xdevapi.php ├── mysqli └── mysqli.php ├── ncurses └── ncurses.php ├── newrelic └── newrelic.php ├── oauth └── oauth.php ├── oci8 ├── oci8.php └── oci8v3.php ├── odbc └── odbc.php ├── openssl └── openssl.php ├── opentelemetry └── opentelemetry.php ├── pam └── pam.php ├── parallel ├── parallel.php └── parallel │ ├── Channel.php │ ├── Channel │ ├── Error.php │ └── Error │ │ ├── Closed.php │ │ ├── Existence.php │ │ └── IllegalValue.php │ ├── Error.php │ ├── Events.php │ ├── Events │ ├── Error.php │ ├── Error │ │ ├── Existence.php │ │ └── Timeout.php │ ├── Event.php │ ├── Event │ │ ├── Error.php │ │ └── Type.php │ ├── Input.php │ └── Input │ │ ├── Error.php │ │ └── Error │ │ ├── Existence.php │ │ └── IllegalValue.php │ ├── Future.php │ ├── Future │ ├── Error.php │ └── Error │ │ ├── Cancelled.php │ │ ├── Foreign.php │ │ └── Killed.php │ ├── Runtime.php │ ├── Runtime │ ├── Error.php │ ├── Error │ │ ├── Bootstrap.php │ │ ├── Closed.php │ │ ├── IllegalFunction.php │ │ ├── IllegalInstruction.php │ │ ├── IllegalParameter.php │ │ ├── IllegalReturn.php │ │ ├── IllegalVariable.php │ │ └── Killed.php │ ├── Object │ │ └── Unavailable.php │ └── Type │ │ └── Unavailable.php │ ├── Sync.php │ └── Sync │ ├── Error.php │ └── Error │ └── IllegalValue.php ├── pcntl ├── pcntl.php └── pcntl_c.php ├── pcov └── pcov.php ├── pcre └── pcre.php ├── pdflib └── PDFlib.php ├── pgsql ├── pgsql.php └── pgsql_c.php ├── phpdbg └── phpdbg.php ├── posix └── posix.php ├── pq └── pq.php ├── pspell ├── pspell.php └── pspell_c.php ├── pthreads └── pthreads.php ├── qodana.yaml ├── radius └── radius.php ├── random └── random.php ├── rar └── rar.php ├── rdkafka ├── RdKafka.php ├── RdKafka │ ├── Conf.php │ ├── Consumer.php │ ├── ConsumerTopic.php │ ├── Exception.php │ ├── KafkaConsumer.php │ ├── KafkaConsumerTopic.php │ ├── KafkaErrorException.php │ ├── Message.php │ ├── Metadata.php │ ├── Metadata │ │ ├── Broker.php │ │ ├── Collection.php │ │ ├── Partition.php │ │ └── Topic.php │ ├── Producer.php │ ├── ProducerTopic.php │ ├── Queue.php │ ├── Topic.php │ ├── TopicConf.php │ └── TopicPartition.php ├── constants.php └── functions.php ├── readline └── readline.php ├── recode └── recode.php ├── redis ├── Redis.php ├── RedisArray.php ├── RedisCluster.php └── RedisSentinel.php ├── regex └── ereg.php ├── relay ├── AdaptiveCache.php ├── Cluster.php ├── Event.php ├── Events.php ├── Exception.php ├── KeyType.php ├── Relay.php ├── Sentinel.php └── Table.php ├── rpminfo └── rpminfo.php ├── rrd └── rrd.php ├── runTests.sh ├── session ├── SessionHandler.php └── session.php ├── shmop └── shmop.php ├── simdjson └── simdjson.php ├── simple_kafka_client ├── SimpleKafkaClient.php ├── SimpleKafkaClient │ ├── Configuration.php │ ├── Consumer.php │ ├── Exception.php │ ├── KafkaErrorException.php │ ├── Message.php │ ├── Metadata.php │ ├── Metadata │ │ ├── Broker.php │ │ ├── Collection.php │ │ ├── Partition.php │ │ └── Topic.php │ ├── Producer.php │ ├── Topic.php │ └── TopicPartition.php └── functions.php ├── snappy └── snappy │ └── snappy.php ├── snmp └── snmp.php ├── soap ├── soap.php └── soap_n.php ├── sockets └── sockets.php ├── sodium └── sodium.php ├── solr ├── Documents │ ├── SolrDocument.php │ ├── SolrDocumentField.php │ └── SolrInputDocument.php ├── Exceptions │ ├── SolrClientException.php │ ├── SolrException.php │ ├── SolrIllegalArgumentException.php │ ├── SolrIllegalOperationException.php │ ├── SolrMissingMandatoryParameterException.php │ └── SolrServerException.php ├── Queries │ ├── SolrCollapseFunction.php │ ├── SolrDisMaxQuery.php │ ├── SolrModifiableParams.php │ ├── SolrParams.php │ └── SolrQuery.php ├── Responses │ ├── SolrGenericResponse.php │ ├── SolrPingResponse.php │ ├── SolrQueryResponse.php │ ├── SolrResponse.php │ └── SolrUpdateResponse.php ├── SolrClient.php ├── Utils │ ├── SolrObject.php │ └── SolrUtils.php ├── constants.php └── functions.php ├── sqlite3 └── sqlite3.php ├── sqlsrv └── sqlsrv.php ├── ssh2 └── ssh2.php ├── standard ├── _standard_manual.php ├── _types.php ├── basic.php ├── password.php ├── standard_0.php ├── standard_1.php ├── standard_10.php ├── standard_2.php ├── standard_3.php ├── standard_4.php ├── standard_5.php ├── standard_6.php ├── standard_7.php ├── standard_8.php ├── standard_9.php └── standard_defines.php ├── stats └── stats.php ├── stomp └── stomp.php ├── suhosin └── suhosin.php ├── superglobals └── _superglobals.php ├── svm ├── SVM.php └── SVMModel.php ├── svn └── svn.php ├── swoole ├── Swoole │ ├── Atomic.php │ ├── Atomic │ │ └── Long.php │ ├── Client.php │ ├── Client │ │ └── Exception.php │ ├── Connection │ │ └── Iterator.php │ ├── Coroutine.php │ ├── Coroutine │ │ ├── Channel.php │ │ ├── Client.php │ │ ├── Context.php │ │ ├── Curl │ │ │ └── Exception.php │ │ ├── Http │ │ │ ├── Client.php │ │ │ ├── Client │ │ │ │ └── Exception.php │ │ │ └── Server.php │ │ ├── Http2 │ │ │ ├── Client.php │ │ │ └── Client │ │ │ │ └── Exception.php │ │ ├── Iterator.php │ │ ├── MySQL.php │ │ ├── MySQL │ │ │ ├── Exception.php │ │ │ └── Statement.php │ │ ├── Redis.php │ │ ├── Scheduler.php │ │ ├── Socket.php │ │ ├── Socket │ │ │ └── Exception.php │ │ └── System.php │ ├── Error.php │ ├── Event.php │ ├── Exception.php │ ├── ExitException.php │ ├── Http │ │ ├── Request.php │ │ ├── Response.php │ │ └── Server.php │ ├── Http2 │ │ ├── Request.php │ │ └── Response.php │ ├── Lock.php │ ├── Process.php │ ├── Process │ │ └── Pool.php │ ├── Redis │ │ └── Server.php │ ├── Runtime.php │ ├── Server.php │ ├── Server │ │ ├── Event.php │ │ ├── Packet.php │ │ ├── PipeMessage.php │ │ ├── Port.php │ │ ├── StatusInfo.php │ │ ├── Task.php │ │ └── TaskResult.php │ ├── Table.php │ ├── Timer.php │ ├── Timer │ │ └── Iterator.php │ └── WebSocket │ │ ├── CloseFrame.php │ │ ├── Frame.php │ │ └── Server.php ├── aliases.php ├── constants.php └── functions.php ├── sybase └── sybase_ct.php ├── sync └── sync.php ├── sysvmsg └── sysvmsg.php ├── sysvsem └── sysvsem.php ├── sysvshm └── sysvshm.php ├── tests ├── .phpstorm.meta.php ├── AbstractBaseStubsTestCase.php ├── BaseClassesTest.php ├── BaseConstantsTest.php ├── BaseEnumsTest.php ├── BaseFunctionsTest.php ├── BaseInterfacesTest.php ├── CheckStubMapTest.php ├── CodeStyle │ └── BracesOneLineFixer.php ├── DockerImages │ ├── 5.6 │ │ └── Dockerfile │ ├── 7.0 │ │ └── Dockerfile │ ├── 7.1 │ │ └── Dockerfile │ ├── 7.2 │ │ └── Dockerfile │ ├── 7.3 │ │ └── Dockerfile │ ├── 7.4 │ │ └── Dockerfile │ ├── 8.0 │ │ └── Dockerfile │ ├── 8.1 │ │ └── Dockerfile │ ├── 8.2 │ │ └── Dockerfile │ ├── 8.3 │ │ └── Dockerfile │ ├── 8.4 │ │ └── Dockerfile │ ├── 8.5 │ │ └── Dockerfile │ ├── peclExtensions │ │ └── Dockerfile │ └── testRunner │ │ └── Dockerfile ├── Model │ ├── BasePHPClass.php │ ├── BasePHPElement.php │ ├── CommonUtils.php │ ├── PHPClass.php │ ├── PHPClassConstant.php │ ├── PHPConstant.php │ ├── PHPConstantDeclaration.php │ ├── PHPDefineConstant.php │ ├── PHPDocElement.php │ ├── PHPEnum.php │ ├── PHPEnumCase.php │ ├── PHPFunction.php │ ├── PHPInterface.php │ ├── PHPMethod.php │ ├── PHPNamespacedElement.php │ ├── PHPParameter.php │ ├── PHPProperty.php │ ├── PhpVersions.php │ ├── StubProblemType.php │ ├── StubsContainer.php │ └── Tags │ │ └── RemovedTag.php ├── Parsers │ ├── DocFactoryProvider.php │ ├── ExpectedFunctionArgumentsInfo.php │ ├── MetaExpectedArgumentsCollector.php │ ├── PHPReflectionParser.php │ ├── ParserUtils.php │ ├── StubParser.php │ ├── StubsParserErrorHandler.php │ └── Visitors │ │ ├── ASTVisitor.php │ │ ├── CoreStubASTVisitor.php │ │ ├── MetaOverrideFunctionsParser.php │ │ └── ParentConnector.php ├── StubsCompositeMixedReturnTypeTest.php ├── StubsConstantsAndParametersValuesTest.php ├── StubsForbiddenTypeHintsTest.php ├── StubsMetaExpectedArgumentsTest.php ├── StubsMetaInternalTagTest.php ├── StubsParameterNamesTest.php ├── StubsPhp81Tests.php ├── StubsPhpDocTest.php ├── StubsReflectionClassesTest.php ├── StubsStructureTest.php ├── StubsTypeHintsTest.php ├── TestData │ ├── Providers │ │ ├── EntitiesFilter.php │ │ ├── PhpStormStubsSingleton.php │ │ ├── Reflection │ │ │ ├── ReflectionClassesTestDataProviders.php │ │ │ ├── ReflectionConstantsProvider.php │ │ │ ├── ReflectionFunctionsProvider.php │ │ │ ├── ReflectionMethodsProvider.php │ │ │ ├── ReflectionParametersProvider.php │ │ │ └── ReflectionPropertiesProvider.php │ │ ├── ReflectionStubsSingleton.php │ │ └── Stubs │ │ │ ├── PhpCoreStubsProvider.php │ │ │ ├── StubConstantsProvider.php │ │ │ ├── StubMethodsProvider.php │ │ │ ├── StubsCompositeMixedProvider.php │ │ │ ├── StubsParametersProvider.php │ │ │ └── StubsTestDataProviders.php │ └── mutedProblems.json └── Tools │ ├── ModelAutoloader.php │ ├── dump-pecl-to-file.php │ ├── dump-reflection-to-file.php │ └── generate-stub-map ├── tidy └── tidy.php ├── tokenizer ├── PhpToken.php └── tokenizer.php ├── uopz └── uopz.php ├── uploadprogress └── uploadprogress.php ├── uri └── uri.php ├── uuid └── uuid_c.php ├── uv ├── UV.php └── uv_functions.php ├── v8js └── v8js.php ├── wddx └── wddx.php ├── win32service └── win32service.php ├── winbinder └── winbinder.php ├── wincache └── wincache.php ├── xcache └── xcache.php ├── xdebug └── xdebug.php ├── xdiff └── xdiff.php ├── xhprof └── xhprof.php ├── xlswriter └── xlswriter.php ├── xml └── xml.php ├── xmlreader └── xmlreader.php ├── xmlrpc └── xmlrpc.php ├── xmlwriter └── xmlwriter.php ├── xsl └── xsl.php ├── xxtea └── xxtea.php ├── yaf ├── yaf.php └── yaf_namespace.php ├── yaml └── yaml.php ├── yar └── yar.php ├── zend ├── zend.php ├── zend_d.php └── zend_f.php ├── zip └── zip.php ├── zlib └── zlib.php ├── zmq └── zmq.php ├── zookeeper └── zookeeper.php └── zstd └── zstd.php /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/testLinks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.github/workflows/testLinks.yml -------------------------------------------------------------------------------- /.github/workflows/testPeclExtensions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.github/workflows/testPeclExtensions.yml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php-docker-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.idea/php-docker-settings.xml -------------------------------------------------------------------------------- /.idea/php-test-framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.idea/php-test-framework.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/phpstorm-stubs.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.idea/phpstorm-stubs.iml -------------------------------------------------------------------------------- /.idea/runConfigurations/AllTests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.idea/runConfigurations/AllTests.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/AllTestsWithCheckLinks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.idea/runConfigurations/AllTestsWithCheckLinks.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.space.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/.space.kts -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Core/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Core/Core.php -------------------------------------------------------------------------------- /Core/Core_c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Core/Core_c.php -------------------------------------------------------------------------------- /Core/Core_d.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Core/Core_d.php -------------------------------------------------------------------------------- /Ev/Ev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Ev/Ev.php -------------------------------------------------------------------------------- /FFI/.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/FFI/.phpstorm.meta.php -------------------------------------------------------------------------------- /FFI/FFI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/FFI/FFI.php -------------------------------------------------------------------------------- /Inspections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Inspections.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/LICENSE -------------------------------------------------------------------------------- /LuaSandbox/LuaSandbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/LuaSandbox/LuaSandbox.php -------------------------------------------------------------------------------- /PDO/PDO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/PDO/PDO.php -------------------------------------------------------------------------------- /Parle/ErrorInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Parle/ErrorInfo.php -------------------------------------------------------------------------------- /Parle/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Parle/Lexer.php -------------------------------------------------------------------------------- /Parle/LexerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Parle/LexerException.php -------------------------------------------------------------------------------- /Parle/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Parle/Parser.php -------------------------------------------------------------------------------- /Parle/ParserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Parle/ParserException.php -------------------------------------------------------------------------------- /Parle/RLexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Parle/RLexer.php -------------------------------------------------------------------------------- /Parle/RParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Parle/RParser.php -------------------------------------------------------------------------------- /Parle/Stack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Parle/Stack.php -------------------------------------------------------------------------------- /Parle/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Parle/Token.php -------------------------------------------------------------------------------- /Phar/Phar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Phar/Phar.php -------------------------------------------------------------------------------- /PhpStormStubsMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/PhpStormStubsMap.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/README.md -------------------------------------------------------------------------------- /Reflection/.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/.phpstorm.meta.php -------------------------------------------------------------------------------- /Reflection/PropertyHookType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/PropertyHookType.php -------------------------------------------------------------------------------- /Reflection/Reflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/Reflection.php -------------------------------------------------------------------------------- /Reflection/ReflectionAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionAttribute.php -------------------------------------------------------------------------------- /Reflection/ReflectionClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionClass.php -------------------------------------------------------------------------------- /Reflection/ReflectionClassConstant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionClassConstant.php -------------------------------------------------------------------------------- /Reflection/ReflectionConstant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionConstant.php -------------------------------------------------------------------------------- /Reflection/ReflectionEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionEnum.php -------------------------------------------------------------------------------- /Reflection/ReflectionEnumBackedCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionEnumBackedCase.php -------------------------------------------------------------------------------- /Reflection/ReflectionEnumUnitCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionEnumUnitCase.php -------------------------------------------------------------------------------- /Reflection/ReflectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionException.php -------------------------------------------------------------------------------- /Reflection/ReflectionExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionExtension.php -------------------------------------------------------------------------------- /Reflection/ReflectionFiber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionFiber.php -------------------------------------------------------------------------------- /Reflection/ReflectionFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionFunction.php -------------------------------------------------------------------------------- /Reflection/ReflectionFunctionAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionFunctionAbstract.php -------------------------------------------------------------------------------- /Reflection/ReflectionGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionGenerator.php -------------------------------------------------------------------------------- /Reflection/ReflectionIntersectionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionIntersectionType.php -------------------------------------------------------------------------------- /Reflection/ReflectionMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionMethod.php -------------------------------------------------------------------------------- /Reflection/ReflectionNamedType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionNamedType.php -------------------------------------------------------------------------------- /Reflection/ReflectionObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionObject.php -------------------------------------------------------------------------------- /Reflection/ReflectionParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionParameter.php -------------------------------------------------------------------------------- /Reflection/ReflectionProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionProperty.php -------------------------------------------------------------------------------- /Reflection/ReflectionReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionReference.php -------------------------------------------------------------------------------- /Reflection/ReflectionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionType.php -------------------------------------------------------------------------------- /Reflection/ReflectionUnionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionUnionType.php -------------------------------------------------------------------------------- /Reflection/ReflectionZendExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/ReflectionZendExtension.php -------------------------------------------------------------------------------- /Reflection/Reflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Reflection/Reflector.php -------------------------------------------------------------------------------- /SPL/SPL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/SPL/SPL.php -------------------------------------------------------------------------------- /SPL/SPL_c1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/SPL/SPL_c1.php -------------------------------------------------------------------------------- /SPL/SPL_f.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/SPL/SPL_f.php -------------------------------------------------------------------------------- /SQLite/SQLite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/SQLite/SQLite.php -------------------------------------------------------------------------------- /SaxonC/SaxonC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/SaxonC/SaxonC.php -------------------------------------------------------------------------------- /SimpleXML/SimpleXML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/SimpleXML/SimpleXML.php -------------------------------------------------------------------------------- /SplType/SplType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/SplType/SplType.php -------------------------------------------------------------------------------- /Zend OPcache/OPcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/Zend OPcache/OPcache.php -------------------------------------------------------------------------------- /ZendCache/ZendCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/ZendCache/ZendCache.php -------------------------------------------------------------------------------- /ZendDebugger/ZendDebugger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/ZendDebugger/ZendDebugger.php -------------------------------------------------------------------------------- /ZendUtils/ZendUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/ZendUtils/ZendUtils.php -------------------------------------------------------------------------------- /aerospike/Bytes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/aerospike/Bytes.php -------------------------------------------------------------------------------- /aerospike/aerospike.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/aerospike/aerospike.php -------------------------------------------------------------------------------- /amqp/amqp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/amqp/amqp.php -------------------------------------------------------------------------------- /apache/apache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/apache/apache.php -------------------------------------------------------------------------------- /apcu/apcu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/apcu/apcu.php -------------------------------------------------------------------------------- /ast/ast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/ast/ast.php -------------------------------------------------------------------------------- /bcmath/bcmath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/bcmath/bcmath.php -------------------------------------------------------------------------------- /blackfire/blackfire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/blackfire/blackfire.php -------------------------------------------------------------------------------- /brotli/brotli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/brotli/brotli.php -------------------------------------------------------------------------------- /bz2/bz2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/bz2/bz2.php -------------------------------------------------------------------------------- /calendar/calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/calendar/calendar.php -------------------------------------------------------------------------------- /cassandra/cassandra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/cassandra/cassandra.php -------------------------------------------------------------------------------- /com_dotnet/com_dotnet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/com_dotnet/com_dotnet.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/composer.lock -------------------------------------------------------------------------------- /couchbase/couchbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/couchbase/couchbase.php -------------------------------------------------------------------------------- /couchbase_v2/couchbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/couchbase_v2/couchbase.php -------------------------------------------------------------------------------- /couchbase_v2/toplevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/couchbase_v2/toplevel.php -------------------------------------------------------------------------------- /crypto/crypto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/crypto/crypto.php -------------------------------------------------------------------------------- /ctype/ctype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/ctype/ctype.php -------------------------------------------------------------------------------- /cubrid/cubrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/cubrid/cubrid.php -------------------------------------------------------------------------------- /curl/CURLStringFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/curl/CURLStringFile.php -------------------------------------------------------------------------------- /curl/curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/curl/curl.php -------------------------------------------------------------------------------- /curl/curl_d.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/curl/curl_d.php -------------------------------------------------------------------------------- /date/date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/date/date.php -------------------------------------------------------------------------------- /date/date_c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/date/date_c.php -------------------------------------------------------------------------------- /date/date_d.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/date/date_d.php -------------------------------------------------------------------------------- /dba/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/dba/Connection.php -------------------------------------------------------------------------------- /dba/dba.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/dba/dba.php -------------------------------------------------------------------------------- /decimal/decimal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/decimal/decimal.php -------------------------------------------------------------------------------- /dio/dio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/dio/dio.php -------------------------------------------------------------------------------- /dio/dio_d.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/dio/dio_d.php -------------------------------------------------------------------------------- /dom/dom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/dom/dom.php -------------------------------------------------------------------------------- /dom/dom_c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/dom/dom_c.php -------------------------------------------------------------------------------- /dom/dom_n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/dom/dom_n.php -------------------------------------------------------------------------------- /ds/ds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/ds/ds.php -------------------------------------------------------------------------------- /eio/eio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/eio/eio.php -------------------------------------------------------------------------------- /elastic_apm/elastic_apm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/elastic_apm/elastic_apm.php -------------------------------------------------------------------------------- /enchant/enchant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/enchant/enchant.php -------------------------------------------------------------------------------- /event/event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/event/event.php -------------------------------------------------------------------------------- /excimer/ExcimerLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/excimer/ExcimerLog.php -------------------------------------------------------------------------------- /excimer/ExcimerLogEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/excimer/ExcimerLogEntry.php -------------------------------------------------------------------------------- /excimer/ExcimerProfiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/excimer/ExcimerProfiler.php -------------------------------------------------------------------------------- /excimer/ExcimerTimer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/excimer/ExcimerTimer.php -------------------------------------------------------------------------------- /excimer/globals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/excimer/globals.php -------------------------------------------------------------------------------- /exif/exif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/exif/exif.php -------------------------------------------------------------------------------- /expect/expect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/expect/expect.php -------------------------------------------------------------------------------- /fann/fann.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/fann/fann.php -------------------------------------------------------------------------------- /ffmpeg/ffmpeg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/ffmpeg/ffmpeg.php -------------------------------------------------------------------------------- /fileinfo/fileinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/fileinfo/fileinfo.php -------------------------------------------------------------------------------- /filter/filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/filter/filter.php -------------------------------------------------------------------------------- /filter/filter_c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/filter/filter_c.php -------------------------------------------------------------------------------- /fpm/fpm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/fpm/fpm.php -------------------------------------------------------------------------------- /frankenphp/frankenphp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/frankenphp/frankenphp.php -------------------------------------------------------------------------------- /ftp/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/ftp/Connection.php -------------------------------------------------------------------------------- /ftp/ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-stubs/HEAD/ftp/ftp.php -------------------------------------------------------------------------------- /gd/GdFont.php: -------------------------------------------------------------------------------- 1 |