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