diff --git a/dictionaries/PropertyMap.php b/dictionaries/PropertyMap.php index 30389cf2ec3..d8396702429 100644 --- a/dictionaries/PropertyMap.php +++ b/dictionaries/PropertyMap.php @@ -9,15 +9,15 @@ return [ 'commonmark\\node' => [ - 'endcolumn' => 'int', - 'endline' => 'int', - 'firstchild' => 'Node|null', - 'lastchild' => 'Node|null', + 'endColumn' => 'int', + 'endLine' => 'int', + 'firstChild' => 'Node|null', + 'lastChild' => 'Node|null', 'next' => 'Node|null', 'parent' => 'Node|null', 'previous' => 'Node|null', - 'startcolumn' => 'int', - 'startline' => 'int', + 'startColumn' => 'int', + 'startLine' => 'int', ], 'commonmark\\node\\bulletlist' => [ 'delimiter' => 'int', @@ -27,12 +27,12 @@ 'fence' => 'string|null', ], 'commonmark\\node\\customblock' => [ - 'onenter' => 'string|null', - 'onleave' => 'string|null', + 'onEnter' => 'string|null', + 'onLeave' => 'string|null', ], 'commonmark\\node\\custominline' => [ - 'onenter' => 'string|null', - 'onleave' => 'string|null', + 'onEnter' => 'string|null', + 'onLeave' => 'string|null', ], 'commonmark\\node\\heading' => [ 'level' => 'int', @@ -90,45 +90,45 @@ ], 'domattr' => [ 'name' => 'string', - 'ownerelement' => 'DOMElement|null', - 'schematypeinfo' => 'mixed', + 'ownerElement' => 'DOMElement|null', + 'schemaTypeInfo' => 'mixed', 'specified' => 'bool', 'value' => 'string', ], 'domcharacterdata' => [ 'data' => 'string', 'length' => 'int', - 'nextelementsibling' => 'DOMElement|null', - 'previouselementsibling' => 'DOMElement|null', + 'nextElementSibling' => 'DOMElement|null', + 'previousElementSibling' => 'DOMElement|null', ], 'domdocument' => [ - 'actualencoding' => 'string|null', - 'childelementcount' => 'int', + 'actualEncoding' => 'string|null', + 'childElementCount' => 'int', 'config' => 'mixed', 'doctype' => 'DOMDocumentType|null', - 'documentelement' => 'DOMElement|null', - 'documenturi' => 'string|null', + 'documentElement' => 'DOMElement|null', + 'documentURI' => 'string|null', 'encoding' => 'string|null', - 'firstelementchild' => 'DOMElement|null', - 'formatoutput' => 'bool', + 'firstElementChild' => 'DOMElement|null', + 'formatOutput' => 'bool', 'implementation' => 'DOMImplementation', - 'lastelementchild' => 'DOMElement|null', - 'preservewhitespace' => 'bool', + 'lastElementChild' => 'DOMElement|null', + 'preserveWhitespace' => 'bool', 'recover' => 'bool', - 'resolveexternals' => 'bool', + 'resolveExternals' => 'bool', 'standalone' => 'bool', - 'stricterrorchecking' => 'bool', - 'substituteentities' => 'bool', - 'validateonparse' => 'bool', + 'strictErrorChecking' => 'bool', + 'substituteEntities' => 'bool', + 'validateOnParse' => 'bool', 'version' => 'string|null', - 'xmlencoding' => 'string|null', - 'xmlstandalone' => 'bool', - 'xmlversion' => 'string|null', + 'xmlEncoding' => 'string|null', + 'xmlStandalone' => 'bool', + 'xmlVersion' => 'string|null', ], 'domdocumentfragment' => [ - 'childelementcount' => 'int', - 'firstelementchild' => 'DOMElement|null', - 'lastelementchild' => 'DOMElement|null', + 'childElementCount' => 'int', + 'firstelementChild' => 'DOMElement|null', + 'lastelementChild' => 'DOMElement|null', ], 'domdocumenttype' => [ 'entities' => 'DOMNamedNodeMap', @@ -139,18 +139,18 @@ 'systemid' => 'string', ], 'domelement' => [ - 'childelementcount' => 'int', - 'firstelementchild' => 'DOMElement|null', - 'lastelementchild' => 'DOMElement|null', - 'nextelementsibling' => 'DOMElement|null', - 'previouselementsibling' => 'DOMElement|null', - 'schematypeinfo' => 'mixed', - 'tagname' => 'string', + 'childElementCount' => 'int', + 'firstElementChild' => 'DOMElement|null', + 'lastElementChild' => 'DOMElement|null', + 'nextElementSibling' => 'DOMElement|null', + 'previousElementSibling' => 'DOMElement|null', + 'schemaTypeInfo' => 'mixed', + 'tagName' => 'string', ], 'domentity' => [ - 'actualencoding' => 'string|null', + 'actualEncoding' => 'string|null', 'encoding' => 'string|null', - 'notationname' => 'string|null', + 'notationName' => 'string|null', 'publicid' => 'string|null', 'systemid' => 'string|null', 'version' => 'string|null', @@ -163,39 +163,39 @@ ], 'domnode' => [ 'attributes' => 'DOMNamedNodeMap|null', - 'baseuri' => 'string|null', - 'childnodes' => 'DOMNodeList', - 'firstchild' => 'DOMNode|null', - 'lastchild' => 'DOMNode|null', - 'localname' => 'string|null', - 'namespaceuri' => 'string|null', - 'nextsibling' => 'DOMNode|null', - 'nodename' => 'string', - 'nodetype' => 'int', - 'nodevalue' => 'string|null', - 'ownerdocument' => 'DOMDocument|null', - 'parentnode' => 'DOMNode|null', + 'baseURI' => 'string|null', + 'childNodes' => 'DOMNodeList', + 'firstChild' => 'DOMNode|null', + 'lastChild' => 'DOMNode|null', + 'localName' => 'string|null', + 'namespaceURI' => 'string|null', + 'nextSibling' => 'DOMNode|null', + 'nodeName' => 'string', + 'nodeType' => 'int', + 'nodeValue' => 'string|null', + 'ownerDocument' => 'DOMDocument|null', + 'parentNode' => 'DOMNode|null', 'prefix' => 'string', - 'previoussibling' => 'DOMNode|null', - 'textcontent' => 'string', + 'previousSibling' => 'DOMNode|null', + 'textContent' => 'string', ], 'domnodelist' => [ 'length' => 'int', ], 'domnotation' => [ - 'publicid' => 'string', - 'systemid' => 'string', + 'publicId' => 'string', + 'systemId' => 'string', ], 'domprocessinginstruction' => [ 'data' => 'string', 'target' => 'string', ], 'domtext' => [ - 'wholetext' => 'string', + 'wholeText' => 'string', ], 'domxpath' => [ 'document' => 'DOMDocument', - 'registernodenamespaces' => 'bool', + 'registerNodeNamespaces' => 'bool', ], 'errorexception' => [ 'severity' => 'int', @@ -245,9 +245,6 @@ 'w' => 'integer', 'wtimeout' => 'integer', ], - 'mongodb-driver-exception-writeexception' => [ - 'writeresult' => 'MongoDBDriverWriteResult', - ], 'mongodb\\driver\\exception\\commandexception' => [ 'resultdocument' => 'object', ], @@ -364,10 +361,10 @@ ], 'pdoexception' => [ 'code' => 'int|string', - 'errorinfo' => 'array|null', + 'errorInfo' => 'array|null', ], 'pdostatement' => [ - 'querystring' => 'string', + 'queryString' => 'string', ], 'php_user_filter' => [ 'filtername' => 'string', @@ -528,7 +525,7 @@ 'soapheader' => [ 'actor' => 'string|int|null', 'data' => 'mixed', - 'mustunderstand' => 'bool', + 'mustUnderstand' => 'bool', 'name' => 'string', 'namespace' => 'string', ], @@ -574,7 +571,7 @@ 'context' => 'resource', ], 'tidy' => [ - 'errorbuffer' => 'string', + 'errorBuffer' => 'string', 'value' => 'string|null', ], 'tidynode' => [ @@ -595,27 +592,27 @@ 'id' => 'string', ], 'xmlreader' => [ - 'attributecount' => 'int', - 'baseuri' => 'string', + 'attributeCount' => 'int', + 'baseURI' => 'string', 'depth' => 'int', - 'hasattributes' => 'bool', - 'hasvalue' => 'bool', - 'isdefault' => 'bool', - 'isemptyelement' => 'bool', - 'localname' => 'string', + 'hasAttributes' => 'bool', + 'hasValue' => 'bool', + 'isDefault' => 'bool', + 'isEmptyElement' => 'bool', + 'localName' => 'string', 'name' => 'string', - 'namespaceuri' => 'string', - 'nodetype' => 'int', + 'namespaceURI' => 'string', + 'nodeType' => 'int', 'prefix' => 'string', 'value' => 'string', - 'xmllang' => 'string', + 'xmlLang' => 'string', ], 'ziparchive' => [ 'comment' => 'string', 'filename' => 'string', - 'lastid' => 'int', - 'numfiles' => 'int', + 'lastId' => 'int', + 'numFiles' => 'int', 'status' => 'int', - 'statussys' => 'int', + 'statusSys' => 'int', ], ];