Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
GetFullFilledListResponse.php
1<?php
2
4
6
8{
9 public function getWorkflowStatesList(): array
10 {
11 $collection = $this->data['collection'] ?? [];
12
13 return is_array($collection) ? $collection : [];
14 }
15
16 public function getMembersInfo(): array
17 {
18 $membersInfo = $this->data['membersInfo'] ?? [];
19
20 return is_array($membersInfo) ? $membersInfo : [];
21 }
22
23 public function setWorkflowStatesList(array $collection): static
24 {
25 $this->data['collection'] = $collection;
26
27 return $this;
28 }
29
30 public function setMembersInfo(array $info): static
31 {
32 $this->data['membersInfo'] = $info;
33
34 return $this;
35 }
36}