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