• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Dto/Caster.php
  • Класс: Bitrix\Crm\Dto\Caster
  • Вызов: Caster::cast
public function cast($value)
{
	if ($this->isNullable && $value === null)
	{
		return null;
	}

	return $this->castSingleValue($value);
}