Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
baseproperty.php
1<?php
2
4
5abstract class BaseProperty implements Property
6{
10 public function __toString(): string
11 {
12 return $this->toString();
13 }
14
18 abstract public function getFields(): array;
19
23 abstract public function toString(): string;
24}