You are here

public static function HttpServiceApiHandler::getOverridableProperties in HTTP Client Manager 8

Same name and namespace in other branches
  1. 8.2 src/HttpServiceApiHandler.php \Drupal\http_client_manager\HttpServiceApiHandler::getOverridableProperties()

Get overridable Service API properties.

Return value

array An array containing a list of overridable property names.

2 calls to HttpServiceApiHandler::getOverridableProperties()
HttpServiceApiHandler::overrideServiceApiDefinition in src/HttpServiceApiHandler.php
Override Service API definition.
http_client_manager_help in ./http_client_manager.module
Implements hook_help().

File

src/HttpServiceApiHandler.php, line 203

Class

HttpServiceApiHandler
Class HttpServiceApiHandler.

Namespace

Drupal\http_client_manager

Code

public static function getOverridableProperties() {
  return [
    'title',
    'base_url',
    'api_path',
    'config',
  ];
}