• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/internals/querycontroller/base.php
  • Класс: Bitrix\Sender\Internals\QueryController\Base
  • Вызов: Base::call
static function call($callee, array $parameters = array())
{
	if (!is_callable($callee))
	{
		throw new ArgumentException("Argument `callee` should be callabe.");
	}

	return call_user_func_array($callee, $parameters);
}