• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/TypePreset.php
  • Класс: Bitrix\Crm\Service\TypePreset
  • Вызов: TypePreset::setTitle
public function setTitle(string $title): self
{
	if (empty($title))
	{
		throw new ArgumentNullException('title');
	}
	$this->title = $title;
	return $this;
}