Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
entityfactory.php
1<?php
2
4
7
9{
19 public static function createEntity(Call $call, $entityType, $entityId)
20 {
21 if($entityType === EntityType::CHAT)
22 {
23 return new Chat($call, $entityId);
24 }
25
26 throw new ArgumentException("Unknown entity type: " . $entityType);
27 }
28}
static createEntity(Call $call, $entityType, $entityId)