mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
17 lines
549 B
PHP
17 lines
549 B
PHP
<?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) {}
|
|
}
|