mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
15 lines
350 B
PHP
15 lines
350 B
PHP
<?php
|
|
|
|
class DOMDocumentFragment implements DOMParentNode
|
|
{
|
|
public function __construct() {}
|
|
|
|
/** @return bool */
|
|
public function appendXML(string $data) {}
|
|
|
|
/** @var ...DOMNode|string $nodes */
|
|
public function append(...$nodes): void {}
|
|
|
|
/** @var ...DOMNode|string $nodes */
|
|
public function prepend(...$nodes): void {}
|
|
}
|