• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/scrum/form/entityform.php
  • Класс: BitrixTasksScrumFormEntityForm
  • Вызов: EntityForm::checkRequiredParametersToCreateBacklog
private function checkRequiredParametersToCreateBacklog(): void
{
	if (empty($this->groupId))
	{
		throw new ArgumentNullException('groupId');
	}

	if (empty($this->createdBy))
	{
		throw new ArgumentNullException('createdBy');
	}
}