1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
entityfactory.php
См. документацию.
1<?php
2
3namespace Bitrix\Im\Call\Integration;
4
5use Bitrix\Im\Call\Call;
6use Bitrix\Main\ArgumentException;
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)
Определения entityfactory.php:19
Определения auth.php:9
$entityId
Определения payment.php:4