From 9bd59d79824c80d7613c8acc70542c42a8cac7f7 Mon Sep 17 00:00:00 2001 From: phpstan-bot Date: Wed, 28 Aug 2024 00:17:29 +0000 Subject: [PATCH] Update stubs --- stubs/ext/dom/Dom/Attr.php | 33 ++++++++--- stubs/ext/dom/Dom/CharacterData.php | 16 +++++- stubs/ext/dom/Dom/Document.php | 37 ++++++++++-- stubs/ext/dom/Dom/DocumentFragment.php | 15 ++++- stubs/ext/dom/Dom/DocumentType.php | 30 ++++++++-- stubs/ext/dom/Dom/DtdNamedNodeMap.php | 5 +- stubs/ext/dom/Dom/Element.php | 54 ++++++++++++++---- stubs/ext/dom/Dom/Entity.php | 15 ++++- stubs/ext/dom/Dom/HTMLCollection.php | 5 +- stubs/ext/dom/Dom/NamedNodeMap.php | 5 +- stubs/ext/dom/Dom/Node.php | 62 +++++++++++++++++---- stubs/ext/dom/Dom/NodeList.php | 5 +- stubs/ext/dom/Dom/Notation.php | 10 +++- stubs/ext/dom/Dom/ProcessingInstruction.php | 5 +- stubs/ext/dom/Dom/Text.php | 5 +- stubs/ext/dom/Dom/TokenList.php | 6 +- stubs/ext/dom/Dom/XMLDocument.php | 8 ++- stubs/ext/dom/Dom/XPath.php | 6 +- 18 files changed, 261 insertions(+), 61 deletions(-) diff --git a/stubs/ext/dom/Dom/Attr.php b/stubs/ext/dom/Dom/Attr.php index d93cfbd..2d01c47 100644 --- a/stubs/ext/dom/Dom/Attr.php +++ b/stubs/ext/dom/Dom/Attr.php @@ -5,19 +5,38 @@ #[\Since('8.4')] class Attr extends \Dom\Node { - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?string $namespaceURI; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?string $prefix; - /** @readonly */ + /** + * @readonly + * @virtual + */ public string $localName; - /** @readonly */ + /** + * @readonly + * @virtual + */ public string $name; + /** @virtual */ public string $value; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Element $ownerElement; - /** @readonly */ - public bool $specified = true; + /** + * @readonly + * @virtual + */ + public bool $specified; /** @implementation-alias DOMAttr::isId */ public function isId(): bool { diff --git a/stubs/ext/dom/Dom/CharacterData.php b/stubs/ext/dom/Dom/CharacterData.php index a2baed6..81b69c8 100644 --- a/stubs/ext/dom/Dom/CharacterData.php +++ b/stubs/ext/dom/Dom/CharacterData.php @@ -5,12 +5,22 @@ #[\Since('8.4')] class CharacterData extends \Dom\Node implements \Dom\ChildNode { - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Element $previousElementSibling; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Element $nextElementSibling; + /** @virtual */ public string $data; - /** @readonly */ + /** + * @readonly + * @virtual + */ public int $length; /** @implementation-alias DOMCharacterData::substringData */ public function substringData(int $offset, int $count): string diff --git a/stubs/ext/dom/Dom/Document.php b/stubs/ext/dom/Dom/Document.php index 8c05a44..59a236c 100644 --- a/stubs/ext/dom/Dom/Document.php +++ b/stubs/ext/dom/Dom/Document.php @@ -7,14 +7,25 @@ abstract class Document extends \Dom\Node implements \Dom\ParentNode { /** @readonly */ public Implementation $implementation; + /** @virtual */ public string $URL; + /** @virtual */ public string $documentURI; + /** @virtual */ public string $characterSet; + /** @virtual */ public string $charset; + /** @virtual */ public string $inputEncoding; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?DocumentType $doctype; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Element $documentElement; /** @implementation-alias Dom\Element::getElementsByTagName */ public function getElementsByTagName(string $qualifiedName): HTMLCollection @@ -63,11 +74,20 @@ public function createAttribute(string $localName): Attr public function createAttributeNS(?string $namespace, string $qualifiedName): Attr { } - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Element $firstElementChild; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Element $lastElementChild; - /** @readonly */ + /** + * @readonly + * @virtual + */ public int $childElementCount; /** @implementation-alias DOMDocument::getElementById */ public function getElementById(string $elementId): ?Element @@ -117,8 +137,13 @@ public function querySelector(string $selectors): ?Element public function querySelectorAll(string $selectors): NodeList { } + /** @virtual */ public ?HTMLElement $body; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?HTMLElement $head; + /** @virtual */ public string $title; } \ No newline at end of file diff --git a/stubs/ext/dom/Dom/DocumentFragment.php b/stubs/ext/dom/Dom/DocumentFragment.php index 33aba22..d07b765 100644 --- a/stubs/ext/dom/Dom/DocumentFragment.php +++ b/stubs/ext/dom/Dom/DocumentFragment.php @@ -5,11 +5,20 @@ #[\Since('8.4')] class DocumentFragment extends \Dom\Node implements \Dom\ParentNode { - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Element $firstElementChild; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Element $lastElementChild; - /** @readonly */ + /** + * @readonly + * @virtual + */ public int $childElementCount; /** @implementation-alias DOMDocumentFragment::appendXML */ public function appendXml(string $data): bool diff --git a/stubs/ext/dom/Dom/DocumentType.php b/stubs/ext/dom/Dom/DocumentType.php index 210b349..492d7cd 100644 --- a/stubs/ext/dom/Dom/DocumentType.php +++ b/stubs/ext/dom/Dom/DocumentType.php @@ -5,17 +5,35 @@ #[\Since('8.4')] class DocumentType extends \Dom\Node implements \Dom\ChildNode { - /** @readonly */ + /** + * @readonly + * @virtual + */ public string $name; - /** @readonly */ + /** + * @readonly + * @virtual + */ public DtdNamedNodeMap $entities; - /** @readonly */ + /** + * @readonly + * @virtual + */ public DtdNamedNodeMap $notations; - /** @readonly */ + /** + * @readonly + * @virtual + */ public string $publicId; - /** @readonly */ + /** + * @readonly + * @virtual + */ public string $systemId; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?string $internalSubset; /** @implementation-alias DOMElement::remove */ public function remove(): void diff --git a/stubs/ext/dom/Dom/DtdNamedNodeMap.php b/stubs/ext/dom/Dom/DtdNamedNodeMap.php index 10fb22d..db85208 100644 --- a/stubs/ext/dom/Dom/DtdNamedNodeMap.php +++ b/stubs/ext/dom/Dom/DtdNamedNodeMap.php @@ -5,7 +5,10 @@ #[\Since('8.4')] class DtdNamedNodeMap implements \IteratorAggregate, \Countable { - /** @readonly */ + /** + * @readonly + * @virtual + */ public int $length; /** @implementation-alias DOMNamedNodeMap::item */ public function item(int $index): Entity|Notation|null diff --git a/stubs/ext/dom/Dom/Element.php b/stubs/ext/dom/Dom/Element.php index 095168b..db6047b 100644 --- a/stubs/ext/dom/Dom/Element.php +++ b/stubs/ext/dom/Dom/Element.php @@ -5,15 +5,29 @@ #[\Since('8.4')] class Element extends \Dom\Node implements \Dom\ParentNode, \Dom\ChildNode { - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?string $namespaceURI; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?string $prefix; - /** @readonly */ + /** + * @readonly + * @virtual + */ public string $localName; - /** @readonly */ + /** + * @readonly + * @virtual + */ public string $tagName; + /** @virtual */ public string $id; + /** @virtual */ public string $className; /** @readonly */ public TokenList $classList; @@ -21,7 +35,10 @@ class Element extends \Dom\Node implements \Dom\ParentNode, \Dom\ChildNode public function hasAttributes(): bool { } - /** @readonly */ + /** + * @readonly + * @virtual + */ public NamedNodeMap $attributes; /** @implementation-alias DOMElement::getAttributeNames */ public function getAttributeNames(): array @@ -92,15 +109,30 @@ public function insertAdjacentElement(AdjacentPosition $where, Element $element) public function insertAdjacentText(AdjacentPosition $where, string $data): void { } - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Element $firstElementChild; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Element $lastElementChild; - /** @readonly */ + /** + * @readonly + * @virtual + */ public int $childElementCount; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Element $previousElementSibling; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Element $nextElementSibling; /** @implementation-alias DOMElement::setIdAttribute */ public function setIdAttribute(string $qualifiedName, bool $isId): void @@ -153,7 +185,9 @@ public function closest(string $selectors): ?Element public function matches(string $selectors): bool { } + /** @virtual */ public string $innerHTML; + /** @virtual */ public string $substitutedNodeValue; /** @return list */ public function getInScopeNamespaces(): array diff --git a/stubs/ext/dom/Dom/Entity.php b/stubs/ext/dom/Dom/Entity.php index 70c5d53..ad579d7 100644 --- a/stubs/ext/dom/Dom/Entity.php +++ b/stubs/ext/dom/Dom/Entity.php @@ -5,10 +5,19 @@ #[\Since('8.4')] class Entity extends \Dom\Node { - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?string $publicId; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?string $systemId; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?string $notationName; } \ No newline at end of file diff --git a/stubs/ext/dom/Dom/HTMLCollection.php b/stubs/ext/dom/Dom/HTMLCollection.php index 8cbdc36..a945299 100644 --- a/stubs/ext/dom/Dom/HTMLCollection.php +++ b/stubs/ext/dom/Dom/HTMLCollection.php @@ -5,7 +5,10 @@ #[\Since('8.4')] class HTMLCollection implements \IteratorAggregate, \Countable { - /** @readonly */ + /** + * @readonly + * @virtual + */ public int $length; /** @implementation-alias DOMNodeList::item */ public function item(int $index): ?Element diff --git a/stubs/ext/dom/Dom/NamedNodeMap.php b/stubs/ext/dom/Dom/NamedNodeMap.php index 792b8d9..dcc31d2 100644 --- a/stubs/ext/dom/Dom/NamedNodeMap.php +++ b/stubs/ext/dom/Dom/NamedNodeMap.php @@ -5,7 +5,10 @@ #[\Since('8.4')] class NamedNodeMap implements \IteratorAggregate, \Countable { - /** @readonly */ + /** + * @readonly + * @virtual + */ public int $length; /** @implementation-alias DOMNamedNodeMap::item */ public function item(int $index): ?Attr diff --git a/stubs/ext/dom/Dom/Node.php b/stubs/ext/dom/Dom/Node.php index 2a2b613..451498a 100644 --- a/stubs/ext/dom/Dom/Node.php +++ b/stubs/ext/dom/Dom/Node.php @@ -9,39 +9,77 @@ class Node final private function __construct() { } - /** @readonly */ + /** + * @readonly + * @virtual + */ public int $nodeType; - /** @readonly */ + /** + * @readonly + * @virtual + */ public string $nodeName; - /** @readonly */ + /** + * @readonly + * @virtual + */ public string $baseURI; - /** @readonly */ + /** + * @readonly + * @virtual + */ public bool $isConnected; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Document $ownerDocument; /** @implementation-alias DOMNode::getRootNode */ public function getRootNode(array $options = []): Node { } - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Node $parentNode; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Element $parentElement; /** @implementation-alias DOMNode::hasChildNodes */ public function hasChildNodes(): bool { } - /** @readonly */ + /** + * @readonly + * @virtual + */ public NodeList $childNodes; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Node $firstChild; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Node $lastChild; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Node $previousSibling; - /** @readonly */ + /** + * @readonly + * @virtual + */ public ?Node $nextSibling; + /** @virtual */ public ?string $nodeValue; + /** @virtual */ public ?string $textContent; /** @implementation-alias DOMNode::normalize */ public function normalize(): void diff --git a/stubs/ext/dom/Dom/NodeList.php b/stubs/ext/dom/Dom/NodeList.php index 50148e2..ca0bde8 100644 --- a/stubs/ext/dom/Dom/NodeList.php +++ b/stubs/ext/dom/Dom/NodeList.php @@ -5,7 +5,10 @@ #[\Since('8.4')] class NodeList implements \IteratorAggregate, \Countable { - /** @readonly */ + /** + * @readonly + * @virtual + */ public int $length; /** @implementation-alias DOMNodeList::count */ public function count(): int diff --git a/stubs/ext/dom/Dom/Notation.php b/stubs/ext/dom/Dom/Notation.php index ea117f4..e27cc29 100644 --- a/stubs/ext/dom/Dom/Notation.php +++ b/stubs/ext/dom/Dom/Notation.php @@ -5,8 +5,14 @@ #[\Since('8.4')] class Notation extends \Dom\Node { - /** @readonly */ + /** + * @readonly + * @virtual + */ public string $publicId; - /** @readonly */ + /** + * @readonly + * @virtual + */ public string $systemId; } \ No newline at end of file diff --git a/stubs/ext/dom/Dom/ProcessingInstruction.php b/stubs/ext/dom/Dom/ProcessingInstruction.php index 0f480b4..916dd41 100644 --- a/stubs/ext/dom/Dom/ProcessingInstruction.php +++ b/stubs/ext/dom/Dom/ProcessingInstruction.php @@ -5,6 +5,9 @@ #[\Since('8.4')] class ProcessingInstruction extends \Dom\CharacterData { - /** @readonly */ + /** + * @readonly + * @virtual + */ public string $target; } \ No newline at end of file diff --git a/stubs/ext/dom/Dom/Text.php b/stubs/ext/dom/Dom/Text.php index ccf86d3..2117c7a 100644 --- a/stubs/ext/dom/Dom/Text.php +++ b/stubs/ext/dom/Dom/Text.php @@ -10,6 +10,9 @@ class Text extends \Dom\CharacterData public function splitText(int $offset): Text { } - /** @readonly */ + /** + * @readonly + * @virtual + */ public string $wholeText; } \ No newline at end of file diff --git a/stubs/ext/dom/Dom/TokenList.php b/stubs/ext/dom/Dom/TokenList.php index 8d1206d..d1551c0 100644 --- a/stubs/ext/dom/Dom/TokenList.php +++ b/stubs/ext/dom/Dom/TokenList.php @@ -13,7 +13,10 @@ final class TokenList implements \Dom\IteratorAggregate, \Dom\Countable private function __construct() { } - /** @readonly */ + /** + * @readonly + * @virtual + */ public int $length; public function item(int $index): ?string { @@ -36,6 +39,7 @@ public function replace(string $token, string $newToken): bool public function supports(string $token): bool { } + /** @virtual */ public string $value; public function count(): int { diff --git a/stubs/ext/dom/Dom/XMLDocument.php b/stubs/ext/dom/Dom/XMLDocument.php index f57babd..35b17e3 100644 --- a/stubs/ext/dom/Dom/XMLDocument.php +++ b/stubs/ext/dom/Dom/XMLDocument.php @@ -14,10 +14,16 @@ public static function createFromFile(string $path, int $options = 0, ?string $o public static function createFromString(string $source, int $options = 0, ?string $overrideEncoding = null): XMLDocument { } - /** @readonly */ + /** + * @readonly + * @virtual + */ public string $xmlEncoding; + /** @virtual */ public bool $xmlStandalone; + /** @virtual */ public string $xmlVersion; + /** @virtual */ public bool $formatOutput; /** @implementation-alias DOMDocument::createEntityReference */ public function createEntityReference(string $name): EntityReference diff --git a/stubs/ext/dom/Dom/XPath.php b/stubs/ext/dom/Dom/XPath.php index 804ab70..7e66d35 100644 --- a/stubs/ext/dom/Dom/XPath.php +++ b/stubs/ext/dom/Dom/XPath.php @@ -7,8 +7,12 @@ #[\Since('8.4')] final class XPath { - /** @readonly */ + /** + * @readonly + * @virtual + */ public Document $document; + /** @virtual */ public bool $registerNodeNamespaces; public function __construct(Document $document, bool $registerNodeNS = true) {