Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
documenttype.php
1<?php
2namespace Bitrix\Main\Web\DOM;
3
4class DocumentType extends Node
5{
6 public function __construct()
7 {
8 parent::__construct();
9 $this->nodeType = self::DOCUMENT_TYPE_NODE;
10 $this->nodeName = '#document';
11 }
12
13 public function getTextContent()
14 {
15 return null;
16 }
17}