• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/controller/call.php
  • Класс: BitrixImControllerCall
  • Вызов: Call::getLockNameWithCallId
static function getLockNameWithCallId($callId): string
{
	//TODO: int|string after switching to php 8
	if (is_string($callId) || is_numeric($callId))
	{
		return "im_call_{$callId}";
	}

	return '';
}