• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/integration/ai/event/factory/eventcontrollerfactory.php
  • Класс: BitrixTasksIntegrationAIEventFactoryEventControllerFactory
  • Вызов: EventControllerFactory::getController
static function getController(string $context, int $taskId, string $xmlId): ?EventControllerInterface
{
	return match ($context)
	{
		'comments' => new TaskCommentEventController($taskId, $xmlId),
		default => null,
	};
}