Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
relations.php
1<?php
2
4
6
8{
12 private ?string $commentXmlId;
13
14 public function __construct(?string $commentXmlId)
15 {
16 $this->commentXmlId = $commentXmlId;
17 }
18
19 public function getFields(): array
20 {
21 return [
22 'COMMENT_XML_ID' => $this->commentXmlId
23 ];
24 }
25
26 public function getCommentXmlId(): ?string
27 {
28 return $this->commentXmlId;
29 }
30
31 public function setCommentXmlId($commentXmlId): Relations
32 {
33 $this->commentXmlId = $commentXmlId;
34
35 return $this;
36 }
37
38 public function toString(): string
39 {
40 return $this->commentXmlId;
41 }
42}