summaryrefslogtreecommitdiff
path: root/ext/dom/domimplementation.stub.php
blob: 86b28d196ed6b041da580497fcb4ec79dfad3a9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

class DOMImplementation
{
    /** @return void */
    public function getFeature(string $feature, string $version) {}

    /** @return bool */
    public function hasFeature(string $feature, string $version) {}

    /** @return DOMDocumentType|false */
    public function createDocumentType(
        string $qualifiedName, string $publicId = "", string $systemId = "") {}

    /** @return DOMDocument|false */
    public function createDocument(string $namespaceURI = "", string $qualifiedName = "", DOMDocumentType $doctype = UNKNOWN) {}
}