mirror of
https://github.com/php/php-src.git
synced 2026-04-12 02:23:18 +02:00
15 lines
316 B
PHP
15 lines
316 B
PHP
<?php
|
|
|
|
class DOMText {
|
|
public function __construct(string $value = "") {}
|
|
|
|
/** @return bool */
|
|
public function isWhitespaceInElementContent() {}
|
|
|
|
/** @return bool */
|
|
public function isElementContentWhitespace() {}
|
|
|
|
/** @return DOMText|false */
|
|
public function splitText(int $offset) {}
|
|
}
|