Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
GetIBlockElementFieldsResponse.php
1<?php
2
4
6
8{
9 public function getFields(): array
10 {
11 return $this->data['fields'] ?? [];
12 }
13
14 public function setFields(array $fields): static
15 {
16 $this->data['fields'] = $fields;
17
18 return $this;
19 }
20
21 public function getProps(): array
22 {
23 return $this->data['props'] ?? [];
24 }
25
26 public function setProps(array $props): static
27 {
28 $this->data['props'] = $props;
29
30 return $this;
31 }
32}