• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/controller/timeline/comment.php
  • Класс: Bitrix\Crm\Controller\Timeline\Comment
  • Вызов: Comment::assertValidCommentContent
private function assertValidCommentContent(string $content): bool
{
	if ($content === '')
	{
		$this->addError(new Error('Empty comment message', ErrorCode::INVALID_ARG_VALUE));

		return false;
	}

	return true;
}