mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
Fix some more
This commit is contained in:
parent
3b737480bd
commit
2a315bef45
@ -2094,12 +2094,12 @@ return [
|
||||
'DOMComment::__construct' => ['void', 'value='=>'string'],
|
||||
'DOMDocument::__construct' => ['void', 'version='=>'string', 'encoding='=>'string'],
|
||||
'DOMDocument::createAttribute' => ['DOMAttr|false', 'name'=>'string'],
|
||||
'DOMDocument::createAttributeNS' => ['DOMAttr|false', 'namespaceuri'=>'string', 'qualifiedname'=>'string'],
|
||||
'DOMDocument::createAttributeNS' => ['DOMAttr|false', 'namespaceuri'=>'string|null', 'qualifiedname'=>'string'],
|
||||
'DOMDocument::createCDATASection' => ['DOMCDATASection|false', 'data'=>'string'],
|
||||
'DOMDocument::createComment' => ['DOMComment|false', 'data'=>'string'],
|
||||
'DOMDocument::createDocumentFragment' => ['DOMDocumentFragment|false'],
|
||||
'DOMDocument::createElement' => ['DOMElement|false', 'name'=>'string', 'value='=>'string'],
|
||||
'DOMDocument::createElementNS' => ['DOMElement|false', 'namespaceuri'=>'string', 'qualifiedname'=>'string', 'value='=>'string'],
|
||||
'DOMDocument::createElementNS' => ['DOMElement|false', 'namespaceuri'=>'string|null', 'qualifiedname'=>'string', 'value='=>'string'],
|
||||
'DOMDocument::createEntityReference' => ['DOMEntityReference|false', 'name'=>'string'],
|
||||
'DOMDocument::createProcessingInstruction' => ['DOMProcessingInstruction|false', 'target'=>'string', 'data='=>'string'],
|
||||
'DOMDocument::createTextNode' => ['DOMText|false', 'content'=>'string'],
|
||||
|
@ -925,12 +925,12 @@ return [
|
||||
'DOMComment::__construct' => ['void', 'value='=>'string'],
|
||||
'DOMDocument::__construct' => ['void', 'version='=>'string', 'encoding='=>'string'],
|
||||
'DOMDocument::createAttribute' => ['DOMAttr|false', 'name'=>'string'],
|
||||
'DOMDocument::createAttributeNS' => ['DOMAttr|false', 'namespaceuri'=>'string', 'qualifiedname'=>'string'],
|
||||
'DOMDocument::createAttributeNS' => ['DOMAttr|false', 'namespaceuri'=>'string|null', 'qualifiedname'=>'string'],
|
||||
'DOMDocument::createCDATASection' => ['DOMCDATASection|false', 'data'=>'string'],
|
||||
'DOMDocument::createComment' => ['DOMComment|false', 'data'=>'string'],
|
||||
'DOMDocument::createDocumentFragment' => ['DOMDocumentFragment|false'],
|
||||
'DOMDocument::createElement' => ['DOMElement|false', 'name'=>'string', 'value='=>'string'],
|
||||
'DOMDocument::createElementNS' => ['DOMElement|false', 'namespaceuri'=>'string', 'qualifiedname'=>'string', 'value='=>'string'],
|
||||
'DOMDocument::createElementNS' => ['DOMElement|false', 'namespaceuri'=>'string|null', 'qualifiedname'=>'string', 'value='=>'string'],
|
||||
'DOMDocument::createEntityReference' => ['DOMEntityReference|false', 'name'=>'string'],
|
||||
'DOMDocument::createProcessingInstruction' => ['DOMProcessingInstruction|false', 'target'=>'string', 'data='=>'string'],
|
||||
'DOMDocument::createTextNode' => ['DOMText|false', 'content'=>'string'],
|
||||
|
Loading…
Reference in New Issue
Block a user