• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Timeline/Layout/Action/Animation.php
  • Класс: Bitrix\Crm\Service\Timeline\Layout\Action\Animation
  • Вызов: Animation::__construct
public function __construct(string $target, string $type)
{
	if (!$this->isValidTarget($target))
	{
		throw new ArgumentOutOfRangeException('target');
	}
	if (!$this->isValidType($type))
	{
		throw new ArgumentOutOfRangeException('type');
	}
	$this->target = $target;
	$this->type = $type;
}