• Модуль: socialservices
  • Путь к файлу: ~/bitrix/modules/socialservices/classes/general/oauthtransport.php
  • Класс: CSocServOAuthTransport
  • Вызов: CSocServOAuthTransport::addScope
public function addScope($scope)
{
	if(is_array($scope))
		$this->scope = array_merge($this->scope, $scope);
	else
		$this->scope[] = $scope;
	return $this;
}