• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/dispatcher/operation.php
  • Класс: BitrixTasksDispatcherOperation
  • Вызов: Operation::__construct
public function __construct($operation, array $parameters = array())
{
	$this->operation = $operation;
	$this->errors = new Collection();

	if((string) $parameters['NAMESPACE'] != '')
	{
		$this->namespace = $parameters['NAMESPACE'];
	}
	else
	{
		throw new Exception('Root NAMESPACE must be specified');
	}
}