1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
fieldcollection.php
См. документацию.
1<?php
2
3namespace Bitrix\Location\Entity\Location;
4
5use Bitrix\Main\ArgumentTypeException;
6
13{
15 protected $items = [];
16
17 public function addItem($field): int
18 {
19 if(!($field instanceof Field))
20 {
21 throw new ArgumentTypeException('field must be the instance of Field');
22 }
23
24 return parent::addItem($field);
25 }
26}