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

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

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