mirror of
https://github.com/php/php-src.git
synced 2026-04-11 10:03:18 +02:00
16 lines
350 B
PHP
16 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 {}
|
|
}
|