• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Dto/Caster/ObjectCaster.php
  • Класс: Bitrix\Crm\Dto\Caster\ObjectCaster
  • Вызов: ObjectCaster::__construct
public function __construct(string $type)
{
	$isDto = class_exists($type) && is_subclass_of($type, Dto::class);

	if (!$isDto)
	{
		throw new ArgumentException('Nested structures must extend Dto. '.$type);
	}

	$this->type = $type;
}