• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/rest/service/base.php
  • Класс: BitrixDiskRestServiceBase
  • Вызов: Base::processMethodRequest
public function processMethodRequest()
{
	try
	{
		$binder = new EngineBinder($this, $this->methodName, array($this->params));

		return $binder->invoke();
	}
	catch(ArgumentNullException $e)
	{
		throw new RestException(
			"Invalid value of parameter { {$e->getParameter()} }.",
			RestException::ERROR_ARGUMENT
		);
	}

}