You are here

protected function ProviderUsingHandlerWithAdapterBase::getArguments in Geocoder 8.2

Same name and namespace in other branches
  1. 8.3 src/ProviderUsingHandlerWithAdapterBase.php \Drupal\geocoder\ProviderUsingHandlerWithAdapterBase::getArguments()

Builds a list of arguments to be used by the handler.

Return value

array The list of arguments for handler instantiation.

Overrides ProviderUsingHandlerBase::getArguments

File

src/ProviderUsingHandlerWithAdapterBase.php, line 64

Class

ProviderUsingHandlerWithAdapterBase
Provides a base class for providers using handlers with HTTP adapter.

Namespace

Drupal\geocoder

Code

protected function getArguments() {
  return array_merge([
    $this->httpAdapter,
  ], parent::getArguments());
}