Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
propertycollection.php
1<?php
2
4
5abstract class PropertyCollection extends Collection implements Property
6{
10 public function __toString()
11 {
12 return $this->toString();
13 }
14
18 public function getFields(): array
19 {
20 return [
21 'collection' => $this->collection,
22 ];
23 }
24
29 public function toString(string $separator = ', '): string
30 {
31 return implode($separator, $this->collection);
32 }
33}