Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
GetListResponse.php
1<?php
2
4
6
8{
9 public function getElements(): ?array
10 {
11 return $this->data['elements'] ?? null;
12 }
13
14 public function setElements(array $elements): static
15 {
16 $this->data['elements'] = $elements;
17
18 return $this;
19 }
20}