/**
  * @param string $scope
  * @return Response
  */
 protected function doAuthorization($scope = Scope::PAYMENT_ALL)
 {
     // Invoke events
     $this->trigger('onAuthorization', [$scope]);
     return $this->client->authenticate(['scope' => $scope]);
 }