protected function ProviderUsingHandlerWithAdapterBase::getArguments in Geocoder 8.3
Same name and namespace in other branches
- 8.2 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 68
Class
- ProviderUsingHandlerWithAdapterBase
- Provides a base class for providers using handlers with HTTP adapter.
Namespace
Drupal\geocoderCode
protected function getArguments() : array {
return array_merge([
$this->httpAdapter,
], parent::getArguments());
}